Metadata-Version: 2.1
Name: MTGA
Version: 0.9.5
Summary: python-mtga: a python-accessible interface for MTGA cards
Home-page: https://github.com/mtgatracker/python-mtga
Author: shawkins
Author-email: devs.mtgatracker@gmail.com
License: MIT License
Keywords: mtga mtg magic arena grpid mtgjson
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Quality Assurance
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
Provides-Extra: test

# Python MTGA
MTGA tools & set data for python. Original cardset generated with MTGJSON and scryfall,
with initial set of  MTGA grpId's collected by Fugi & Spencatro.
(Now we just use the data already present in your MTGA installation.)
## Installation
`pip install mtga`
or
`python setup.py install`
## Usage
```python
from mtga.set_data import all_mtga_cards
print(all_mtga_cards.find_one("Mangara"))
# <Card: 'Mangara, the Diplomat' ['White'] M21 71809>
print(all_mtga_cards.find_one(71809))
# <Card: 'Mangara, the Diplomat' ['White'] M21 71809>
print(all_mtga_cards.find_one("71809"))
# <Card: 'Mangara, the Diplomat' ['White'] M21 71809>
```
## Deploying
Because I always forget:
```bash
python setup.py sdist bdist_wheel
twine upload dist/MTGA-<version>*
```

