working bot but commands dont get registered on the guilds yet.

This commit is contained in:
Uwe Pfeifer 2022-05-26 17:10:20 +02:00
parent 2eb74ad89a
commit 4c15168fde

View file

@ -3,6 +3,7 @@
import os
import configparser
import discord
import asyncio
from discord.ext import commands
description = '''Testing this bot stuff :)'''
@ -37,15 +38,20 @@ async def joined(ctx, member: discord.Member):
"""Says when a member joined."""
await ctx.send(f'{member.name} joined {discord.utils.format_dt(member.joined_at)}')
with os.scandir('./ext/') as dirs:
for entry in dirs:
if entry.name.endswith('.py'):
try:
print(entry.name)
await bot.load_extension('ext.' + entry.name)
except Exception as error:
print(f'Error loading {entry.name}: {error}')
async def scanext():
with os.scandir('./ext/') as dirs:
for entry in dirs:
if entry.name.endswith('.py'):
try:
print(f"Loading extension: {entry.name}")
await bot.load_extension('ext.' + os.path.splitext(entry.name)[0])
except Exception as error:
print(f'Error loading {entry.name}: {error}')
bot.load_extension('ext/test.py')
bot.run(bottoken)
async def main():
async with bot:
await scanext()
await bot.start(bottoken)
asyncio.run(main())