141 lines
4.5 KiB
Python
141 lines
4.5 KiB
Python
import asyncio
|
|
import aiohttp
|
|
import urllib.parse
|
|
|
|
class SetsObject(object):
|
|
"""
|
|
The master class for all sets objects.
|
|
|
|
Positional arguments:
|
|
No arguments required.
|
|
|
|
Optional arguments:
|
|
format : str ................... The format to return. Defaults to JSON.
|
|
pretty : bool ... Makes the returned JSON prettier. The library may not work properly with this setting.
|
|
|
|
Attributes:
|
|
object : str ...... Returns the type of object it is. (card, error, etc)
|
|
code : str ........................ The three letter set code of the set
|
|
mtgo_code : str ........................ The mtgo equivalent of `code()`
|
|
name : str ................................... The full name of the set.
|
|
set_type : str ......... The type of the set (expansion, commander, etc)
|
|
released_at : str ....................... The date the set was launched.
|
|
block_code : str ..... The the letter code for the block the set was in.
|
|
block : str ................... The full name of the block a set was in.
|
|
parent_set_code : str ................. The set code for the parent set.
|
|
card_count : int ...................... The number of cards in the set.
|
|
digital : bool .............. True if this set is only featured on MTGO.
|
|
foil : bool ........................... True if this set only has foils.
|
|
icon_svg_uri : str ................ A URI to the SVG of the set symbol.
|
|
search_uri : str .................. The scryfall API url for the search.
|
|
"""
|
|
def __init__(self, _url, **kwargs):
|
|
self.params = {'format': kwargs.get('format', 'json'), 'pretty': kwargs.get('pretty', '')}
|
|
|
|
self.encodedParams = urllib.parse.urlencode(self.params)
|
|
self._url = 'https://api.scryfall.com/' + _url + "&" + self.encodedParams #Find a fix for this later
|
|
|
|
async def getRequest(client, url, **kwargs):
|
|
async with client.get(url, **kwargs) as response:
|
|
return await response.json()
|
|
|
|
async def main(loop):
|
|
async with aiohttp.ClientSession(loop=loop) as client:
|
|
self.scryfallJson = await getRequest(client, self._url)
|
|
|
|
loop = asyncio.get_event_loop()
|
|
loop.run_until_complete(main(loop))
|
|
|
|
if self.scryfallJson['object'] == 'error':
|
|
raise Exception(self.scryfallJson['details'])
|
|
|
|
def __checkForKey(self, key):
|
|
try:
|
|
return self.scryfallJson[key]
|
|
except KeyError:
|
|
return None
|
|
|
|
def object(self):
|
|
if self.__checkForKey('object') is None:
|
|
raise KeyError('This object has no key \'object\'')
|
|
|
|
return self.scryfallJson['object']
|
|
|
|
def code(self):
|
|
if self.__checkForKey('object') is None:
|
|
raise KeyError('This object has no key \'code\'')
|
|
|
|
return self.scryfallJson['code']
|
|
|
|
def mtgo_code(self):
|
|
if self.__checkForKey('mtgo_code') is None:
|
|
raise KeyError('This object has no key \'mtgo_code\'')
|
|
|
|
return self.scryfallJson['mtgo_code']
|
|
|
|
def name(self):
|
|
if self.__checkForKey('name') is None:
|
|
raise KeyError('This object has no key \'name\'')
|
|
|
|
return self.scryfallJson['name']
|
|
|
|
def set_type(self):
|
|
if self.__checkForKey('set_type') is None:
|
|
raise KeyError('This object has no key \'set_type\'')
|
|
|
|
return self.scryfallJson['set_type']
|
|
|
|
def released_at(self):
|
|
if self.__checkForKey('released_at') is None:
|
|
raise KeyError('This object has no key \'released_at\'')
|
|
|
|
return self.scryfallJson['released_at']
|
|
|
|
def block_code(self):
|
|
if self.__checkForKey('block_code') is None:
|
|
raise KeyError('This object has no key \'block_code\'')
|
|
|
|
return self.scryfallJson['block_code']
|
|
|
|
def block(self):
|
|
if self.__checkForKey('block') is None:
|
|
raise KeyError('This object has no key \'block\'')
|
|
|
|
return self.scryfallJson['block']
|
|
|
|
def parent_set_code(self):
|
|
if self.__checkForKey('parent_set_code') is None:
|
|
raise KeyError('This object has no key \'parent_set_code\'')
|
|
|
|
return self.scryfallJson['parent_set_code']
|
|
|
|
def card_count(self):
|
|
if self.__checkForKey('card_count') is None:
|
|
raise KeyError('This object has no key \'card_count\'')
|
|
|
|
return self.scryfallJson['card_count']
|
|
|
|
def digital(self):
|
|
if self.__checkForKey('digital') is None:
|
|
raise KeyError('This object has no key \'digital\'')
|
|
|
|
return self.scryfallJson['digital']
|
|
|
|
def foil(self):
|
|
if self.__checkForKey('foil') is None:
|
|
raise KeyError('This object has no key \'foil\'')
|
|
|
|
return self.scryfallJson['foil']
|
|
|
|
def icon_svg_uri(self):
|
|
if self.__checkForKey('icon_svg_uri') is None:
|
|
raise KeyError('This object has no key \'icon_svg_uri\'')
|
|
|
|
return self.scryfallJson['icon_svg_uri']
|
|
|
|
def search_uri(self):
|
|
if self.__checkForKey('search_uri') is None:
|
|
raise KeyError('This object has no key \'search_uri\'')
|
|
|
|
return self.scryfallJson['search_uri']
|