homesourcenvt

Flask

Overview

Books

Libraries

Issues

Broken Pipe

Use threaded

app.run(threaded=True)

Use gevent.wsgi

from gevent.wsgi import WSGIServer
http_server = WSGIServer(('', 5000), app)
http_server.serve_forever()

Use other WSGI Server