├── .coveragerc ├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE.txt ├── Makefile ├── README.md ├── mtgsdk ├── __init__.py ├── card.py ├── changelog.py ├── config.py ├── querybuilder.py ├── restclient.py ├── set.py ├── subtype.py ├── supertype.py └── type.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── test_card.py ├── test_changelog.py ├── test_config.py ├── test_mtgexception.py ├── test_set.py ├── test_subtype.py ├── test_supertype.py └── test_type.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/README.md -------------------------------------------------------------------------------- /mtgsdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/mtgsdk/__init__.py -------------------------------------------------------------------------------- /mtgsdk/card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/mtgsdk/card.py -------------------------------------------------------------------------------- /mtgsdk/changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/mtgsdk/changelog.py -------------------------------------------------------------------------------- /mtgsdk/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/mtgsdk/config.py -------------------------------------------------------------------------------- /mtgsdk/querybuilder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/mtgsdk/querybuilder.py -------------------------------------------------------------------------------- /mtgsdk/restclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/mtgsdk/restclient.py -------------------------------------------------------------------------------- /mtgsdk/set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/mtgsdk/set.py -------------------------------------------------------------------------------- /mtgsdk/subtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/mtgsdk/subtype.py -------------------------------------------------------------------------------- /mtgsdk/supertype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/mtgsdk/supertype.py -------------------------------------------------------------------------------- /mtgsdk/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/mtgsdk/type.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_card.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/tests/test_card.py -------------------------------------------------------------------------------- /tests/test_changelog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/tests/test_changelog.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_mtgexception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/tests/test_mtgexception.py -------------------------------------------------------------------------------- /tests/test_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/tests/test_set.py -------------------------------------------------------------------------------- /tests/test_subtype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/tests/test_subtype.py -------------------------------------------------------------------------------- /tests/test_supertype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/tests/test_supertype.py -------------------------------------------------------------------------------- /tests/test_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/tests/test_type.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MagicTheGathering/mtg-sdk-python/HEAD/tox.ini --------------------------------------------------------------------------------