2018-01-31 01:47:31 +00:00
|
|
|
from .rulings_object import RulingsObject
|
2018-01-31 01:36:44 +00:00
|
|
|
|
|
|
|
class Multiverse(RulingsObject):
|
2018-02-21 23:33:58 +00:00
|
|
|
"""
|
|
|
|
cards/multiverse/:id/rulings
|
|
|
|
|
|
|
|
Gets the ruling of a card by the Multiverse Id.
|
|
|
|
|
|
|
|
Positional arguments:
|
|
|
|
id : str ........... The multiverse id of the card you want rulings for.
|
|
|
|
|
|
|
|
Optional arguments:
|
|
|
|
All arguments inherited from RulingsObject
|
|
|
|
|
|
|
|
Attributes:
|
|
|
|
All attributes inherited from RulingsObject
|
|
|
|
|
|
|
|
Example usage:
|
|
|
|
>>> rule = scrython.rulings.Id(id='4301')
|
|
|
|
>>> rule.data_length()
|
|
|
|
"""
|
2018-02-06 02:16:54 +00:00
|
|
|
def __init__(self, **kwargs):
|
2018-02-13 21:55:32 +00:00
|
|
|
if kwargs.get('id') is None:
|
2018-02-14 02:02:48 +00:00
|
|
|
raise TypeError('No id provided to search by')
|
2018-02-13 21:55:32 +00:00
|
|
|
|
2018-02-15 20:13:39 +00:00
|
|
|
self.url = 'cards/multiverse/{}/rulings?'.format(str(kwargs.get('id')))
|
2018-01-31 01:36:44 +00:00
|
|
|
super(Multiverse, self).__init__(self.url)
|