fastapi
Here are 3,620 public repositories matching this topic...
-
Updated
May 22, 2022 - Python
-
Updated
May 25, 2022 - Python
-
Updated
May 24, 2022
-
Updated
May 17, 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=False
that will cause those lines to pass
-
Updated
May 25, 2022 - Python
-
Updated
May 28, 2022 - HTML
-
Updated
May 29, 2022 - Python
-
Updated
May 16, 2022 - Python
-
Updated
Aug 21, 2021 - Python
-
Updated
May 26, 2022 - Python
-
Updated
May 30, 2022 - Rust
-
Updated
Aug 23, 2021 - Python
-
Updated
May 1, 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.
-
Updated
May 30, 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
-
Updated
May 1, 2022 - Python
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?
Hey @OPHoperHPO, first want to say thank you for the amazing amount of work that you've put into this! I had two questions for you in regards to this amazing journey you've embarked on.
- What are your long term intentions with this project, and do you have a rough timeline for new releases/features?
- Do you have a specific EC2 instance type that you recommend to use with this workload?
On https://slack.dev/bolt-python/concepts at line 12 of "Example with AWS Lambda" there is ">" displayed, instead of ">" symbol. To fix this you have to remove "<span class="p">;</span>" after it
Category (place an x
in each of the [ ]
)
- slack_bolt.App and/or its core components
- slack_bolt.async_app.AsyncApp and/or its core components
- Adapters in **sl
-
Updated
May 18, 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