Files
uwsgi/simple_app.py
T
2010-04-19 16:01:13 +02:00

9 lines
195 B
Python

def application(env, start_response):
#print env
start_response('200 Ok', [('Content-type', 'text/plain')])
yield "hello world"
yield "hello world2"
for i in xrange(1,1000):
yield str(i)