Suggests agility and power, suitable for a versatile Python project.
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
pip install -r dev-requirements.txt
docker build -t math_api .
docker run -p 8000:8000 math_api
pyinstaller --onefile main.py --name math_api
mv dist/math_api static/
python setup.py build_ext --inplace
autopep8 --in-place --aggressive --aggressive *.py