# 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