3cb-data

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.alexwennerberg.com/3cb-data.git
Log | Files | Refs | README | LICENSE

commit 26d4131bbd1b2f5c2808e25b9e17f6a969c75c20
parent 5941b7194246033f0b721c2c4e89c704cf17e53e
Author: alex wennerberg <alex@alexwennerberg.com>
Date:   Fri, 19 Jan 2024 21:20:36 -0500

plaintext readme

Diffstat:
AREADME | 19+++++++++++++++++++
DREADME.md | 19-------------------
2 files changed, 19 insertions(+), 19 deletions(-)

diff --git a/README b/README @@ -0,0 +1,19 @@ +3 Card Blind data analysis +========================== + +Utilities for pulling data from 3 card blind metashape: + +https://sites.google.com/view/3cb-metashape/home + +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 diff --git a/README.md b/README.md @@ -1,19 +0,0 @@ -# 3 Card Blind data analysis - -Utilities for pulling data from [3 card blind metashape](https://sites.google.com/view/3cb-metashape/home) - -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 -```