Comment héberger l'application Web Python Flask

use waitress by:

pip install waitress

import waitress

waitress.serve(flaskApp, host="0.0.0.0", port="4000")
John Appleseed