2018-02-07 03:01:08 +00:00
|
|
|
from .cards_object import CardsObject
|
2018-01-25 20:27:56 +00:00
|
|
|
|
2018-01-11 03:04:03 +00:00
|
|
|
|
2018-02-07 03:01:08 +00:00
|
|
|
class Random(CardsObject):
|
2018-02-21 19:42:58 +00:00
|
|
|
"""
|
|
|
|
cards/random
|
|
|
|
Get a random card.
|
|
|
|
|
2018-10-24 00:54:28 +00:00
|
|
|
Args:
|
|
|
|
format (string, optional):
|
|
|
|
Defaults to 'json'.
|
|
|
|
Returns data in the specified method.
|
|
|
|
face (string, optional):
|
|
|
|
Defaults to empty string.
|
|
|
|
If you're using the `image` format,
|
|
|
|
this will specify if you want the front or back face.
|
|
|
|
version (string, optional):
|
|
|
|
Defaults to empty string.
|
|
|
|
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):
|
|
|
|
Defaults to empty string.
|
|
|
|
Returns a prettier version of the json object.
|
|
|
|
Note that this may break functionality with Scrython.
|
2018-02-21 19:42:58 +00:00
|
|
|
|
2018-10-26 21:24:34 +00:00
|
|
|
Returns:
|
|
|
|
N/A
|
|
|
|
|
2018-10-24 00:54:28 +00:00
|
|
|
Raises:
|
|
|
|
Exception: If the object returned is an error.
|
2018-02-21 19:42:58 +00:00
|
|
|
|
2018-10-28 05:09:09 +00:00
|
|
|
Examples:
|
2018-02-21 19:42:58 +00:00
|
|
|
>>> card = scrython.cards.Random()
|
|
|
|
>>> card.purchase_uris()
|
|
|
|
"""
|
2018-01-30 03:32:08 +00:00
|
|
|
def __init__(self):
|
2018-02-14 02:02:48 +00:00
|
|
|
self.url = 'cards/random?'
|
2018-01-31 00:32:39 +00:00
|
|
|
super(Random, self).__init__(self.url)
|