Sergei Argutin commited on
Point download links at exercise-dataset.com (part 2)
Browse files
README.md
CHANGED
|
@@ -65,11 +65,11 @@ with open(path, encoding="utf-8") as f:
|
|
| 65 |
print(data["count"], "exercises")
|
| 66 |
```
|
| 67 |
|
| 68 |
-
Or straight from the
|
| 69 |
|
| 70 |
```python
|
| 71 |
import json, urllib.request
|
| 72 |
-
url = "https://
|
| 73 |
data = json.load(urllib.request.urlopen(url))
|
| 74 |
```
|
| 75 |
|
|
@@ -83,4 +83,4 @@ dataset with a commercial license, see [https://repdb.co/pricing](https://repdb.
|
|
| 83 |
## Links
|
| 84 |
- Full dataset & pricing: https://repdb.co/pricing
|
| 85 |
- GitHub: https://github.com/sergei-argutin/exercise-dataset
|
| 86 |
-
- Browsable viewer: https://
|
|
|
|
| 65 |
print(data["count"], "exercises")
|
| 66 |
```
|
| 67 |
|
| 68 |
+
Or straight from the dataset site:
|
| 69 |
|
| 70 |
```python
|
| 71 |
import json, urllib.request
|
| 72 |
+
url = "https://exercise-dataset.com/exercises.json"
|
| 73 |
data = json.load(urllib.request.urlopen(url))
|
| 74 |
```
|
| 75 |
|
|
|
|
| 83 |
## Links
|
| 84 |
- Full dataset & pricing: https://repdb.co/pricing
|
| 85 |
- GitHub: https://github.com/sergei-argutin/exercise-dataset
|
| 86 |
+
- Browsable viewer: https://exercise-dataset.com/
|