reset bot token, testing stuff ...

This commit is contained in:
Uwe Pfeifer 2022-05-26 16:26:08 +02:00
parent 6f7e7ce7b0
commit 2eb74ad89a

View file

@ -1,5 +1,6 @@
# pybot-f by freakyy85 (freaky@freakyonline.de)
import os
import configparser
import discord
from discord.ext import commands
@ -15,7 +16,6 @@ config = configparser.ConfigParser()
config.read('bot.ini')
bottoken = config['General']['bottoken']
bot = commands.Bot(command_prefix='?', description=description, intents=intents)
@ -37,5 +37,15 @@ 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)}')
bot.load_extension("ext/test.py")
bot.run(bottoken)
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}')
bot.load_extension('ext/test.py')
bot.run(bottoken)