Update README.md
Browse files
README.md
CHANGED
|
@@ -215,3 +215,16 @@ configs:
|
|
| 215 |
- split: train
|
| 216 |
path: data/train-*
|
| 217 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 215 |
- split: train
|
| 216 |
path: data/train-*
|
| 217 |
---
|
| 218 |
+
|
| 219 |
+
# Scryfall Default Cards
|
| 220 |
+
|
| 221 |
+
Raw bulk data dump of scryfall default-cards available [here](https://scryfall.com/docs/api/bulk-data)
|
| 222 |
+
|
| 223 |
+
> A JSON file containing every card object on Scryfall in English or the printed language if the card is only available in one language.
|
| 224 |
+
|
| 225 |
+
## Usage
|
| 226 |
+
|
| 227 |
+
```
|
| 228 |
+
from datasets import load_dataset
|
| 229 |
+
dataset = load_dataset("nishtahir/scryfall-default-cards")
|
| 230 |
+
```
|