what's cogs in discord py code example
Example 1: how to load a all cogs automatically discord.py
import os
from discord.ext import commands
bot = commands.Bot(command_prefix='.')
bot.load_extension('cogs.test')
for filename in os.listdir('./cogs'):
if filename.endswith('.py'):
bot.load_extension(f'cogs.{filename[:-3]}')
else:
print(f'Unable to load {filename[:-3]}')
bot.run(token)
Example 2: get cogs discord.py
ListOfCogs = client.cogs
print(len(ListOfCogs))
for NameOfCog,TheClassOfCog in ListOfCogs.items():
print(NameOfCog)