V-R
0
Q:

waitress serve

from flask import Flask
import waitress

app = Flask(__name__)
port = 5000 # This can be anything

# Lines of code for the web app

if __name__ = "__main__":
    waitress.serve(app=app, port=port)
0

Related

New to Communities?

Join the community