├── .dockerignore ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── cards.csv ├── get_cardlist.py ├── howl_from_beyond.gif ├── mtgifening.py └── utils.py /.dockerignore: -------------------------------------------------------------------------------- 1 | * 2 | !*.py 3 | !cards.csv -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | secrets.py 2 | *.cpython* 3 | *.mp4 -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/magic-the-gifening/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/magic-the-gifening/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/magic-the-gifening/HEAD/README.md -------------------------------------------------------------------------------- /cards.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/magic-the-gifening/HEAD/cards.csv -------------------------------------------------------------------------------- /get_cardlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/magic-the-gifening/HEAD/get_cardlist.py -------------------------------------------------------------------------------- /howl_from_beyond.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/magic-the-gifening/HEAD/howl_from_beyond.gif -------------------------------------------------------------------------------- /mtgifening.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/magic-the-gifening/HEAD/mtgifening.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/minimaxir/magic-the-gifening/HEAD/utils.py --------------------------------------------------------------------------------