-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.py
More file actions
42 lines (27 loc) · 837 Bytes
/
config.py
File metadata and controls
42 lines (27 loc) · 837 Bytes
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
import motor.motor_asyncio
from os import getenv
from dotenv import load_dotenv
class Config:
load_dotenv()
# The Bot's token:
TOKEN = getenv('TOKEN')
# The Bot's application id:
APP_ID = 1166314394905493564
# The bot's prefix for prefix commands:
PREFIX = "!"
AI_PREFIX = "cosmo" #default
CASE_SENSITIVE = False #default
# The bot's name, used to identify itself in case the name changes:
NAME = "CosmoBot"
# The bot's current version:
VERSION = "0.1"
# The bot's developers:
DEVELOPERS = "EpicSprout\nFire"
# The bot's developer's IDs:
DEVELOPER_IDS = [492377608517058580, 761614035908034570]
# The bot's owner's ID:
OWNER_ID = 492377608517058580
# The MystBin API key
MYSTBIN_API_KEY = ""
# The database instance:
DB = ""