-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
29 lines (22 loc) · 791 Bytes
/
Copy pathconfig.py
File metadata and controls
29 lines (22 loc) · 791 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
# https://developer.spotify.com/dashboard/applications
CLIENT_ID = ""
CLIENT_SECRET = ""
REDIRECT_URI = ""
USER_NAME = ""
# https://my.telegram.org/
API_ID = None
API_HASH = ""
# @BotFather
BOT_TOKEN = ""
# If you want to save the music previously uploaded to the channel to the database, keep it True, otherwise it will remain False.
USER_BOT = False
# If you changed the USER_BOT value to True, fill in this value by running the "python stringsession.py" command
STRING_SESSION = ""
# Get this value using the @username_to_id_bot bot. Ex: -1001234567890
CHAT_ID = None
# Set to True to enable file logging, False to disable
LOG_TO_FILE = True
# Specify the log file path if LOG_TO_FILE is True
LOG_FILE_PATH = "bot.log"
# Bot Workers Count : Default = cpu_count + 4
WORKERS = None