Files
uwsgi/simple_app.py
T
2010-03-28 18:18:23 +02:00

5 lines
130 B
Python

def application(env, start_response):
print env
start_response('200 Ok', [('Content-type', 'text/plain')])
yield "hello world"