| ---
|
| license: cc-by-nc-4.0
|
| language:
|
| - en
|
| - de
|
| - es
|
| pretty_name: Exercise Dataset (Free Sample, RepDB)
|
| tags:
|
| - fitness
|
| - exercise
|
| - workout
|
| - sports
|
| - health
|
| size_categories:
|
| - n<1K
|
| ---
|
|
|
| # Exercise Dataset — Free Sample (RepDB)
|
|
|
| A free, ready-to-use **fitness exercise dataset**: 21 hand-picked exercises, each
|
| with two illustration styles (classic transparent + flat), start/peak poses,
|
| target muscles, equipment, MET values, and full instructions in **English, German,
|
| and Spanish**.
|
|
|
| This is a free sample of [**RepDB**](https://repdb.co) — a curated, commercial-safe exercise
|
| dataset. The full dataset has **400+ fully illustrated exercises** and ships with a
|
| **commercial license**. See https://repdb.co.
|
|
|
| ## Files
|
| - `exercises.json` — structured records (schema v3).
|
| - `exercises.csv` — one row per exercise (pipe-separated list fields).
|
| - `images/classic/` — 3D-render style, transparent background, 512×512 WebP.
|
| - `images/flat/` — flat illustration, solid background, 512×512 WebP.
|
|
|
| ## Load it
|
|
|
| ```python
|
| import json, urllib.request
|
| url = "https://raw.githubusercontent.com/sergei-argutin/exercise-dataset/main/exercises.json"
|
| data = json.load(urllib.request.urlopen(url))
|
| print(data["count"], "exercises")
|
| ```
|
|
|
| ## License
|
| Data & images: **CC BY-NC 4.0** — non-commercial use with attribution
|
| ("Exercise data & images: RepDB, https://repdb.co"). For commercial use and the full 400+
|
| exercise dataset, see https://repdb.co.
|
|
|
| ## Links
|
| - Full dataset & pricing: https://repdb.co
|
| - GitHub: https://github.com/sergei-argutin/exercise-dataset
|
| - Browsable viewer: https://sergei-argutin.github.io/exercise-dataset/
|
|
|