# God I fucking love python and the shit workarounds it requires for something as simple as a constant variable def constant(f): def fset(self, value): raise TypeError def fget(self): return f() return property(fget, fset) class _Const(object): @constant def STEAMAPI_MAXREQ() -> int: return 100000 @constant def DAY_IN_NANO() -> int: return (8.64 * (10 ** 13)) @constant def JSON_INDENT() -> int: return 4