Scrython/scrython/cards/search.py

276 lines
9.4 KiB
Python
Raw Normal View History

2018-02-13 20:58:28 +00:00
from .cards_object import CardsObject
import urllib.parse
2018-02-13 20:58:28 +00:00
class Search(CardsObject):
2018-10-22 14:19:38 +00:00
"""
cards/search
Uses a search query to gather relevant data.
2018-02-21 19:42:58 +00:00
2018-10-22 14:19:38 +00:00
Positional arguments:
q : str ...... The query to search. This will be updated in the future.
2018-02-21 19:42:58 +00:00
2018-10-22 14:19:38 +00:00
Optional arguments:
order : str ................... The order you'd like the data returned.
unique : str ........................... A way to filter similar cards.
dir : str ......... The direction you'd like to sort. (asc, desc, auto)
include_extras : bool ... Includes cards that are normally omitted from
search results, like Un-sets.
page : int .............. The page number you'd like to search, if any.
Inherits all arguments from CardsObject.
2018-02-21 19:42:58 +00:00
2018-10-22 14:19:38 +00:00
Attributes:
object : str ....................... Returns what kind of object it is.
total_cards : int ......... How many cards are returned from the query.
data : list ...................... The list of potential autocompletes.
has_more : bool ......... True if there is more than 1 page of results.
next_page : str ............ The API URI to the next page of the query.
warnings : list .................. Provides an array of errors, if any.
data_length : int .................... The length of the data returned.
data_tuple : dict .......... Accesses an object at the specified index.
2018-02-21 19:42:58 +00:00
2018-10-22 14:19:38 +00:00
Example usage:
>>> search = scrython.cards.Search(q="++e:A25", order="spoiled")
>>> search.data()
"""
def __init__(self, **kwargs):
if kwargs.get('q') is None:
raise TypeError('No query is specified.')
2018-02-13 21:51:03 +00:00
2018-10-22 14:19:38 +00:00
self.dict = {
'q':kwargs.get('q'),
'order':kwargs.get('order', 'none'),
'unique':kwargs.get('unique', 'none'),
'dir':kwargs.get('dir', 'none'),
'include_extras':kwargs.get('include_extras', 'false'),
'page':kwargs.get('page', '1')
}
2018-10-22 14:19:38 +00:00
self.args = urllib.parse.urlencode(self.dict)
self.url = 'cards/search?' + self.args
2018-10-22 14:19:38 +00:00
super(Search, self).__init__(self.url)
2018-10-22 14:19:38 +00:00
def object(self):
super(Search, self)._checkForKey('object')
2018-10-22 14:19:38 +00:00
return self.scryfallJson['object']
2018-10-22 14:19:38 +00:00
def total_cards(self):
super(Search, self)._checkForKey('total_cards')
2018-10-22 14:19:38 +00:00
return self.scryfallJson['total_cards']
2018-10-22 14:19:38 +00:00
def data(self):
super(Search, self)._checkForKey('data')
2018-10-22 14:19:38 +00:00
return self.scryfallJson['data']
2018-10-22 14:19:38 +00:00
def next_page(self):
super(Search, self)._checkForKey('next_page')
2018-10-22 14:19:38 +00:00
return self.scryfallJson['next_page']
2018-10-22 14:19:38 +00:00
def warnings(self):
super(Search, self)._checkForKey('warnings')
2018-10-22 14:19:38 +00:00
return self.scryfallJson['warnings']
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def data_length(self):
super(Search, self)._checkForKey('data')
2018-10-22 14:19:38 +00:00
return len(self.scryfallJson['data'])
2018-10-22 14:19:38 +00:00
def data_tuple(self, num):
super(Search, self)._checkForKey('data')
2018-10-22 14:19:38 +00:00
return self.scryfallJson['data'][num]
2018-10-22 14:19:38 +00:00
def has_more(self):
super(Search, self)._checkForKey('has_more')
2018-04-14 18:21:31 +00:00
2018-10-22 14:19:38 +00:00
return self.scryfallJson['has_more']
2018-04-14 18:21:31 +00:00
2018-10-22 14:19:38 +00:00
#The following attributes are only to override the inherited class attributes.
#This class has no matching attributes but we still need the getRequest function from CardsObject
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def id(self):
raise AttributeError('Search object has no attribute \'id\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def multiverse_ids(self):
raise AttributeError('Search object has no attribute \'multiverse_ids\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def mtgo_id(self):
raise AttributeError('Search object has no attribute \'mtgo_id\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def mtgo_foil_id(self):
raise AttributeError('Search object has no attribute \'mtgo_foil_id\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def name(self):
raise AttributeError('Search object has no attribute \'name\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def uri(self):
raise AttributeError('Search object has no attribute \'uri\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def scryfall_uri(self):
raise AttributeError('Search object has no attribute \'scryfall_uri\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def layout(self):
raise AttributeError('Search object has no attribute \'layout\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def highres_image(self):
raise AttributeError('Search object has no attribute \'highres_image\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def image_uris(self):
raise AttributeError('Search object has no attribute \'image_uris\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def cmc(self):
raise AttributeError('Search object has no attribute \'cmc\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def type_line(self):
raise AttributeError('Search object has no attribute \'type_line\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def oracle_text(self):
raise AttributeError('Search object has no attribute \'oracle_text\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def mana_cost(self):
raise AttributeError('Search object has no attribute \'mana_cost\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def colors(self):
raise AttributeError('Search object has no attribute \'colors\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def color_identity(self):
raise AttributeError('Search object has no attribute \'color_identity\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def legalities(self):
raise AttributeError('Search object has no attribute \'legalities\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def reserved(self):
raise AttributeError('Search object has no attribute \'reserved\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def reprint(self):
raise AttributeError('Search object has no attribute \'reprint\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def set_code(self):
raise AttributeError('Search object has no attribute \'set_code\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def set_name(self):
raise AttributeError('Search object has no attribute \'set_name\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def set_uri(self):
raise AttributeError('Search object has no attribute \'set_uri\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def set_search_uri(self):
raise AttributeError('Search object has no attribute \'set_search_uri\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def scryfall_set_uri(self):
raise AttributeError('Search object has no attribute \'scryfall_set_uri\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def rulings_uri(self):
raise AttributeError('Search object has no attribute \'rulings_uri\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def prints_search_uri(self):
raise AttributeError('Search object has no attribute \'prints_search_uri\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def collector_number(self):
raise AttributeError('Search object has no attribute \'collector_number\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def digital(self):
raise AttributeError('Search object has no attribute \'digital\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def rarity(self):
raise AttributeError('Search object has no attribute \'rarity\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def illustration_id(self):
raise AttributeError('Search object has no attribute \'illustration_id\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def artist(self):
raise AttributeError('Search object has no attribute \'artist\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def frame(self):
raise AttributeError('Search object has no attribute \'frame\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def full_art(self):
raise AttributeError('Search object has no attribute \'full_art\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def border_color(self):
raise AttributeError('Search object has no attribute \'border_color\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def timeshifted(self):
raise AttributeError('Search object has no attribute \'timeshifted\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def colorshifted(self):
raise AttributeError('Search object has no attribute \'colorshifted\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def futureshifted(self):
raise AttributeError('Search object has no attribute \'futureshifted\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def edhrec_rank(self):
raise AttributeError('Search object has no attribute \'edhrec_rank\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def currency(self, mode):
raise AttributeError('Search object has no attribute \'currency\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def related_uris(self):
raise AttributeError('Search object has no attribute \'related_uris\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def purchase_uris(self):
raise AttributeError('Search object has no attribute \'purchase_uris\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def life_modifier(self):
raise AttributeError('Search object has no attribute \'life_modifier\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def hand_modifier(self):
raise AttributeError('Search object has no attribute \'hand_modifier\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def color_indicator(self):
raise AttributeError('Search object has no attribute \'color_indicator\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def all_parts(self):
raise AttributeError('Search object has no attribute \'all_parts\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def card_faces(self):
raise AttributeError('Search object has no attribute \'card_faces\'')
2018-02-13 20:58:28 +00:00
2018-10-22 14:19:38 +00:00
def watermark(self):
raise AttributeError('Search object has no attribute \'watermark\'')
2018-02-13 20:58:28 +00:00
def story_spotlight(self):
raise AttributeError('Search object has no attribute \'story_spotlight\'')
2018-02-13 20:58:28 +00:00
def power(self):
raise AttributeError('Search object has no attribute \'power\'')
def toughness(self):
raise AttributeError('Search object has no attribute \'toughness\'')
def loyalty(self):
raise AttributeError('Search object has no attribute \'loyalty\'')
def flavor_text(self):
raise AttributeError('Search object has no attribute \'flavor_text\'')
def arena_id(self):
raise AttributeError('Search object has no attribute \'arena_id\'')
def lang(self):
raise AttributeError('Search object has no attribute \'lang\'')
def printed_name(self):
raise AttributeError('Search object has no attribute \'printed_name\'')
def printed_type_line(self):
raise AttributeError('Search object has no attribute \'printed_type_line\'')
def printed_text(self):
raise AttributeError('Search object has no attribute \'printed_text\'')
def oracle_id(self):
raise AttributeError('Search object has no attribute \'oracle_id\'')
def nonfoil(self):
raise AttributeError('Search object has no attribute \'nonfoil\'')
def oversized(self):
raise AttributeError('Search object has no attribute \'oversized\'')