lazy_property#
- lazy_property(property_function: Callable[[...], T]) property [source]#
Alternative for functools.lazy_property.
functools.lazy_property is only available since python 3.8. Should be replaced with functools.lazy_property once no version below python 3.8 is supported.
- Parameters:
property_function (Callable) – property function
- Return type:
property
- Returns
Return value of the property function