Web Server Gateway Interface: Difference between revisions

Content deleted Content added
Line 20:
A WSGI compatible "[[Hello World]]" application:
<pre>
def app(environ, start_reponsestart_response):
start_response('200 OK', [('Content-Type', 'text/plain')])
return ['Hello World\n']