-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobals.py
38 lines (30 loc) · 1.07 KB
/
globals.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
# Login info
OAUTH_TOKEN = ""
USERNAME = ""
CLIENT_ID = ""
TWITCH_API_HEADERS = {"Authorization": "Bearer {}".format(OAUTH_TOKEN), "Client-ID": "{}".format(CLIENT_ID)}
TWITCH_API_WHISPER_HEADERS = {"Authorization": "Bearer {}".format(OAUTH_TOKEN), "Client-ID": "{}".format(CLIENT_ID), "Content-Type": "application/json"}
TWITCH_BOT_UID = 0 # Required for whispers functionality.
# API key info for various apps
WOLFRAM_APP_ID = ""
OCR_SPACE_APIKEY = ""
OPENAI_APIKEY = ""
GOOGLE_GEMINI_APIKEY = ""
# Genshin command specific values
GENSHIN_MYSQL_DB_HOST = ""
GENSHIN_MYSQL_DB_USERNAME = ""
GENSHIN_MYSQL_DB_PASSWORD = ""
GENSHIN_DB_POOL_SIZE = 25
# Command prefix
COMMAND_PREFIX = "_"
# Do not change these!
TWITCH_DELIMITER = "\r\n"
HOST = "irc.chat.twitch.tv"
PORT = 6667
# Add the channels that you want to join here! (make sure the names are all in lower case)
channels = []
# Debug channel will be the place where the bot reports once it's online.
debug_channel = ""
channels.append(debug_channel)
# Authorized user that will have more control over some commands.
AUTHORIZED_USER = ""