https://github.com/lepips/workouts
Simple exercise parser for Bodybuilding.com
https://github.com/lepips/workouts
Last synced: 12 months ago
JSON representation
Simple exercise parser for Bodybuilding.com
- Host: GitHub
- URL: https://github.com/lepips/workouts
- Owner: LePips
- Created: 2018-12-19T22:54:53.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-05-21T06:19:34.000Z (about 5 years ago)
- Last Synced: 2025-06-27T02:08:41.101Z (12 months ago)
- Language: Python
- Homepage:
- Size: 22.1 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Workouts
Uses selenium to scrape exercise information. Selenium is used because the exercises are lazy loaded, too lazy to try native python solution found online.
Each muscle group has its own json file, with the format:
```
{
'': [
{
'title': ,
'equipment': ,
'link': ,
'pictures': []
},
...
]
}
```
Parsing all of the exercises for all of the muscle groups will take a long time.