From 66e8cc9250b1496f1be878300d7c31eb92198ea7 Mon Sep 17 00:00:00 2001 From: Robert Date: Tue, 11 Aug 2020 15:52:13 +0200 Subject: [PATCH] Added Kanji cog --- cogs/kanji.py | 14 ++++++++++++++ utils/jisho.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 cogs/kanji.py diff --git a/cogs/kanji.py b/cogs/kanji.py new file mode 100644 index 0000000..72ce067 --- /dev/null +++ b/cogs/kanji.py @@ -0,0 +1,14 @@ +import discord +from discord.ext import commands + +class Kanji(commands.Cog): + def __init__(self, bot): + self.bot = bot + + @commands.command(name="kanji", description="Performs a Kanji search", usage="", aliases=["k"]) + @commands.cooldown(1, 5) + async def kanji(self, ctx, *, kanji): + return kanji + +def setup(bot): + bot.add_cog(Kanji(bot)) \ No newline at end of file diff --git a/utils/jisho.py b/utils/jisho.py index 801d6be..6e9e161 100644 --- a/utils/jisho.py +++ b/utils/jisho.py @@ -63,7 +63,7 @@ class JishoResponse(): def query(self): url = TEMPLATE_URL.format(urllib.parse.quote_plus(self.query_string)) - r = requests.get(url) + r = requests.get(url, headers=HEADER) if r.status_code != 200: print(f"ERROR: Failed to access Jisho API... {r.status_code}")