From 7c0e643ecc6dfd5f5b08e74e05d3ba595b150169 Mon Sep 17 00:00:00 2001 From: Robert Date: Tue, 11 Aug 2020 11:21:09 +0200 Subject: [PATCH] Added jisho api interface --- cogs/search.py | 10 +++++++++- utils/jisho.py | 14 ++++++++++++++ 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 utils/jisho.py diff --git a/cogs/search.py b/cogs/search.py index 1815c87..58dc437 100644 --- a/cogs/search.py +++ b/cogs/search.py @@ -1,5 +1,6 @@ import discord from discord.ext import commands +from utils import jisho class Search(commands.Cog): def __init__(self, bot: commands.Bot): @@ -11,7 +12,14 @@ class Search(commands.Cog): if query == None: return - await ctx.send(query) + response = jisho.query(query) + await ctx.send(response["data"][0]["slug"]) + + @search.error + async def search_error(self, ctx, error): + if isinstance(error, commands.CommandOnCooldown): + pass # Suppress that annoying exception everytime someone is on cooldown + def setup(bot: commands.Bot): diff --git a/utils/jisho.py b/utils/jisho.py new file mode 100644 index 0000000..25e6571 --- /dev/null +++ b/utils/jisho.py @@ -0,0 +1,14 @@ +import requests +import urllib.parse +import json + +TEMPLATE_URL = "https://jisho.org/api/v1/search/words?keyword={0}" + +def query(query: str): + url = TEMPLATE_URL.format(urllib.parse.quote_plus(query)) + r = requests.get(url) + + if r.status_code != 200: + print(f"ERROR: Failed to access Jisho API... {r.status_code}") + + return json.loads(r.text) \ No newline at end of file