Most applications in Python are using ASGI version 3. For example, in django, asgi supports asgi version 3. How can I use asgi2 version?
Even if it's not django Are there any applications that use asgi2, and if so, which ones?
Most applications in Python are using ASGI version 3. For example, in django, asgi supports asgi version 3. How can I use asgi2 version?
Even if it's not django Are there any applications that use asgi2, and if so, which ones?
i solve this problem. In Django, it seems that the asgi application is only compatible with asgi version 3.
So I checked to see if I could use asgi2 in other web applications in Python. I tried using asgi2 in a flask with uvicorn. We used uvicorn to run the flask application and lowered the ASGI version to 2. it worked fine