an app that tells you if the stock market is open. modeled off https://isitchristmas.com
python3 -m venv env
activate the virtual environment: source env/bin/activate
deactivate the virtual environment: deactivate
pip3 install flask
pip3 freeze > requirements.txt
start the flask server: run flask
run the flask server in debug mode: flask --app app.py --debug run