Updated commentary

pull/8/head
sgoudham 4 years ago
parent c7755d274b
commit da5e9c8a89

@ -248,16 +248,18 @@ class Anime(Cog):
if waifu2: if waifu2:
waifus_dict = {} waifus_dict = {}
url = "https://mywaifulist.moe/api/v1/search/"
data = {"term": waifu2,
'content-type': "application/json"}
headers = {'apikey': my_waifu_list_auth}
# Searching API for waifu(s) # Searching API for waifu(s)
async with aiohttp.ClientSession() as session: async with aiohttp.ClientSession() as session:
async with session.post(f"https://mywaifulist.moe/api/v1/search/", async with session.post(url, data=data, headers=headers) as resp:
data={"term": waifu2, # Store waifu's in dict when request is successful, else send an error
'content-type': "application/json"},
headers={'apikey': my_waifu_list_auth}) as resp:
# Store waifu(s) in a dict
if resp.status == 200: if resp.status == 200:
waifu_dict = await resp.json() waifu_dict = await resp.json()
# Send error if something went wrong internally/while grabbing data from API # Send error if something went wrong internally/while grabbing data from API
else: else:
await ctx.send("Something went wrong!") await ctx.send("Something went wrong!")
@ -316,6 +318,8 @@ class Anime(Cog):
if resp.status == 200: if resp.status == 200:
waifu_dict = await resp.json() waifu_dict = await resp.json()
waifu = waifu_dict["data"] waifu = waifu_dict["data"]
# Send error if something went wrong internally/while grabbing data from API
else: else:
await ctx.send("Something went wrong!") await ctx.send("Something went wrong!")

Loading…
Cancel
Save