16 lines
385 B
Python
16 lines
385 B
Python
|
from .catalogs_object import CatalogsObject
|
||
|
|
||
|
class ArtistNames(CatalogsObject):
|
||
|
"""
|
||
|
catalogs/card-names
|
||
|
|
||
|
Catalog object for all known card names.
|
||
|
|
||
|
Example usage:
|
||
|
>>> catalog = scrython.catalog.CardNames()
|
||
|
>>> catalog.data()
|
||
|
"""
|
||
|
def __init__(self):
|
||
|
self._url = 'catalog/artist-names?'
|
||
|
super(ArtistNames, self).__init__(self._url)
|