Skip to main content

A cached-property for decorating methods in classes.

Project description

https://badge.fury.io/py/cached-property.png https://travis-ci.org/pydanny/cached-property.png?branch=master https://pypip.in/d/cached-property/badge.png

A cached-property for decorating methods in classes.

Why?

  • Makes caching of time or computational expensive properties quick and easy.

  • Because I got tired of copy/pasting this code from non-web project to non-web project.

  • I needed something really simple that worked in Python 2 and 3.

How to use it

Let’s define a class with an expensive property. Every time you stay there the price goes up by $50!

class Monopoly(object):

    def __init__(self):
        self.boardwalk_price = 500

    @property
    def boardwalk(self):
        # In reality, this might represent a database call or time
        # intensive task like calling a third-party API.
        self.boardwalk_price += 50
        return self.boardwalk_price

Now run it:

>>> monopoly = Monopoly()
>>> monopoly.boardwalk
550
>>> monopoly.boardwalk
600

Let’s convert the boardwalk property into a cached_property.

from cached_property import cached_property

class Monopoly(object):

    def __init__(self):
        self.boardwalk_price = 500

    @cached_property
    def boardwalk(self):
        # Again, this is a silly example. Don't worry about it, this is
        #   just an example for clarity.
        self.boardwalk_price += 50
        return self.boardwalk_price

Now when we run it the price stays at $550.

>>> monopoly = Monopoly()
>>> monopoly.boardwalk
550
>>> monopoly.boardwalk
550
>>> monopoly.boardwalk
550

Why doesn’t the value of monopoly.boardwalk change? Because it’s a cached property!

Invalidating the Cache

Results of cached functions can be invalidated by outside forces. Let’s demonstrate how to force the cache to invalidate:

>>> monopoly = Monopoly()
>>> monopoly.boardwalk
550
>>> monopoly.boardwalk
550
>>> # invalidate the cache
>>> del m.boardwalk
>>> # request the boardwalk property again
>>> m.boardwalk
600
>>> m.boardwalk
600

Credits

  • Pip, Django, Werkzueg, Bottle, Pyramid, and Zope for having their own implementations. This package uses an implementation that matches the Bottle version.

  • Reinout Van Rees for pointing out the cached_property decorator to me.

  • My awesome wife @audreyr who created cookiecutter, which meant rolling this out took me just 15 minutes.

History

0.1.4 (2014-05-18)

  • Fix the dang-blarged py_modules argument.

0.1.3 (2014-05-17)

  • Removed import of package into setup.py

0.1.2 (2014-05-17)

  • Documentation fixes. Not opening up a RTFD instance for this because it’s so simple to use.

0.1.1 (2014-05-17)

  • setup.py fix. Whoops!

0.1.0 (2014-05-17)

  • First release on PyPI.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cached-property-0.1.4.tar.gz (5.7 kB view details)

Uploaded Source

Built Distribution

cached_property-0.1.4-py2.py3-none-any.whl (4.8 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file cached-property-0.1.4.tar.gz.

File metadata

File hashes

Hashes for cached-property-0.1.4.tar.gz
Algorithm Hash digest
SHA256 cd7b4fec362bb7171349dbe4170c9f0d9a563e76a6546c9df51ea1c2fa6b5fc2
MD5 e1be06b0624598de4071dbc3c3c71458
BLAKE2b-256 974bf27bffa71990e5a16007ac471e785d88f4339c31fc08ce503de7e49106aa

See more details on using hashes here.

File details

Details for the file cached_property-0.1.4-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for cached_property-0.1.4-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 ffd9c32587f9238ec0d5a360961fea41a3f2b4b0ac77edec1982ad001311a65e
MD5 8bf81e6a1ff8053b40b90d3be29faad9
BLAKE2b-256 1c0b9837375a4e5f0ae234bb61c32260486355b3618c505dd4b83af313bfde24

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page