A lightweight Python decorator for creating cached properties that compute their value only once per instance. Version 1.0.3, last updated in 2015. No active maintenance.
pip install memoized-propertyNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Basic usage of @memoized_property to cache a property.
Use @property combined with functools.lru_cache for more flexibility.
Replace import and decorator with cached_property from functools.
Run 'pip install memoized-property'.
Ensure decorator is used on a method that returns a value (like a property).
No dependency data recorded yet.