Skip to content

Latest commit

 

History

History
47 lines (34 loc) · 687 Bytes

readme.md

File metadata and controls

47 lines (34 loc) · 687 Bytes

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

python3 tracker.py

Local files

All data is stored in local files. The following files are used:

data/weight-log.csv

date,time,weight
x,x,x

data/workout-log.csv

id,date,time,names,weights
x,x,x,x,x

config.json

{
  "maintenance_calories": 2200,
  "workouts": {
    "A": ["Bench", "Incline Bench", "Overhead Press", "Squat"],
    "B": ["Pull-up", "Barbell Row", "Deadlift", "Curl"]
  }
}