The question arises: how to get POST variables in Python when using gevent?
The following is passed to the application:
def application(env, start_response):
And this is the other part:
if __name__ == '__main__': print 'Serving on 8080...' WSGIServer(('', 8080), application).serve_forever()
But env does not contain my POST!
Please enlighten me - where is my misunderstanding?
Thanks!
Tony sepia
source share