16 lines
363 B
Python
16 lines
363 B
Python
from pprint import pprint
|
|
from scraper import GameSearch
|
|
|
|
my_key = "d1d6272bce2366c0a9441c418048dfcca820016a"
|
|
|
|
game_search = GameSearch(my_key)
|
|
|
|
response = game_search.quick_search('shin megami')
|
|
|
|
name = game_search.get_name(response)
|
|
|
|
overview = game_search.get_overview(response)
|
|
|
|
image_url = game_search.get_icon_url(response)
|
|
|
|
print(name, overview, image_url) |