Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.04 KB

README.md

File metadata and controls

36 lines (30 loc) · 1.04 KB

Project1: Health Assistant Program

Program is stored in the project1/health-program-project/ directory

FILES include:

- main.py
- meal.py
- core.py
- hiit.py
- strength.py
- workout.py 

Program Structure:

health-program-project/
├── main.py
├── meal
│   ├── __pycache__
│   │   └── meal.cpython-36.pyc
│   └── meal.py
└── workouts
    ├── __pycache__
    │   ├── core.cpython-36.pyc
    │   ├── hiit.cpython-36.pyc
    │   ├── strength.cpython-36.pyc
    │   └── workout.cpython-36.pyc
    ├── core.py
    ├── hiit.py
    ├── strength.py
    └── workout.py

Use

To use, run the main.py file within the health-program-project directory