initial bot setup

This commit is contained in:
ishaan 2021-05-18 18:17:31 -04:00
parent 3f8135b81e
commit 91cb11d20e
5 changed files with 45 additions and 1 deletions

0
Procfile Normal file
View file

View file

@ -1 +1,4 @@
# duckster
# Duckster
A fun and all-purpose bot made in Python.
Founded by @iakrules and @rzmk

20
bot.py Normal file
View file

@ -0,0 +1,20 @@
import os
import discord
from discord.ext import commands
TOKEN = os.environ.get("TOKEN")
client = commands.Bot(command_prefix= 'd!')
@client.command()
async def load(ctx, extension):
client.load_extension(f'cogs.{extension}')
@client.command()
async def unload(ctx, extension):
client.unload_extension(f'cogs.{extension}')
for filename in os.listdir('./cogs'):
if filename.endswith('.py'):
client.load_extension(f'cogs.{filename[:-3]}')
client.run(TOKEN)

20
cogs/exampleCog.py Normal file
View file

@ -0,0 +1,20 @@
import discord
from discord.ext import commands
class ExampleCog(commands.Cog):
def __init__(self, client):
self.client = client
# Events
@commands.Cog.listener()
async def on_ready(self):
print('Bot is online.')
# Commands
@commands.command()
async def ping(self, ctx):
await ctx.send('Pong!')
def setup(client):
client.add_cog(ExampleCog(client))

1
requirements.txt Normal file
View file

@ -0,0 +1 @@
discord.py==1.7.2