Sending a flask request within a flask request Sending a flask request within a flask request flask flask

Sending a flask request within a flask request


Knowing that the internal flask server is not production-ready, when using only for development, pass the threaded=true parameter to app.run.

app.run(debug=True, threaded=True)


This happens cause you're using the flask devserver. It's not for production use.In production environment you would use an application server (uWSGI, GUnicorn, Tornado, ...) with or without a webserver layer (NGINX, Apache,...) to proxy/balance connections to the workers protecting (not completely but in a lot of environments it's acceptable) from DoS attacks.