commit 2c878123fe4208e77f0d1d95b672b3361eef5278 parent a75876d3da3d42222519fbd2ef0f434e416c4b61 Author: alex wennerberg <alex@alexwennerberg.com> Date: Sat, 16 Dec 2023 09:36:23 -0500 Update README Diffstat:
| D | README | | | 13 | ------------- |
| A | README.md | | | 19 | +++++++++++++++++++ |
2 files changed, 19 insertions(+), 13 deletions(-)
diff --git a/README b/README @@ -1,13 +0,0 @@ -Utilities for pulling data from 3cb google sheets - -Uses sqlite db - -Pull all cards from mtgjson - -https://mtgjson.com/downloads/all-files/ - -wget https://mtgjson.com/api/v5/AtomicCards.json -cat AtomicCards.json | jq -r '.data | keys[]' > allcards.txt - -After installing imports: -python3 getdata.py diff --git a/README.md b/README.md @@ -0,0 +1,19 @@ +# 3 Card Blind data analysis + +Utilities for pulling data from 3cb google sheets + +Dependencies: + - python + - sqlite + +Pull all cards from [mtgjson](https://mtgjson.com/downloads/all-files/) + +``` +wget https://mtgjson.com/api/v5/AtomicCards.json +cat AtomicCards.json | jq -r '.data | keys[]' > allcards.txt +``` + +Then: +``` +python3 getdata.py +```