https://github.com/paul-bokelman/fit-tracker
simple fitness program for quick tracking and visualization of progress
https://github.com/paul-bokelman/fit-tracker
csv python terminal
Last synced: 2 months ago
JSON representation
simple fitness program for quick tracking and visualization of progress
- Host: GitHub
- URL: https://github.com/paul-bokelman/fit-tracker
- Owner: paul-bokelman
- Created: 2024-02-28T07:17:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-28T07:40:25.000Z (over 2 years ago)
- Last Synced: 2025-06-25T02:08:28.094Z (about 1 year ago)
- Topics: csv, python, terminal
- Language: Python
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Local fitness tracker
A simple fitness tracker that allows you to track and visualize your daily workouts and weight.
## Features
- Log Weight
- Log Workout
- View Previous Workouts
- View Weights
- View Progress (graphs)
## Usage
```bash
python3 tracker.py
```
### Local files
All data is stored in local files. The following files are used:
`data/weight-log.csv`
```csv
date,time,weight
x,x,x
```
`data/workout-log.csv`
```csv
id,date,time,names,weights
x,x,x,x,x
```
`config.json`
```json
{
"maintenance_calories": 2200,
"workouts": {
"A": ["Bench", "Incline Bench", "Overhead Press", "Squat"],
"B": ["Pull-up", "Barbell Row", "Deadlift", "Curl"]
}
}
```