JishoBot/cogs/search.py

26 lines
794 B
Python
Raw Normal View History

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 09:21:09 +00:00
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
2020-08-11 09:09:11 +00:00
def setup(bot: commands.Bot):
bot.add_cog(Search(bot))