JishoBot/cogs/kanji.py

19 lines
518 B
Python
Raw Normal View History

2020-08-11 13:52:13 +00:00
import discord
from discord.ext import commands
2020-08-11 14:56:19 +00:00
from utils import jisho
2020-08-11 13:52:13 +00:00
class Kanji(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.command(name="kanji", description="Performs a Kanji search", usage="<kanji>", aliases=["k"])
@commands.cooldown(1, 5)
2020-08-11 14:56:19 +00:00
async def kanji(self, ctx, *, kanji: str = None):
if kanji is None:
return
response = jisho.JishoKanji(kanji)
await ctx.send(response.entries)
2020-08-11 13:52:13 +00:00
def setup(bot):
bot.add_cog(Kanji(bot))