Python app deployment - what are WSGI and ASGI ? #4
Replies: 1 comment
-
Q: A: Q: A:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Q:
Why should I need web (HTTP) server and WSGI (or ASGI) server to get my python app up and running ?
A:
most of python web frameworks do NOT support internet app-layer protocol (HTTP) , they need common interface to properly convert messages from (and to) existing HTTP servers like Nginx , which are WSGI and its async version -- ASGI .
Check out the diagrams in the articles to get the big picture :
Beta Was this translation helpful? Give feedback.
All reactions