Files
uwsgi/simple_app.py
T
2010-05-18 07:06:07 +02:00

9 lines
194 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)