-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathconfig.py
29 lines (28 loc) · 1.05 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
import os
HEADERS = {
"User-Agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/16.1 Safari/605.1.15",
"Accept": "text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8",
}
TOKEN = os.getenv("BOT_TOKEN")
WEBHOOK_URL = os.getenv("WEBHOOK_URL")
REDIS_URL = os.getenv("REDIS_URL")
WORKER_URL = os.getenv("WORKER_URL")
WORKER_HEADERS = {"X-API-Key": os.getenv("WORKER_API_KEY")}
BLOCKED_USERS = list(map(int, os.getenv("BLOCKED_USERS", "0").split(",")))
YT_VIDEOS = [
"https://youtu.be/w0F6DYxbegs",
"https://youtu.be/bDw8fNPWqfk",
"https://youtu.be/4jhxmmpzOZQ",
"https://youtu.be/sgJKesUkhdM",
"https://youtu.be/WQn-VSexZU8",
"https://youtu.be/ffnFd24EHqo",
"https://youtu.be/XuUZrGTq1ds",
"https://youtu.be/dU3tOo8xC7w",
"https://youtu.be/ZgrGmT0BuhA",
"https://youtu.be/-okZgVNU8iI",
"https://youtu.be/fr7U9LyFtWw",
"https://youtu.be/wdYPY7jJ6EM",
"https://youtu.be/pPrlR18qIbE",
"https://youtu.be/LmszbCycAPQ",
"https://youtu.be/Z35HAdvOuJU",
]