A lightweight Python library providing property decorators for classmethods and staticmethods. Version 0.2.0 is the latest release. The project is minimally maintained.
pip install classpropertiesVerified import paths — ran on the pinned version, not inferred.
Basic usage of classproperty decorator.
Ensure the decorated function is a classmethod-like method with 'cls' parameter inside a class.
Always apply @classproperty explicitly in subclasses that need a different value.
Make sure the method signature is like: def method(cls): and that @classproperty is applied inside a class body.
Ensure Python 3. Use only on methods defined inside a class.
No dependency data recorded yet.