class staticproperty(staticmethod): def __get__(self, *args): return self.__func__() # use instead of @property decorator in your class