Alejandro Cremades commited on
Commit
c1c4e8a
1 Parent(s): 3c279a8

Update README with new card list links

Browse files
Files changed (2) hide show
  1. README.md +15 -8
  2. middleschool-cardlist.ipynb +2 -0
README.md CHANGED
@@ -10,18 +10,25 @@ Composes a list of Magic cards legal in the Middle School format.
10
 
11
  ## List of Middle School legal cards
12
 
13
- You can download the list in the following formats:
14
 
15
- - [JSON (Oracle IDs and card names only)](output/middleschool.json)
16
- - [CSV (Oracle IDs and card names only)](output/middleschool.csv)
17
- - [JSON (with additional columns)](output/middleschool_extra_fields.json)
18
- - [CSV (with additional columns)](output/middleschool_extra_fields.csv)
 
 
 
 
 
 
 
19
 
20
  ## Composing the list
21
 
22
- Feel free to take a look at [the Jupyter notebook](https://github.com/alecrem/middleschool-cardlist/blob/main/middleschool-cardlist.ipynb) for a quick idea of the process (outdated version).
23
 
24
- To actually compose the list, please run the shell and python scripts in the `list_scripts` directory in order.
25
 
26
  ### Requirements
27
 
@@ -52,4 +59,4 @@ streamlit run Middle_School_Card_Search.py
52
  ## Next.js web interface (deprecated)
53
 
54
  - [Repository](https://github.com/alecrem/middleschool-tutor)
55
- - [Last version deployed](https://middleschooltutor.vercel.app)
 
10
 
11
  ## List of Middle School legal cards
12
 
13
+ You can download the list of legal cards in the following formats:
14
 
15
+ - [JSON (Oracle IDs and card names only)](static/middleschool.json)
16
+ - [CSV (Oracle IDs and card names only)](static/middleschool.csv)
17
+ - [JSON (with additional columns)](static/middleschool_extra_fields.json)
18
+ - [CSV (with additional columns)](static/middleschool_extra_fields.csv)
19
+
20
+ The following versions of the list include banned cards with a `banned` column set to `True`:
21
+
22
+ - [JSON (Oracle IDs and card names only)](static/middleschool_with_banned.json)
23
+ - [CSV (Oracle IDs and card names only)](static/middleschool_with_banned.csv)
24
+ - [JSON (with additional columns)](static/middleschool_extra_fields_with_banned.json)
25
+ - [CSV (with additional columns)](static/middleschool_extra_fields_with_banned.csv)
26
 
27
  ## Composing the list
28
 
29
+ Feel free to take a look at [the Jupyter notebook](https://github.com/alecrem/middleschool-cardlist/blob/main/middleschool-cardlist.ipynb) for a quick idea of the process, but please keep in mind that it is outdated and still included only for quick reference purposes.
30
 
31
+ To actually compose the list, run the shell and python scripts in the `list_scripts` directory in order.
32
 
33
  ### Requirements
34
 
 
59
  ## Next.js web interface (deprecated)
60
 
61
  - [Repository](https://github.com/alecrem/middleschool-tutor)
62
+ - [Latest version deployed](https://middleschooltutor.vercel.app)
middleschool-cardlist.ipynb CHANGED
@@ -7,6 +7,8 @@
7
  "source": [
8
  "# middleschool-cardlist\n",
9
  "\n",
 
 
10
  "## Prepare the data\n",
11
  "\n",
12
  "Download raw data from [MTGJSON](https://mtgjson.com/) (uncomment and run only once)\n"
 
7
  "source": [
8
  "# middleschool-cardlist\n",
9
  "\n",
10
+ "Note: this notebook is only for introductory purposes, and is not the way our list is compiled anymore. See the README for more information.\n",
11
+ "\n",
12
  "## Prepare the data\n",
13
  "\n",
14
  "Download raw data from [MTGJSON](https://mtgjson.com/) (uncomment and run only once)\n"