-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py
More file actions
38 lines (28 loc) · 767 Bytes
/
Copy pathconfig.py
File metadata and controls
38 lines (28 loc) · 767 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
30
31
32
33
34
35
36
37
38
###################################
# Change the four variables below #
###################################
# The name of the bot
USER = 'BOT USERNAME'
# The bots Oauth token
PASS = 'OAUTH TOKEN'
# The channel to moderate
CHAN = 'CHANNEL NAME'
# Bot command prefix
PREFIX = '$'
###################################################
# The variables below do not *need* to be changed #
###################################################
# The IRC Server URL
URL = 'irc.twitch.tv'
# Port for the IRC Server
PORT = 6667
# Logging Level Options:
# CRITICAL
# ERROR
# INFO
# DEBUG
LOGLEVEL = "INFO"
# File which holds the bot logs
LOGFILE ='TwitchBotLogs.log'
# Tuple holding bot info (just a shortcut)
DATA = LOGFILE, LOGLEVEL, URL, PORT, USER, PASS, CHAN, PREFIX