Scrython/scrython/rulings/arena.py

35 lines
1.2 KiB
Python
Raw Normal View History

2018-10-22 15:24:15 +00:00
from .rulings_object import RulingsObject
class Arena(RulingsObject):
"""
cards/mtgo/:id/rulings
Gets the ruling of a card by the Arena Id.
2018-10-25 20:04:36 +00:00
Args:
id (string): The arena id of the card you want rulings for.
format (string, optional): Returns data in the specified method. Defaults to JSON.
face (string, optional):
If you're using the `image` format, this will specify if you want the front or back face.
version (string, optional):
If you're using the `image` format, this will specify if you want the small, normal, large, etc version of the image.
pretty (string, optional):
Returns a prettier version of the json object. Note that this may break functionality with Scrython.
2018-10-22 15:24:15 +00:00
2018-10-28 05:09:09 +00:00
Returns:
N/A
Raises:
N/A
Examples:
>>> rule = scrython.rulings.Arena(id="66975")
2018-10-22 15:24:15 +00:00
>>> rule.data_length()
"""
def __init__(self, **kwargs):
if kwargs.get('id') is None:
raise TypeError('No id provided to search by')
self.url = 'cards/arena/{}/rulings?'.format(str(kwargs.get('id')))
super(Arena, self).__init__(self.url)