A simple Python command-line tool to log and track your gym workouts.
- Add new workout entries (date, exercise, sets, reps, weight)
- View workout history
- Save data in CSV format
- Clone the repo.
- Run
python gym_logger.pyin your terminal. - Follow the prompts to add or view workouts.
A simple Node.js/Express API for managing gym workout plans.
- Create a new workout plan
- Get all workout plans
- Delete a workout plan
- Clone the repo.
- Install dependencies:
npm install - Run:
node index.js - Use Postman or curl to test endpoints.
GET /plans— Get all plansPOST /plans— Add a plan (JSON: { "user": "...", "exercise": "...", "sets": 3, "reps": 10 })DELETE /plans/:id— Delete a plan by ID