Skip to content

Instantly share code, notes, and snippets.

View Kodehawa's full-sized avatar
❤️
You cutie

Kodehawa Kodehawa

❤️
You cutie
  • Chile
  • 11:07 (UTC -04:00)
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"]