Authenticity, formerly called Authenticity Fitness is a workout tracking application written in Python.
- the quality of being authentic.
- the condition of being physically fit and healthy.
DISCLAIMER: This codebase is currently a mock writeup. Thus, its far from a finished product.
Authenticity Fitness "requires" the following dependencies - really only SQLAlchemy thus far.
# Clone authenticity.
git clone https://github.com/mtttech/authenticity.git
# Change into the directory.
cd authenticity
# Install using Poetry.
poetry install
You can add an exercise with the following command.
poetry run af-create
The following prompts will occur.
- Name your workout.
- State how many exercises were done.
- State the name of the targeted body part, the exercise, how many sets, reps in each set and how much weight was used.
You can delete all records within the databases with the following command.
poetry run af-delete
You can delete a specific workout record ID from the database with the following command.
poetry run af-delete --wid=<WID>
You can view the workout information stored in the database with the following command.
poetry run af-read