2018-01-31 01:47:31 +00:00
|
|
|
from .rulings_object import RulingsObject
|
2018-01-31 01:36:44 +00:00
|
|
|
|
|
|
|
class Code(RulingsObject):
|
2018-02-21 23:33:58 +00:00
|
|
|
"""
|
|
|
|
cards/:code/:collector_number/rulings
|
|
|
|
|
|
|
|
Gets the ruling of a card by the set and collector number.
|
|
|
|
|
2018-10-25 20:04:36 +00:00
|
|
|
Args:
|
|
|
|
set (string): The 3 letter set code of the card you want rulings for.
|
|
|
|
collector_number (string): The collector number of the card.
|
|
|
|
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-02-21 23:33:58 +00:00
|
|
|
|
|
|
|
Example usage:
|
|
|
|
>>> rule = scrython.rulings.Code(code='ddg', collector_number='42')
|
|
|
|
>>> rule.data_length()
|
|
|
|
"""
|
2018-02-06 02:16:54 +00:00
|
|
|
def __init__(self, code, collector_number):
|
2018-02-15 20:13:39 +00:00
|
|
|
self.url = 'cards/{}/{}/rulings?'.format(code.lower(), str(collector_number))
|
2018-01-31 01:36:44 +00:00
|
|
|
super(Code, self).__init__(self.url)
|