2018-02-07 03:01:08 +00:00
|
|
|
from .cards_object import CardsObject
|
2018-01-30 03:54:20 +00:00
|
|
|
import urllib.parse
|
2018-01-11 03:04:03 +00:00
|
|
|
|
2018-02-07 03:01:08 +00:00
|
|
|
class Mtgo(CardsObject):
|
2018-01-30 03:54:20 +00:00
|
|
|
def __init__(self, **kwargs):
|
2018-02-13 21:51:03 +00:00
|
|
|
if kwargs.get('id') is None:
|
|
|
|
raise TypeError('No id provided to search by')
|
2018-02-14 02:02:48 +00:00
|
|
|
|
|
|
|
self.url = 'cards/mtgo/{}?'.format(str(kwargs.get('id')))
|
2018-01-30 03:54:20 +00:00
|
|
|
super(Mtgo, self).__init__(self.url)
|