Files
nginx-unit/test/python/input_iter/wsgi.py
2018-04-02 17:03:41 +03:00

6 lines
176 B
Python

def application(environ, start_response):
body = bytes(environ['wsgi.input'].__iter__())
start_response('200', [('Content-Length', str(len(body)))])
return [body]