Como hospedar o aplicativo da web do Flask Python

use waitress by:

pip install waitress

import waitress

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