Class cached_property

Decorator that converts a method with a single self argument into a property cached on the instance.

Declaration

class cached_property
source link

Documentation

A cached property can be made out of an existing method:
(e.g. ``url = cached_property(get_absolute_url)``).
The optional ``name`` argument is obsolete as of Python 3.6 and will be
deprecated in Django 4.0 (#30127).

Methods

Class methods

Reexports