property-cached


Nameproperty-cached JSON
Version 1.6.4 PyPI version JSON
download
home_pagehttps://github.com/althonos/property-cached/
SummaryA decorator for caching properties in classes (forked from cached-property).
upload_time2020-03-06 15:39:31
maintainerMartin Larralde
docs_urlNone
authorDaniel Greenfeld
requires_python>= 3.5
licenseBSD
keywords cached-property cache property
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI
coveralls test coverage No coveralls.
            ===============================
property-cached
===============================

.. image:: https://img.shields.io/travis/althonos/property-cached/master.svg?style=flat-square
   :target: https://travis-ci.org/althonos/property-cached

.. image:: https://img.shields.io/codecov/c/gh/althonos/property-cached.svg?style=flat-square
   :target: https://codecov.io/gh/althonos/property-cached

.. image:: https://img.shields.io/pypi/v/property-cached.svg?style=flat-square
   :target: https://pypi.python.org/pypi/property-cached

.. image:: https://img.shields.io/badge/code%20style-black-000000.svg?style=flat-square
   :target: https://github.com/ambv/black


A decorator for caching properties in classes (forked from ``cached-property``).

This library was forked from the upstream library ``cached-property`` since its
developer does not seem to be maintaining it anymore. It works as a drop-in
replacement with fully compatible API (import ``property_cached`` instead of
``cached_property`` in your code and *voilĂ *). In case development resumes on
the original library, this one is likely to be deprecated.

*Slightly modified README included below:*

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.

How to use it
--------------

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

.. code-block:: python

    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:

.. code-block:: python

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

Let's convert the boardwalk property into a ``cached_property``.

.. code-block:: python

    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.

.. code-block:: python

    >>> 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:

.. code-block:: python

    >>> monopoly = Monopoly()
    >>> monopoly.boardwalk
    550
    >>> monopoly.boardwalk
    550
    >>> # invalidate the cache
    >>> del monopoly.__dict__['boardwalk']
    >>> # request the boardwalk property again
    >>> monopoly.boardwalk
    600
    >>> monopoly.boardwalk
    600

Working with Threads
---------------------

What if a whole bunch of people want to stay at Boardwalk all at once? This means using threads, which
unfortunately causes problems with the standard ``cached_property``. In this case, switch to using the
``threaded_cached_property``:

.. code-block:: python

    from cached_property import threaded_cached_property

    class Monopoly(object):

        def __init__(self):
            self.boardwalk_price = 500

        @threaded_cached_property
        def boardwalk(self):
            """threaded_cached_property is really nice for when no one waits
                for other people to finish their turn and rudely start rolling
                dice and moving their pieces."""

            sleep(1)
            self.boardwalk_price += 50
            return self.boardwalk_price

Now use it:

.. code-block:: python

    >>> from threading import Thread
    >>> from monopoly import Monopoly
    >>> monopoly = Monopoly()
    >>> threads = []
    >>> for x in range(10):
    >>>     thread = Thread(target=lambda: monopoly.boardwalk)
    >>>     thread.start()
    >>>     threads.append(thread)

    >>> for thread in threads:
    >>>     thread.join()

    >>> self.assertEqual(m.boardwalk, 550)


Working with async/await (Python 3.5+)
--------------------------------------

The cached property can be async, in which case you have to use await
as usual to get the value. Because of the caching, the value is only
computed once and then cached:

.. code-block:: python

    from cached_property import cached_property

    class Monopoly(object):

        def __init__(self):
            self.boardwalk_price = 500

        @cached_property
        async def boardwalk(self):
            self.boardwalk_price += 50
            return self.boardwalk_price

Now use it:

.. code-block:: python

    >>> async def print_boardwalk():
    ...     monopoly = Monopoly()
    ...     print(await monopoly.boardwalk)
    ...     print(await monopoly.boardwalk)
    ...     print(await monopoly.boardwalk)
    >>> import asyncio
    >>> asyncio.get_event_loop().run_until_complete(print_boardwalk())
    550
    550
    550

Note that this does not work with threading either, most asyncio
objects are not thread-safe. And if you run separate event loops in
each thread, the cached version will most likely have the wrong event
loop. To summarize, either use cooperative multitasking (event loop)
or threading, but not both at the same time.


Timing out the cache
--------------------

Sometimes you want the price of things to reset after a time. Use the ``ttl``
versions of ``cached_property`` and ``threaded_cached_property``.

.. code-block:: python

    import random
    from cached_property import cached_property_with_ttl

    class Monopoly(object):

        @cached_property_with_ttl(ttl=5) # cache invalidates after 5 seconds
        def dice(self):
            # I dare the reader to implement a game using this method of 'rolling dice'.
            return random.randint(2,12)

Now use it:

.. code-block:: python

    >>> monopoly = Monopoly()
    >>> monopoly.dice
    10
    >>> monopoly.dice
    10
    >>> from time import sleep
    >>> sleep(6) # Sleeps long enough to expire the cache
    >>> monopoly.dice
    3
    >>> monopoly.dice
    3

**Note:** The ``ttl`` tools do not reliably allow the clearing of the cache. This
is why they are broken out into seperate tools. See https://github.com/pydanny/cached-property/issues/16.

Credits
--------

* ``@pydanny`` for the original ``cached-property`` implementation.
* Pip, Django, Werkzueg, Bottle, Pyramid, and Zope for having their own implementations. This package originally used an implementation that matched the Bottle version.
* Reinout Van Rees for pointing out the `cached_property` decorator to me.
* ``@audreyr``_ who created ``cookiecutter``_, which meant rolling this out took ``@pydanny`` just 15 minutes.
* ``@tinche`` for pointing out the threading issue and providing a solution.
* ``@bcho`` for providing the time-to-expire feature

.. _`@audreyr`: https://github.com/audreyr
.. _`cookiecutter`: https://github.com/audreyr/cookiecutter

.. :changelog:

History
-------

1.6.4 (2020-03-06)
++++++++++++++++++

* Fix some remaining Python 2 support code (`#25 <https://github.com/althonos/property-cached/pull/25>`_)

1.6.3 (2019-09-07)
++++++++++++++++++

* Resolve `cached_property` docstring not showing (`#171 <https://github.com/pydanny/cached-property/pull/171>`_).

1.6.2 (2019-07-22)
++++++++++++++++++

* Fix metadata to keep original author and add @althonos as maintainer

1.6.1 (2019-07-22)
++++++++++++++++++

* Fix unneeded dependencies being present in ``setup.cfg``

1.6.0 (2019-07-22)
++++++++++++++++++

* Fixed class hierarchy, ``cached_property`` now inherits from ``property``
* Add support for slotted classes and stop using the object ``__dict__``
* Improve function wrapping using ``functools.update_wrapper``
* Implement the ``__set_name__`` magic method available since Python 3.6

1.5.1 (2018-08-05)
++++++++++++++++++

* Added formal support for Python 3.7
* Removed formal support for Python 3.3

1.4.3  (2018-06-14)
+++++++++++++++++++

* Catch SyntaxError from asyncio import on older versions of Python, thanks to @asottile

1.4.2 (2018-04-08)
++++++++++++++++++

* Really fixed tests, thanks to @pydanny

1.4.1 (2018-04-08)
++++++++++++++++++

* Added conftest.py to manifest so tests work properly off the tarball, thanks to @dotlambda
* Ensured new asyncio tests didn't break Python 2.7 builds on Debian, thanks to @pydanny
* Code formatting via black, thanks to @pydanny and @ambv


1.4.0 (2018-02-25)
++++++++++++++++++

* Added asyncio support, thanks to @vbraun
* Remove Python 2.6 support, whose end of life was 5 years ago, thanks to @pydanny


1.3.1 (2017-09-21)
++++++++++++++++++

* Validate for Python 3.6


1.3.0 (2015-11-24)
++++++++++++++++++

* Drop some non-ASCII characters from HISTORY.rst, thanks to @AdamWill
* Added official support for Python 3.5, thanks to @pydanny and @audreyr
* Removed confusingly placed lock from example, thanks to @ionelmc
* Corrected invalidation cache documentation, thanks to @proofit404
* Updated to latest Travis-CI environment, thanks to @audreyr

1.2.0 (2015-04-28)
++++++++++++++++++

* Overall code and test refactoring, thanks to @gsakkis
* Allow the del statement for resetting cached properties with ttl instead of del obj._cache[attr], thanks to @gsakkis.
* Uncovered a bug in PyPy, https://bitbucket.org/pypy/pypy/issue/2033/attributeerror-object-attribute-is-read, thanks to @gsakkis
* Fixed threaded_cached_property_with_ttl to actually be thread-safe, thanks to @gsakkis

1.1.0 (2015-04-04)
++++++++++++++++++

* Regression: As the cache was not always clearing, we've broken out the time to expire feature to its own set of specific tools, thanks to @pydanny
* Fixed typo in README, thanks to @zoidbergwill

1.0.0 (2015-02-13)
++++++++++++++++++

* Added timed to expire feature to ``cached_property`` decorator.
* **Backwards incompatiblity**: Changed ``del monopoly.boardwalk`` to ``del monopoly['boardwalk']`` in order to support the new TTL feature.

0.1.5 (2014-05-20)
++++++++++++++++++

* Added threading support with new ``threaded_cached_property`` decorator
* Documented cache invalidation
* Updated credits
* Sourced the bottle implementation

0.1.4 (2014-05-17)
++++++++++++++++++

* 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.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/althonos/property-cached/",
    "name": "property-cached",
    "maintainer": "Martin Larralde",
    "docs_url": null,
    "requires_python": ">= 3.5",
    "maintainer_email": "martin.larralde@ens-paris-saclay.fr",
    "keywords": "cached-property,cache,property",
    "author": "Daniel Greenfeld",
    "author_email": "pydanny@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/e4/b9/5467f18d629e717fb346d4968b3fc0deaa6961317710ec77dfac539d231f/property-cached-1.6.4.zip",
    "platform": "any",
    "description": "===============================\nproperty-cached\n===============================\n\n.. image:: https://img.shields.io/travis/althonos/property-cached/master.svg?style=flat-square\n   :target: https://travis-ci.org/althonos/property-cached\n\n.. image:: https://img.shields.io/codecov/c/gh/althonos/property-cached.svg?style=flat-square\n   :target: https://codecov.io/gh/althonos/property-cached\n\n.. image:: https://img.shields.io/pypi/v/property-cached.svg?style=flat-square\n   :target: https://pypi.python.org/pypi/property-cached\n\n.. image:: https://img.shields.io/badge/code%20style-black-000000.svg?style=flat-square\n   :target: https://github.com/ambv/black\n\n\nA decorator for caching properties in classes (forked from ``cached-property``).\n\nThis library was forked from the upstream library ``cached-property`` since its\ndeveloper does not seem to be maintaining it anymore. It works as a drop-in\nreplacement with fully compatible API (import ``property_cached`` instead of\n``cached_property`` in your code and *voil\u00e0*). In case development resumes on\nthe original library, this one is likely to be deprecated.\n\n*Slightly modified README included below:*\n\nWhy?\n-----\n\n* Makes caching of time or computational expensive properties quick and easy.\n* Because I got tired of copy/pasting this code from non-web project to non-web project.\n\nHow to use it\n--------------\n\nLet's define a class with an expensive property. Every time you stay there the\nprice goes up by $50!\n\n.. code-block:: python\n\n    class Monopoly(object):\n\n        def __init__(self):\n            self.boardwalk_price = 500\n\n        @property\n        def boardwalk(self):\n            # In reality, this might represent a database call or time\n            # intensive task like calling a third-party API.\n            self.boardwalk_price += 50\n            return self.boardwalk_price\n\nNow run it:\n\n.. code-block:: python\n\n    >>> monopoly = Monopoly()\n    >>> monopoly.boardwalk\n    550\n    >>> monopoly.boardwalk\n    600\n\nLet's convert the boardwalk property into a ``cached_property``.\n\n.. code-block:: python\n\n    from cached_property import cached_property\n\n    class Monopoly(object):\n\n        def __init__(self):\n            self.boardwalk_price = 500\n\n        @cached_property\n        def boardwalk(self):\n            # Again, this is a silly example. Don't worry about it, this is\n            #   just an example for clarity.\n            self.boardwalk_price += 50\n            return self.boardwalk_price\n\nNow when we run it the price stays at $550.\n\n.. code-block:: python\n\n    >>> monopoly = Monopoly()\n    >>> monopoly.boardwalk\n    550\n    >>> monopoly.boardwalk\n    550\n    >>> monopoly.boardwalk\n    550\n\nWhy doesn't the value of ``monopoly.boardwalk`` change? Because it's a **cached property**!\n\nInvalidating the Cache\n----------------------\n\nResults of cached functions can be invalidated by outside forces. Let's demonstrate how to force the cache to invalidate:\n\n.. code-block:: python\n\n    >>> monopoly = Monopoly()\n    >>> monopoly.boardwalk\n    550\n    >>> monopoly.boardwalk\n    550\n    >>> # invalidate the cache\n    >>> del monopoly.__dict__['boardwalk']\n    >>> # request the boardwalk property again\n    >>> monopoly.boardwalk\n    600\n    >>> monopoly.boardwalk\n    600\n\nWorking with Threads\n---------------------\n\nWhat if a whole bunch of people want to stay at Boardwalk all at once? This means using threads, which\nunfortunately causes problems with the standard ``cached_property``. In this case, switch to using the\n``threaded_cached_property``:\n\n.. code-block:: python\n\n    from cached_property import threaded_cached_property\n\n    class Monopoly(object):\n\n        def __init__(self):\n            self.boardwalk_price = 500\n\n        @threaded_cached_property\n        def boardwalk(self):\n            \"\"\"threaded_cached_property is really nice for when no one waits\n                for other people to finish their turn and rudely start rolling\n                dice and moving their pieces.\"\"\"\n\n            sleep(1)\n            self.boardwalk_price += 50\n            return self.boardwalk_price\n\nNow use it:\n\n.. code-block:: python\n\n    >>> from threading import Thread\n    >>> from monopoly import Monopoly\n    >>> monopoly = Monopoly()\n    >>> threads = []\n    >>> for x in range(10):\n    >>>     thread = Thread(target=lambda: monopoly.boardwalk)\n    >>>     thread.start()\n    >>>     threads.append(thread)\n\n    >>> for thread in threads:\n    >>>     thread.join()\n\n    >>> self.assertEqual(m.boardwalk, 550)\n\n\nWorking with async/await (Python 3.5+)\n--------------------------------------\n\nThe cached property can be async, in which case you have to use await\nas usual to get the value. Because of the caching, the value is only\ncomputed once and then cached:\n\n.. code-block:: python\n\n    from cached_property import cached_property\n\n    class Monopoly(object):\n\n        def __init__(self):\n            self.boardwalk_price = 500\n\n        @cached_property\n        async def boardwalk(self):\n            self.boardwalk_price += 50\n            return self.boardwalk_price\n\nNow use it:\n\n.. code-block:: python\n\n    >>> async def print_boardwalk():\n    ...     monopoly = Monopoly()\n    ...     print(await monopoly.boardwalk)\n    ...     print(await monopoly.boardwalk)\n    ...     print(await monopoly.boardwalk)\n    >>> import asyncio\n    >>> asyncio.get_event_loop().run_until_complete(print_boardwalk())\n    550\n    550\n    550\n\nNote that this does not work with threading either, most asyncio\nobjects are not thread-safe. And if you run separate event loops in\neach thread, the cached version will most likely have the wrong event\nloop. To summarize, either use cooperative multitasking (event loop)\nor threading, but not both at the same time.\n\n\nTiming out the cache\n--------------------\n\nSometimes you want the price of things to reset after a time. Use the ``ttl``\nversions of ``cached_property`` and ``threaded_cached_property``.\n\n.. code-block:: python\n\n    import random\n    from cached_property import cached_property_with_ttl\n\n    class Monopoly(object):\n\n        @cached_property_with_ttl(ttl=5) # cache invalidates after 5 seconds\n        def dice(self):\n            # I dare the reader to implement a game using this method of 'rolling dice'.\n            return random.randint(2,12)\n\nNow use it:\n\n.. code-block:: python\n\n    >>> monopoly = Monopoly()\n    >>> monopoly.dice\n    10\n    >>> monopoly.dice\n    10\n    >>> from time import sleep\n    >>> sleep(6) # Sleeps long enough to expire the cache\n    >>> monopoly.dice\n    3\n    >>> monopoly.dice\n    3\n\n**Note:** The ``ttl`` tools do not reliably allow the clearing of the cache. This\nis why they are broken out into seperate tools. See https://github.com/pydanny/cached-property/issues/16.\n\nCredits\n--------\n\n* ``@pydanny`` for the original ``cached-property`` implementation.\n* Pip, Django, Werkzueg, Bottle, Pyramid, and Zope for having their own implementations. This package originally used an implementation that matched the Bottle version.\n* Reinout Van Rees for pointing out the `cached_property` decorator to me.\n* ``@audreyr``_ who created ``cookiecutter``_, which meant rolling this out took ``@pydanny`` just 15 minutes.\n* ``@tinche`` for pointing out the threading issue and providing a solution.\n* ``@bcho`` for providing the time-to-expire feature\n\n.. _`@audreyr`: https://github.com/audreyr\n.. _`cookiecutter`: https://github.com/audreyr/cookiecutter\n\n.. :changelog:\n\nHistory\n-------\n\n1.6.4 (2020-03-06)\n++++++++++++++++++\n\n* Fix some remaining Python 2 support code (`#25 <https://github.com/althonos/property-cached/pull/25>`_)\n\n1.6.3 (2019-09-07)\n++++++++++++++++++\n\n* Resolve `cached_property` docstring not showing (`#171 <https://github.com/pydanny/cached-property/pull/171>`_).\n\n1.6.2 (2019-07-22)\n++++++++++++++++++\n\n* Fix metadata to keep original author and add @althonos as maintainer\n\n1.6.1 (2019-07-22)\n++++++++++++++++++\n\n* Fix unneeded dependencies being present in ``setup.cfg``\n\n1.6.0 (2019-07-22)\n++++++++++++++++++\n\n* Fixed class hierarchy, ``cached_property`` now inherits from ``property``\n* Add support for slotted classes and stop using the object ``__dict__``\n* Improve function wrapping using ``functools.update_wrapper``\n* Implement the ``__set_name__`` magic method available since Python 3.6\n\n1.5.1 (2018-08-05)\n++++++++++++++++++\n\n* Added formal support for Python 3.7\n* Removed formal support for Python 3.3\n\n1.4.3  (2018-06-14)\n+++++++++++++++++++\n\n* Catch SyntaxError from asyncio import on older versions of Python, thanks to @asottile\n\n1.4.2 (2018-04-08)\n++++++++++++++++++\n\n* Really fixed tests, thanks to @pydanny\n\n1.4.1 (2018-04-08)\n++++++++++++++++++\n\n* Added conftest.py to manifest so tests work properly off the tarball, thanks to @dotlambda\n* Ensured new asyncio tests didn't break Python 2.7 builds on Debian, thanks to @pydanny\n* Code formatting via black, thanks to @pydanny and @ambv\n\n\n1.4.0 (2018-02-25)\n++++++++++++++++++\n\n* Added asyncio support, thanks to @vbraun\n* Remove Python 2.6 support, whose end of life was 5 years ago, thanks to @pydanny\n\n\n1.3.1 (2017-09-21)\n++++++++++++++++++\n\n* Validate for Python 3.6\n\n\n1.3.0 (2015-11-24)\n++++++++++++++++++\n\n* Drop some non-ASCII characters from HISTORY.rst, thanks to @AdamWill\n* Added official support for Python 3.5, thanks to @pydanny and @audreyr\n* Removed confusingly placed lock from example, thanks to @ionelmc\n* Corrected invalidation cache documentation, thanks to @proofit404\n* Updated to latest Travis-CI environment, thanks to @audreyr\n\n1.2.0 (2015-04-28)\n++++++++++++++++++\n\n* Overall code and test refactoring, thanks to @gsakkis\n* Allow the del statement for resetting cached properties with ttl instead of del obj._cache[attr], thanks to @gsakkis.\n* Uncovered a bug in PyPy, https://bitbucket.org/pypy/pypy/issue/2033/attributeerror-object-attribute-is-read, thanks to @gsakkis\n* Fixed threaded_cached_property_with_ttl to actually be thread-safe, thanks to @gsakkis\n\n1.1.0 (2015-04-04)\n++++++++++++++++++\n\n* Regression: As the cache was not always clearing, we've broken out the time to expire feature to its own set of specific tools, thanks to @pydanny\n* Fixed typo in README, thanks to @zoidbergwill\n\n1.0.0 (2015-02-13)\n++++++++++++++++++\n\n* Added timed to expire feature to ``cached_property`` decorator.\n* **Backwards incompatiblity**: Changed ``del monopoly.boardwalk`` to ``del monopoly['boardwalk']`` in order to support the new TTL feature.\n\n0.1.5 (2014-05-20)\n++++++++++++++++++\n\n* Added threading support with new ``threaded_cached_property`` decorator\n* Documented cache invalidation\n* Updated credits\n* Sourced the bottle implementation\n\n0.1.4 (2014-05-17)\n++++++++++++++++++\n\n* Fix the dang-blarged py_modules argument.\n\n0.1.3 (2014-05-17)\n++++++++++++++++++\n\n* Removed import of package into ``setup.py``\n\n0.1.2 (2014-05-17)\n++++++++++++++++++\n\n* Documentation fixes. Not opening up a RTFD instance for this because it's so simple to use.\n\n0.1.1 (2014-05-17)\n++++++++++++++++++\n\n* setup.py fix. Whoops!\n\n0.1.0 (2014-05-17)\n++++++++++++++++++\n\n* First release on PyPI.\n\n\n",
    "bugtrack_url": null,
    "license": "BSD",
    "summary": "A decorator for caching properties in classes (forked from cached-property).",
    "version": "1.6.4",
    "project_urls": {
        "Homepage": "https://github.com/althonos/property-cached/"
    },
    "split_keywords": [
        "cached-property",
        "cache",
        "property"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5c6c94d8e520b20a2502e508e1c558f338061cf409cbee78fd6a3a5c6ae812bd",
                "md5": "0b1ca194ef21dc125966e06745152633",
                "sha256": "135fc059ec969c1646424a0db15e7fbe1b5f8c36c0006d0b3c91ba568c11e7d8"
            },
            "downloads": -1,
            "filename": "property_cached-1.6.4-py2.py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "0b1ca194ef21dc125966e06745152633",
            "packagetype": "bdist_wheel",
            "python_version": "py2.py3",
            "requires_python": ">= 3.5",
            "size": 7763,
            "upload_time": "2020-03-06T15:39:30",
            "upload_time_iso_8601": "2020-03-06T15:39:30.026656Z",
            "url": "https://files.pythonhosted.org/packages/5c/6c/94d8e520b20a2502e508e1c558f338061cf409cbee78fd6a3a5c6ae812bd/property_cached-1.6.4-py2.py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4b95467f18d629e717fb346d4968b3fc0deaa6961317710ec77dfac539d231f",
                "md5": "f9c9414c53395307ff89b520d8906443",
                "sha256": "3e9c4ef1ed3653909147510481d7df62a3cfb483461a6986a6f1dcd09b2ebb73"
            },
            "downloads": -1,
            "filename": "property-cached-1.6.4.zip",
            "has_sig": false,
            "md5_digest": "f9c9414c53395307ff89b520d8906443",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">= 3.5",
            "size": 23539,
            "upload_time": "2020-03-06T15:39:31",
            "upload_time_iso_8601": "2020-03-06T15:39:31.415341Z",
            "url": "https://files.pythonhosted.org/packages/e4/b9/5467f18d629e717fb346d4968b3fc0deaa6961317710ec77dfac539d231f/property-cached-1.6.4.zip",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2020-03-06 15:39:31",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "althonos",
    "github_project": "property-cached",
    "travis_ci": true,
    "coveralls": false,
    "github_actions": false,
    "lcname": "property-cached"
}
        
Elapsed time: 0.07258s