-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(python): add ASGI support (Django) #1099
base: main
Are you sure you want to change the base?
Conversation
Looks good to me 👍 I left one small comment about the added dependency and there's a merge conflict that will need to be resolved. I've asked some other teammates to take a look and review. |
packages/python/requirements.txt
Outdated
Werkzeug==3.0.4 | ||
uvicorn==0.32.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I looked a bit into uvicorn and it seems like it's commonly used (like with FastAPI), but just want to check that it's necessary since it does add another dependency so it should be vetted.
| :------------------- |
🧰 Changes
Added ASGI support in Python package, support for synchronous and asynchronous projects.
🧬 QA & Testing
Aligned unit tests to ASGI/WSGI, async/sync operations & typings.
Integration tests are split into 2 parts (ASGI/WSGI).