openmedialibrary/oml/state.py

23 lines
348 B
Python
Raw Normal View History

2015-11-30 23:26:35 +00:00
bandwidth = None
host = None
2014-05-04 17:26:43 +00:00
main = None
nodes = False
2016-01-12 15:00:51 +00:00
node = False
2014-05-04 17:26:43 +00:00
online = False
tasks = False
2016-01-05 16:16:50 +00:00
scraping = False
downloads = False
tor = False
2016-01-12 15:00:51 +00:00
update = False
websockets = []
2014-05-04 17:26:43 +00:00
2014-05-17 00:14:15 +00:00
activity = {}
2014-05-04 17:26:43 +00:00
def user():
import settings
import user.models
return user.models.User.get_or_create(settings.USER_ID)
2014-08-09 16:14:14 +00:00
from threading import local
db = local()