mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-08-28 17:55:39 +00:00
9 lines
195 B
Python
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)
|