python -m venv venv
source venv/bin/activate
pip install -r requirements.txt
export FLASK_APP=api.py
flask run
or
python api.py
api/v1.0/pace-to-speed/<m:s>
e.g.
api/v1.0/pace-to-speed/4:30
api/v1.0/speed-to-pace/<speed>
e.g.
api/v1.0/speed-to-pace/12.3
pytest