25 lines
602 B
Python
25 lines
602 B
Python
|
from .catalogs_object import CatalogsObject
|
||
|
|
||
|
class ArtistNames(CatalogsObject):
|
||
|
"""
|
||
|
catalogs/card-names
|
||
|
|
||
|
Catalog object for all known card names.
|
||
|
|
||
|
Positional Arguments:
|
||
|
No arguments are required.
|
||
|
|
||
|
Optional Arguments:
|
||
|
All arguments are inherited from CatalogsObject
|
||
|
|
||
|
Attributes:
|
||
|
All attributes are inherited from CatalogsObject
|
||
|
|
||
|
Example usage:
|
||
|
>>> catalog = scrython.catalog.CardNames()
|
||
|
>>> catalog.data()
|
||
|
"""
|
||
|
def __init__(self):
|
||
|
self._url = 'catalog/artist-names?'
|
||
|
super(ArtistNames, self).__init__(self._url)
|