-
Updated
May 24, 2022 - Python
ASGI
ASGI (Asynchronous Server Gateway Interface) is a spiritual successor to WSGI, intended to provide a standard interface between async-capable Python web servers, frameworks, and applications.
Here are 231 public repositories matching this topic...
We only have documentation for schema directives, we should document query directives, here's an example of how they work: https://github.com/strawberry-graphql/strawberry/blob/main/tests/schema/test_directives.py
-
Updated
May 16, 2022 - Python
-
Updated
May 23, 2022 - Python
-
Updated
Apr 12, 2022 - Python
-
Updated
May 22, 2022 - Python
Should add a section to the docs for third-party examples and guides using Mangum
-
Updated
May 22, 2022 - Python
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 23, 2022 - Python
Within a controller, I don't think you can find a url for another handler using starlette url_path_for.
A working example of it can be found over https://github.com/developmentseed/pg_mvt/blob/10fa599928fc96ea30fad63289e40e39e564845d/pg_mvt/factory.py#L66-L96
-
Updated
May 21, 2022 - Python
Checklist
- There are no similar issues or pull requests for this yet.
Is your feature related to a problem? Please describe.
No response
Describe the solution you would like.
eg how FastAPI-Admin can specify tabler icons https://tablericons.com/
Describe alternatives you considered
No response
Additional context
No response
-
Updated
Mar 14, 2020 - Python
-
Updated
Feb 22, 2022 - Python
-
Updated
Apr 20, 2022 - Python
-
Updated
May 6, 2022 - Python
-
Updated
May 23, 2022 - Python
-
Updated
May 17, 2022 - Python
-
Updated
Apr 23, 2022 - Python


Sometimes it might be handy to easily get a header's value as
int, where validation errors would automatically result in an HTTP 400, along the lines ofreq.get_header_as_datetime& [req.get_param_as_int](https://falcon.readthedocs.io/en/stable/api/request_and_response_wsgi.ht