forked from TheHamkerCat/Telegram_VC_Bot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample_config.py
More file actions
26 lines (23 loc) · 881 Bytes
/
sample_config.py
File metadata and controls
26 lines (23 loc) · 881 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
HEROKU = True # NOTE Make it false if you're not deploying on heroku.
# NOTE these values are for heroku.
if HEROKU:
from os import environ
API_ID = int(environ["API_ID"])
API_HASH = environ["API_HASH"]
SUDO_CHAT_ID = int(
environ["SUDO_CHAT_ID"]
) # Chat where the bot will play the music.
SUDOERS = list(
int(x) for x in environ.get("SUDOERS", "").split()
) # Users which have special control over the bot.
SESSION_STRING = environ["SESSION_STRING"] # Check Readme for session
ARQ_API_KEY = environ["ARQ_API_KEY"]
# NOTE Fill this if you are not deploying on heroku.
if not HEROKU:
API_ID = 14371
API_HASH = "e46b6c854d2bf58a0"
SUDO_CHAT_ID = -1001485876964
SUDOERS = [1243703097, 13216546]
ARQ_API_KEY = "Get this from @ARQRobot"
# don't make changes below this line
ARQ_API = "https://thearq.tech"