JishoBot/cogs/search.py
2020-08-11 12:09:59 +02:00

27 lines
819 B
Python

import discord
from discord.ext import commands
from utils import jisho
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
response = jisho.JishoResponse(query)
await ctx.send(response.nodes[0].slug)
@search.error
async def search_error(self, ctx, error):
if isinstance(error, commands.CommandOnCooldown):
return # Suppress that annoying exception everytime someone is on cooldown
raise error
def setup(bot: commands.Bot):
bot.add_cog(Search(bot))