-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathconfig.py
56 lines (48 loc) · 1.78 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from os import getenv
from dotenv import load_dotenv
load_dotenv()
API_ID = int(getenv("API_ID", "12227067"))
API_HASH = getenv("API_HASH", "b463bedd791aa733ae2297e6520302fe")
BOT_TOKEN = getenv("BOT_TOKEN", None)
OWNER_ID = int(getenv("OWNER_ID", "6204761408"))
MONGO_URL = getenv("MONGO_URL", None)
SUPPORT_GRP = getenv("SUPPORT_GRP", "samuelsfriends")
UPDATE_CHNL = getenv("UPDATE_CHNL", "AbhiModszYT_Return")
OWNER_USERNAME = getenv("OWNER_USERNAME", "AM_YTBott")
# Random Start Images
IMG = [
"https://telegra.ph/file/00eb565274ccbffcf149d.jpg",
"https://telegra.ph/file/396e2af77c4664164de18.jpg",
"https://telegra.ph/file/6f92a0e943d68a15169c0.jpg",
"https://telegra.ph/file/d49fbf4c00f839641afe3.jpg",
"https://telegra.ph/file/cdcdceb3d4fc34675b815.jpg",
"https://telegra.ph/file/cc6259af790c13f98c38c.jpg",
"https://telegra.ph/file/ffa18225730df716d3532.jpg",
"https://telegra.ph/file/dc051f4160954159675a2.jpg",
"https://telegra.ph/file/e0e0a3f2addbf58b943e8.jpg",
"https://telegra.ph/file/2e6d9db59c537c4521440.jpg",
"https://telegra.ph/file/f1951920bbd57921d8820.jpg",
"https://telegra.ph/file/ece475f9a419442c18f1d.jpg",
"https://telegra.ph/file/99a0014129f08eb1a44dc.jpg",
"https://telegra.ph/file/ac8e3751509cf4e1b4756.jpg",
"https://telegra.ph/file/e07ef19b1f9bbde9909ad.jpg",
"https://telegra.ph/file/d3ee41261ed7779f30a89.jpg",
]
# Random Stickers
STICKER = [
"CAACAgEAAxkBAAIJomRdLhVJVebkx0JRsp1STwTv3t3eAAJrAgAClpxhRD4z4bgqlIF0LwQ",
"CAACAgUAAxkBAAIJo2RdLhjLjCpmPipMT8ksrqwUjGAIAAK1BQACLZ8oVFVNmhalU8eOLwQ",
"CAACAgUAAxkBAAIJpGRdLkpU7t2WDj9zUFgCJ5uHUdGHAALTBAAC59CYV3t9x-f0tt4OLwQ",
]
EMOJIOS = [
"🎲",
"🔥",
"⚡️",
"⛈",
"🌩",
"🌦",
"☀️",
"💫",
"🐳",
"🦑",
]