WSGI Container
Explore more about WSGI containers in this lesson.
We'll cover the following...
What is WSGI?
WSGI stands for Web Server Gateway Interface, a specification describing how a web server communicates with web applications. It helps to separate the application-specific tasks that a web application performs from more generic tasks that are required to serve up web content. Web frameworks like Flask and Django, have implemented this specification so they are able to properly communicate ...