Answers for "script to start and stop flask app"

8

flask how to run app

$ export FLASK_APP=hello.py
$ python -m flask run
 * Running on http://127.0.0.1:5000/
Posted by: Guest on April-03-2020
0

how to close a flask web server with python

from multiprocessing import Process

server = Process(target=app.run)
server.start()
# ...
server.terminate()
server.join()
Posted by: Guest on April-02-2021

Python Answers by Framework

Browse Popular Code Answers by Language