python3-memoized-property

decorator to avoid redundant computation
  https://github.com/estebistec/python-memoized-property
  0
  no reviews



This package allows one to tag methods that have may have their result buffered to save redundant computation, as in: @memoized_property def name(self): return some_expensive_load()