Skip to content

Instantly share code, notes, and snippets.

View sakshatshinde's full-sized avatar
🍧
Eating icecream

Sakshat sakshatshinde

🍧
Eating icecream
View GitHub Profile
@leovoel
leovoel / basic_bot.py
Last active January 25, 2024 04:19
discord.py's basic_bot.py converted to use "cogs".
from discord.ext import commands
description = '''An example bot to showcase the discord.ext.commands extension
module.
There are a number of utility commands being showcased here.'''
# this specifies what extensions to load when the bot starts up
startup_extensions = ["members", "rng"]