Django - Async Django
In Django's
asgi.py, which import is necessary to correctly initialize an ASGI application?asgi.py, which import is necessary to correctly initialize an ASGI application?get_asgi_application from django.core.asgi.get_wsgi_application is for WSGI, not ASGI, so from django.core.wsgi import get_wsgi_application is incorrect.get_asgi_application import [OK]15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions