Added search command
This commit is contained in:
parent
790fb4f813
commit
96f7a2e9c4
9
bot.py
9
bot.py
|
@ -1,7 +1,16 @@
|
|||
import discord
|
||||
from discord.ext import commands
|
||||
from utils import config
|
||||
import os
|
||||
|
||||
bot = commands.Bot(config.get("prefix"))
|
||||
|
||||
@bot.event
|
||||
async def on_ready():
|
||||
print("Loading cogs...", end=" ", flush=True)
|
||||
for file in os.listdir("./cogs"):
|
||||
if file.endswith(".py"):
|
||||
bot.load_extension(f"cogs.{file[:-3]}")
|
||||
print("Done!")
|
||||
|
||||
bot.run(config.get("token"))
|
18
cogs/search.py
Normal file
18
cogs/search.py
Normal file
|
@ -0,0 +1,18 @@
|
|||
import discord
|
||||
from discord.ext import commands
|
||||
|
||||
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
|
||||
|
||||
await ctx.send(query)
|
||||
|
||||
|
||||
def setup(bot: commands.Bot):
|
||||
bot.add_cog(Search(bot))
|
Loading…
Reference in a new issue