-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmain.py
32 lines (24 loc) · 1.07 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import pathlib
import discord
from discord.ext import commands
from config import CONFIG, PREFIX
# Инициализируем бота вместе с намерениями
intents = discord.Intents.default()
intents.message_content = True
BOT = commands.Bot(command_prefix=PREFIX, intents=intents)
@BOT.event
async def on_ready():
''' Производит инициализацию '''
print(f'Logged in as {BOT.user}')
# Получаем список модулей соответствующей директории ./lib/commands и загружаем их
modules = pathlib.Path(__file__).parent / "modules"
for module in modules.iterdir():
try:
if pathlib.Path(module / "cog.py").exists():
print(f"Loading module {module.name}")
await BOT.load_extension(f"modules.{module.name}.cog")
except Exception as e:
exc = "{}: {}".format(type(e).__name__, e)
print("Failed to load module {}\n{}".format(module, exc))
# Запускаем бота
BOT.run(str(CONFIG['Bot']['TOKEN']))