2018-02-17 01:43:56 +00:00
|
|
|
from .catalogs_object import CatalogsObject
|
|
|
|
|
|
|
|
class CardNames(CatalogsObject):
|
2018-02-21 23:13:55 +00:00
|
|
|
"""
|
|
|
|
catalogs/card-names
|
|
|
|
|
|
|
|
Catalog object for all known card names.
|
|
|
|
|
|
|
|
Example usage:
|
|
|
|
>>> catalog = scrython.catalog.CardNames()
|
|
|
|
>>> catalog.data()
|
|
|
|
"""
|
2018-02-17 01:43:56 +00:00
|
|
|
def __init__(self):
|
|
|
|
self._url = 'catalog/card-names?'
|
|
|
|
super(CardNames, self).__init__(self._url)
|