Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 16 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -333,6 +333,8 @@ print(ex["instructions"]["tr"]) # Turkish
print(ex["instructions"]["ru"]) # Russian
print(ex["instructions"]["zh"]) # Chinese
print(ex["instructions"]["hi"]) # Hindi
print(ex["instructions"]["pl"]) # Polish
print(ex["instructions"]["ko"]) # Korean
```

### Python — Load with Pandas
Expand Down Expand Up @@ -406,12 +408,23 @@ interface Exercise {
pl: string;
ko: string;
};
instruction_steps: {
en: string[];
es: string[];
it: string[];
tr: string[];
ru: string[];
zh: string[];
hi: string[];
pl: string[];
ko: string[];
};
muscle_group: string;
secondary_muscles: string[];
target: string;
media_id: string | null;
image: string | null;
gif_url: string | null;
media_id: string;
image: string;
gif_url: string;
attribution: string;
created_at: string;
}
Expand Down