Flask and WSGI
Flask is a python module that that makes Web application creation easier. Flask generates Web pages on the fly, and when coupled with WSGI (Web Server Gateway Interface) on an Apache Web server, scales up to commercial usage. Flask is built on the WSGI Werkzeug toolkit and the Jinja2 template engine. The definitive Flask tutorial: Flask Mega Tutorial. A readable and to-the-point WSGI installation guide: How to deploy a Flask application on Ubuntu. This is a concise reminder guide taken from the above. See the above references for specific details. Installing mo