- Jumping Jacks
- Burpees
- Squat jumps
- Lunges
- Squats
When you run this, you're going to want to do a couple of things to set up.
- Navigate to the root directory
exercise-training-data - Get virtualenv
pip install virtualenv - Install virtualenv
virtualenv venv -p python3 --prompt "(exercise-data)" - Activate the venv
. venv/bin/activate - Install dependencies
pip install -r requirements.txt
To run the tests, just run py.test in the test directory
Some features rely on gevent multiprocessing on order to work (stream_splitter). This can cause issues for some debuggers. You may have to google around to make your debugger work with the monkey-patched gevent code.