OnlineJudge/utils/constants.py

29 lines
586 B
Python
Raw Normal View History

2017-10-01 21:16:14 +00:00
class Choices:
@classmethod
def choices(cls):
d = cls.__dict__
return [d[item] for item in d.keys() if not item.startswith("__")]
class ContestType:
PUBLIC_CONTEST = "Public"
PASSWORD_PROTECTED_CONTEST = "Password Protected"
class ContestStatus:
CONTEST_NOT_START = "1"
CONTEST_ENDED = "-1"
CONTEST_UNDERWAY = "0"
class ContestRuleType(Choices):
ACM = "ACM"
OI = "OI"
2017-08-15 12:32:14 +00:00
class CacheKey:
waiting_queue = "waiting_queue"
2017-10-16 01:45:29 +00:00
contest_rank_cache = "contest_rank_cache"
website_config = "website_config"
2017-10-01 19:54:34 +00:00
option = "option"