-
Updated
Feb 22, 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 220 public repositories matching this topic...
When running strawberry export-schema core.schema:schema in a django project, we get this error:
django.core.exceptions.ImproperlyConfigured: Requested setting INSTALLED_APPS, but settings are not configured. You must either define the environment variable DJANGO_SETTINGS_MODULE or call settings.configure() before accessing settings.
To fix this we should create a management comm
-
Updated
Feb 22, 2022 - Python
-
Updated
Feb 21, 2022 - Python
-
Updated
Feb 16, 2022 - Python
-
Updated
Feb 2, 2022 - Python
-
Updated
Dec 8, 2021 - Python
Should add a section to the docs for third-party examples and guides using Mangum
-
Updated
Feb 19, 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
Feb 17, 2022 - Python
-
Updated
Mar 14, 2020 - Python
You can never have enough tests - some parts of the tests are not great, it would be very nice to have more tests / better tests etc. Also it would be very good to find more bugs.
This ticket is meant to stay open - anyone can add PRs that point to it. Its also a place to aggregate discussions regarding the test suite.
-
Updated
Feb 21, 2022 - Python
-
Updated
Feb 21, 2022 - Python
-
Updated
Feb 12, 2022 - Python
-
Updated
Jan 21, 2022 - Python
-
Updated
Feb 21, 2022 - Python
-
Updated
Feb 16, 2022 - Python
-
Updated
Feb 18, 2022 - Python
-
Updated
Feb 8, 2022 - Python
Support for closing with a
reasonwas added in version 2.3 of the HTTP & WebSocket ASGI Message Format (2021-02-02).Also decide whether we want a way to derive the reason from
HTTPErrors like we do with the closecode. Alternatives include just using the error'stitle,description, and adding a