Pot: WSGI
This Python on the Toilet issue is also available as PDF. WSGI is a Python standard for how web servers can interact with web frameworks. It’s one of my favorite standards: it’s simple yet very powerful. To write a WSGI web application you only need to create one function. def my_app(environ, start_response): start_response('200 OK', [('Content-Type', 'text/plain')]) return repr(environ) The function receives a environ argument - a dictionary with all the environment variables. The start_response function can be called with the status line and a list of headers as soon as you’re ready to send output. ...