| Quotes cards and rules of the Magic: the Gathering TCG. | Quotes cards and rules of the Magic: the Gathering TCG. | ||||
| # Howto: | |||||
| $ ./make_data.sh | |||||
| $ docker build -t <container-name> . | |||||
| $ docker run <container-name> | |||||
| # Commands | |||||
| /o <card name or search strings> - oracle text for a card | /o <card name or search strings> - oracle text for a card | ||||
| /q <question> - oracle text for cards mentioned in the question | /q <question> - oracle text for cards mentioned in the question |
| #!/bin/sh | #!/bin/sh | ||||
| curl http://media.wizards.com/2018/downloads/MagicCompRules%2020181005.txt | iconv -f cp1251 -t utf8 > cr.txt | |||||
| mkdir -p data | mkdir -p data | ||||
| python3 scripts/update_cards.py | python3 scripts/update_cards.py | ||||
| curl http://media.wizards.com/2018/downloads/MagicCompRules%2020181005.txt | iconv -f cp1251 -t utf8 > cr.txt | |||||
| python3 scripts/update_cr.py | python3 scripts/update_cr.py |