fastapi
Here are 3,200 public repositories matching this topic...
Full stack, modern web application generator. Using FastAPI, PostgreSQL as database, Docker, automatic HTTPS and more.
-
Updated
Feb 13, 2022 - Python
SQL databases in Python, designed for simplicity, compatibility, and robustness.
-
Updated
Apr 6, 2022 - Python
A curated list of awesome things related to FastAPI
-
Updated
Mar 29, 2022
-
Updated
Apr 6, 2022 - Python
On lines
https://github.com/rochacbruno/dynaconf/blob/master/dynaconf/validator.py#L202-L205
validators.validate is calling from_env and it makes the variables to be reloaded from source files.
This is not good for testing.
Solution:
- Check if validation is happening on the same current env, then don't reload
- accept argument
reload=Falsethat will cause those lines to pass
Learn Python for the next 30 (or so) Days.
-
Updated
Apr 6, 2022 - HTML
Backend logic implementation for https://github.com/gothinkster/realworld with awesome FastAPI
-
Updated
Apr 1, 2022 - Python
Docker image with Uvicorn managed by Gunicorn for high-performance FastAPI web applications in Python 3.6 and above with performance auto-tuning. Optionally with Alpine Linux.
-
Updated
Apr 4, 2022 - Python
-
Updated
Aug 21, 2021 - Python
-
Updated
Mar 31, 2022 - Python
A full-featured and easy-to-use web framework with the Rust programming language.
-
Updated
Apr 7, 2022 - Rust
Deploy a ML inference service on a budget in less than 10 lines of code.
-
Updated
Aug 23, 2021 - Python
A fast admin dashboard based on FastAPI and TortoiseORM with tabler ui, inspired by Django admin
-
Updated
Mar 11, 2022 - Python
There should be routes that trigger an email for "forgot" and "reset" password options. These can be celery tasks but probably need a separate container for a simple SMTP server in order to send the emails.
The fullstack Vue project has an example of a containerized SMTP server.
Document features
add documents include examples on each feature.
python async orm with fastapi in mind and pydantic validation
-
Updated
Apr 7, 2022 - Python
Should add a section to the docs for third-party examples and guides using Mangum
It would be nice if there was a new clause which can be added to queries called callback.
For example:
def callback_handler(success, value):
if success:
print(f'The query was successful and returned {value}')
else:
print("The query failed")
Band.select().callback(callback_handler).run_sync()The callback could be a function or coroutine, wh
I was looking at the implementation for SQLAlchemy and noticed that it takes only the first primary key of the table
https://github.com/awtkns/fastapi-crudrouter/blob/master/fastapi_crudrouter/core/sqlalchemy.py#L50
What if I have a composite primary key in my table?
-
Updated
Apr 1, 2022 - Python
I want to perform operations when a member has joined a channel which takes more than 5 seconds, but I'm getting BrokenPipeError: [Errno 32] Broken pipe.
The minimal step to reproduce the same has been shown below while using the lazy listener it waits for 10 seconds before responding back.
Reproducible in:
from chalice import Chalice, Response
from slack_bolt impoAsync ODM (Object Document Mapper) for MongoDB based on python type hints
-
Updated
Apr 5, 2022 - Python
Improve this page
Add a description, image, and links to the fastapi topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the fastapi topic, visit your repo's landing page and select "manage topics."


First check