Sep-07-2019, 04:09 PM
Hi,
@venquessa : there seems to be a misunderstanding from your side: Flask is a WSGI-compliant (=Python's standard) framework, so the app written in Flask can be servered by any WSGI server. This could be the build-in server of Flask, but it could also be any WSGI server. E.g. gunicorn is a popular choice.
Running a Flask app with an external WSGI server is described in Flask's documentation.
Regards, noisefloor
@venquessa : there seems to be a misunderstanding from your side: Flask is a WSGI-compliant (=Python's standard) framework, so the app written in Flask can be servered by any WSGI server. This could be the build-in server of Flask, but it could also be any WSGI server. E.g. gunicorn is a popular choice.
Running a Flask app with an external WSGI server is described in Flask's documentation.
Regards, noisefloor