2020-08-11 09:09:11 +00:00
|
|
|
import discord
|
|
|
|
from discord.ext import commands
|
2020-08-11 09:21:09 +00:00
|
|
|
from utils import jisho
|
2020-08-11 09:09:11 +00:00
|
|
|
|
|
|
|
class Search(commands.Cog):
|
|
|
|
def __init__(self, bot: commands.Bot):
|
|
|
|
self.bot = bot
|
|
|
|
|
|
|
|
@commands.command(name="search", description="Searches Jisho", usage="<query>", aliases=["s"])
|
|
|
|
@commands.cooldown(1, 5)
|
|
|
|
async def search(self, ctx: commands.Context, *, query: str = None):
|
|
|
|
if query == None:
|
|
|
|
return
|
|
|
|
|
2020-08-11 10:09:59 +00:00
|
|
|
response = jisho.JishoResponse(query)
|
|
|
|
await ctx.send(response.nodes[0].slug)
|
2020-08-11 09:21:09 +00:00
|
|
|
|
|
|
|
@search.error
|
|
|
|
async def search_error(self, ctx, error):
|
|
|
|
if isinstance(error, commands.CommandOnCooldown):
|
2020-08-11 10:09:59 +00:00
|
|
|
return # Suppress that annoying exception everytime someone is on cooldown
|
2020-08-11 09:21:09 +00:00
|
|
|
|
2020-08-11 10:09:59 +00:00
|
|
|
raise error
|
2020-08-11 09:09:11 +00:00
|
|
|
|
|
|
|
|
|
|
|
def setup(bot: commands.Bot):
|
|
|
|
bot.add_cog(Search(bot))
|