Python Minimal Web Framework
Contents
- Introduction & Getting Started
- WSGI
- HTTP request/response abstractions
- Routing
- Controllers, Views and Templates
- Data storage
- Closing thoughts
The Web Server Gateway Interface, defined by PEP 3333,.
WSGI defines a standard API for web servers(e.g. Gunicorn, uWSGI, Twisted, etc.) to connect and talk to web applications/frameworks(Django, Flask, etc.). WSGI is why you use any web server with any web application.