-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHatBot.py
50 lines (39 loc) · 1.24 KB
/
HatBot.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import logging
from pathlib import Path
from typing import Any
import discord
import tomllib
from discord.ext import commands
from snapcogs.bot import Bot
from snapcogs.utils.logging import get_logger
LOGGER = logging.getLogger()
LOGGER.setLevel(logging.INFO)
if LOGGER.level == logging.DEBUG:
get_logger("sqlalchemy.engine").setLevel(logging.DEBUG)
def load_config(file_path: Path | str) -> dict[str, Any]:
with open(file_path, "rb") as f:
return tomllib.load(f)
def main() -> None:
config = load_config("config.toml")
intents = discord.Intents.default()
intents.members = True
allowed_mentions = discord.AllowedMentions(replied_user=False)
startup_extensions = [
"cogs.Avatar",
"cogs.Presence",
"snapcogs.Admin",
"snapcogs.Announcements",
"snapcogs.Fun",
"snapcogs.Information",
]
bot = Bot(
description="Hatventures Community's helpful bot.",
command_prefix=commands.when_mentioned_or("!"),
intents=intents,
allowed_mentions=allowed_mentions,
db_name="db/HatBot.db",
startup_extensions=startup_extensions,
)
bot.run(config["hatbot_token"], log_level=logging.WARNING)
if __name__ == "__main__":
main()