Scrython/Autocomplete.md

45 lines
1.4 KiB
Markdown
Raw Normal View History

2018-10-28 02:54:47 +00:00
# **class** `Autocomplete()`
These docs will likely not be as detailed as the official Scryfall Documentation, and you should reference that for more information.
>In the event that a key isn't found or has been changed, you can access the full JSON output with the `scryfallJson` variable (`Autocomplete().scryfallJson`).
## Args
|arg|type|description|
2018-10-28 02:56:57 +00:00
|:---:|:---:|:---:|
|q|string|The query of the autocompletion.|
2018-10-28 02:54:47 +00:00
|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.|
## Returns
N/A
## Raises
|exception type|reason|
2018-10-28 02:56:57 +00:00
|:---:|:---:|
|Exception|If the \'q\' parameter is not provided.|
2018-10-28 02:54:47 +00:00
|Exception|If the object returned is an error.|
## Examples
```
>>> auto = scrython.cards.Autocomplete(q="Thal")
>>> auto.total_items()
2018-10-28 04:24:33 +00:00
```
## Methods
### `object()`
2018-10-28 04:28:00 +00:00
```
2018-10-28 04:24:33 +00:00
Returns the type of object it is.
(card, error, etc)
Returns:
string: The type of object
2018-10-28 04:28:00 +00:00
```