A Python program with a Command-line interface that allows Habit tracking. Easily create and check-off daily and weekly habits.
- Create Daily and Weekly habits
- Edit habits
- Analyze habits
- Python v3.12 minimum
Clone the repository by downloading it and run a terminal
pip install -r requirements
Run the following command in the project root directory (The same directory for this README)
python main.py
Note that you must run this in an interactive terminal
You will be presented with a number of actions to perform, You can:
- View all habits: Shows all active habits
- Add a habit: Creates a new habit
- Edit a habit: Change a specific property of a habit
- Check-off a habit: adds an entry to a selected habit
- Analyze habits: Gives a choice of interesting stats to calculate
Then the application will guide you through the rest of the setup process
If you cloned the repository your save/user.json
file must look like this
{
"habit": []
}
To generate the sample data proceed to run the following command in the project root
python generate_data.py
This will generate 5 habits (3 daily and 2 weekly) with 4 weeks of data each
If you want to contribute or modify to this application, use the following command to automatically check basic functionality
pytest tests