Python-Strava connector that allows you to track personal fitness records and other information
Retrieve your personal client ID and client secret from strava
Setup environment in your folder. Use pip3 freeze to check version
python3 -m venv venv
venv\Scripts\activate
pip3 install requests requests-oauthlib python-dotenv
Then setup your .env file in the root directory:
client_id=YOUR_CLIENT_ID
client_secret=YOUR_CLIENT_SECRET
❗️ Caution
This project is very early in development. Currently, program only returns an object response; more features will be added in the future.