Updated autocomplete and search to current api standards

This commit is contained in:
Nanda Scott 2018-10-23 12:17:01 -04:00
parent 31c562da60
commit ddb4263380
2 changed files with 5 additions and 9 deletions

View File

@ -14,7 +14,7 @@ class Autocomplete(CardsObject):
Attributes:
object : str ........ Returns what kind of object it is.
total_items : int ...... How many items are in the list.
total_values : int ...... How many items are in the list.
data : list ....... The list of potential autocompletes.
Example usage:
@ -40,10 +40,10 @@ class Autocomplete(CardsObject):
return self.scryfallJson['object']
def total_items(self):
super(Autocomplete, self)._checkForKey('total_items')
def total_values(self):
super(Autocomplete, self)._checkForKey('total_values')
return self.scryfallJson['total_items']
return self.scryfallJson['total_values']
def data(self):
super(Autocomplete, self)._checkForKey('data')

View File

@ -43,6 +43,7 @@ class Search(CardsObject):
'unique':kwargs.get('unique', 'none'),
'dir':kwargs.get('dir', 'none'),
'include_extras':kwargs.get('include_extras', 'false'),
'include_multilingual':kwargs.get('include_multilingual', 'false'),
'page':kwargs.get('page', '1')
}
@ -71,11 +72,6 @@ class Search(CardsObject):
return self.scryfallJson['next_page']
def warnings(self):
super(Search, self)._checkForKey('warnings')
return self.scryfallJson['warnings']
def data_length(self):
super(Search, self)._checkForKey('data')