pep.py/objects/glob.py

51 lines
1.0 KiB
Python
Raw Normal View History

2016-04-19 17:40:59 +00:00
"""Global objects and variables"""
2016-10-02 20:48:14 +00:00
import time
from common.ddog import datadogClient
from common.files import fileBuffer, fileLocks
2016-05-18 17:12:46 +00:00
from objects import channelList
from objects import matchList
from objects import streamList
2016-10-02 20:48:14 +00:00
from objects import tokenList
from common.web import schiavo
2016-04-19 17:40:59 +00:00
2016-06-17 11:11:12 +00:00
try:
with open("version") as f:
VERSION = f.read().strip()
if VERSION == "":
raise Exception
2016-06-17 11:11:12 +00:00
except:
2016-11-17 19:10:32 +00:00
VERSION = "Unknown"
2016-04-19 17:40:59 +00:00
2016-10-02 20:48:14 +00:00
DATADOG_PREFIX = "peppy"
application = None
2016-04-19 17:40:59 +00:00
db = None
redis = None
2016-04-19 17:40:59 +00:00
conf = None
banchoConf = None
tokens = tokenList.tokenList()
channels = channelList.channelList()
matches = matchList.matchList()
2016-06-06 10:39:24 +00:00
fLocks = fileLocks.fileLocks()
2016-09-04 10:01:10 +00:00
fileBuffers = fileBuffer.buffersList()
2016-10-02 20:48:14 +00:00
schiavo = schiavo.schiavo()
dog = datadogClient.datadogClient()
verifiedCache = {}
2016-08-10 10:00:33 +00:00
chatFilters = None
pool = None
ircServer = None
busyThreads = 0
debug = False
outputRequestTime = False
outputPackets = False
gzip = False
localize = False
2016-06-15 17:01:00 +00:00
sentry = False
2016-09-04 08:56:10 +00:00
irc = False
restarting = False
startTime = int(time.time())
streams = streamList.streamList()