Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 930 Bytes

WSGI.md

File metadata and controls

13 lines (7 loc) · 930 Bytes

#python #web

python-wsgi-app

A Web Server Gateway Interface (WSGI) server implements the web server side of the WSGI interface for running Python web applications.

A traditional web server does not understand or have any way to run Python applications.

Serving thousands of requests for dynamic content at once is the domain of WSGI servers, not frameworks. WSGI servers handle processing requests from the web server and deciding how to communicate those requests to an application framework's process

WSGI Server - Web server - Browser

WSGI server invoking a WSGI application.