forked from doozylab-lk/video-stream
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
27 lines (25 loc) · 1.08 KB
/
config.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
import os
from os import getenv
from dotenv import load_dotenv
if os.path.exists("local.env"):
load_dotenv("local.env")
load_dotenv()
admins = {}
SESSION_NAME = getenv("SESSION_NAME", "session")
BOT_TOKEN = getenv("BOT_TOKEN")
BOT_NAME = getenv("BOT_NAME", "")
API_ID = int(getenv("API_ID"))
API_HASH = getenv("API_HASH")
OWNER_NAME = getenv("OWNER_NAME", "doozylab_lk")
ALIVE_NAME = getenv("ALIVE_NAME", "")
BOT_USERNAME = getenv("BOT_USERNAME", "")
ASSISTANT_NAME = getenv("ASSISTANT_NAME", "")
GROUP_SUPPORT = getenv("GROUP_SUPPORT", "TeamDLKsupport")
UPDATES_CHANNEL = getenv("UPDATES_CHANNEL", "TeamDLK")
SUDO_USERS = list(map(int, getenv("SUDO_USERS").split()))
COMMAND_PREFIXES = list(getenv("COMMAND_PREFIXES", "/ ! .").split())
ALIVE_IMG = getenv("ALIVE_IMG", "https://telegra.ph/file/a381b439e2bf6c61703f9.png")
DURATION_LIMIT = int(getenv("DURATION_LIMIT", ""))
IMG_1 = getenv("IMG_1", "https://telegra.ph/file/a381b439e2bf6c61703f9.png")
IMG_2 = getenv("IMG_2", "https://telegra.ph/file/a381b439e2bf6c61703f9.png")
IMG_3 = getenv("IMG_3", "https://telegra.ph/file/a381b439e2bf6c61703f9.png")