|
|
@ -48,7 +48,7 @@ def store_in_dict(_dict, api):
|
|
|
|
"""Store the waifu data in dicts"""
|
|
|
|
"""Store the waifu data in dicts"""
|
|
|
|
|
|
|
|
|
|
|
|
# Store all the shows with the name as the key
|
|
|
|
# Store all the shows with the name as the key
|
|
|
|
for item in api["data"]:
|
|
|
|
for item in api:
|
|
|
|
_dict[item["name"]] = {}
|
|
|
|
_dict[item["name"]] = {}
|
|
|
|
for value in item:
|
|
|
|
for value in item:
|
|
|
|
store_dict(_dict, item, value)
|
|
|
|
store_dict(_dict, item, value)
|
|
|
@ -175,6 +175,9 @@ def user_embed(self, user):
|
|
|
|
|
|
|
|
|
|
|
|
return embed
|
|
|
|
return embed
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def true_love_embed():
|
|
|
|
|
|
|
|
"""Generate embed for profile with true love information"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MWLMenu(menus.Menu):
|
|
|
|
class MWLMenu(menus.Menu):
|
|
|
|
"""Setup menus for MyWaifuList results"""
|
|
|
|
"""Setup menus for MyWaifuList results"""
|
|
|
|