propcache
=========
The module provides a fast implementation of cached properties for Python 3.9+.
.. image:: https://github.com/aio-libs/propcache/actions/workflows/ci-cd.yml/badge.svg
:target: https://github.com/aio-libs/propcache/actions?query=workflow%3ACI
:align: right
.. image:: https://codecov.io/gh/aio-libs/propcache/branch/master/graph/badge.svg
:target: https://codecov.io/gh/aio-libs/propcache
.. image:: https://badge.fury.io/py/propcache.svg
:target: https://badge.fury.io/py/propcache
.. image:: https://readthedocs.org/projects/propcache/badge/?version=latest
:target: https://propcache.readthedocs.io
.. image:: https://img.shields.io/pypi/pyversions/propcache.svg
:target: https://pypi.python.org/pypi/propcache
.. image:: https://img.shields.io/matrix/aio-libs:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat
:target: https://matrix.to/#/%23aio-libs:matrix.org
:alt: Matrix Room — #aio-libs:matrix.org
.. image:: https://img.shields.io/matrix/aio-libs-space:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs-space%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat
:target: https://matrix.to/#/%23aio-libs-space:matrix.org
:alt: Matrix Space — #aio-libs-space:matrix.org
Introduction
------------
The API is designed to be nearly identical to the built-in ``functools.cached_property`` class,
except for the additional ``under_cached_property`` class which uses ``self._cache``
instead of ``self.__dict__`` to store the cached values and prevents ``__set__`` from being called.
For full documentation please read https://propcache.readthedocs.io.
Installation
------------
::
$ pip install propcache
The library is Python 3 only!
PyPI contains binary wheels for Linux, Windows and MacOS. If you want to install
``propcache`` on another operating system where wheels are not provided,
the the tarball will be used to compile the library from
the source code. It requires a C compiler and and Python headers installed.
To skip the compilation you must explicitly opt-in by using a PEP 517
configuration setting ``pure-python``, or setting the ``PROPCACHE_NO_EXTENSIONS``
environment variable to a non-empty value, e.g.:
.. code-block:: console
$ pip install propcache --config-settings=pure-python=false
Please note that the pure-Python (uncompiled) version is much slower. However,
PyPy always uses a pure-Python implementation, and, as such, it is unaffected
by this variable.
API documentation
------------------
The documentation is located at https://propcache.readthedocs.io.
Source code
-----------
The project is hosted on GitHub_
Please file an issue on the `bug tracker
<https://github.com/aio-libs/propcache/issues>`_ if you have found a bug
or have some suggestion in order to improve the library.
Discussion list
---------------
*aio-libs* google group: https://groups.google.com/forum/#!forum/aio-libs
Feel free to post your questions and ideas here.
Authors and License
-------------------
The ``propcache`` package is derived from ``yarl`` which is written by Andrew Svetlov.
It's *Apache 2* licensed and freely available.
.. _GitHub: https://github.com/aio-libs/propcache
=========
Changelog
=========
..
You should *NOT* be adding new change log entries to this file, this
file is managed by towncrier. You *may* edit previous change logs to
fix problems like typo corrections or such.
To add a new change log entry, please see
https://pip.pypa.io/en/latest/development/#adding-a-news-entry
we named the news folder "changes".
WARNING: Don't drop the next directive!
.. towncrier release notes start
0.2.1
=====
*(2024-12-01)*
Bug fixes
---------
- Stopped implicitly allowing the use of Cython pre-release versions when
building the distribution package -- by `@ajsanchezsanz <https://github.com/sponsors/ajsanchezsanz>`__ and
`@markgreene74 <https://github.com/sponsors/markgreene74>`__.
*Related commits on GitHub:*
`64df0a6 <https://github.com/aio-libs/propcache/commit/64df0a6>`__.
- Fixed ``wrapped`` and ``func`` not being accessible in the Cython versions of ``propcache.api.cached_property`` and ``propcache.api.under_cached_property`` decorators -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
*Related issues and pull requests on GitHub:*
`#72 <https://github.com/aio-libs/propcache/issues/72>`__.
Removals and backward incompatible breaking changes
---------------------------------------------------
- Removed support for Python 3.8 as it has reached end of life -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
*Related issues and pull requests on GitHub:*
`#57 <https://github.com/aio-libs/propcache/issues/57>`__.
Packaging updates and notes for downstreams
-------------------------------------------
- Stopped implicitly allowing the use of Cython pre-release versions when
building the distribution package -- by `@ajsanchezsanz <https://github.com/sponsors/ajsanchezsanz>`__ and
`@markgreene74 <https://github.com/sponsors/markgreene74>`__.
*Related commits on GitHub:*
`64df0a6 <https://github.com/aio-libs/propcache/commit/64df0a6>`__.
----
0.2.0
=====
*(2024-10-07)*
Bug fixes
---------
- Fixed loading the C-extensions on Python 3.8 -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
*Related issues and pull requests on GitHub:*
`#26 <https://github.com/aio-libs/propcache/issues/26>`__.
Features
--------
- Improved typing for the ``propcache.api.under_cached_property`` decorator -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
*Related issues and pull requests on GitHub:*
`#38 <https://github.com/aio-libs/propcache/issues/38>`__.
Improved documentation
----------------------
- Added API documentation for the ``propcache.api.cached_property`` and ``propcache.api.under_cached_property`` decorators -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
*Related issues and pull requests on GitHub:*
`#16 <https://github.com/aio-libs/propcache/issues/16>`__.
Packaging updates and notes for downstreams
-------------------------------------------
- Moved ``propcache.api.under_cached_property`` and ``propcache.api.cached_property`` to `propcache.api` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
Both decorators remain importable from the top-level package, however importing from `propcache.api` is now the recommended way to use them.
*Related issues and pull requests on GitHub:*
`#19 <https://github.com/aio-libs/propcache/issues/19>`__, `#24 <https://github.com/aio-libs/propcache/issues/24>`__, `#32 <https://github.com/aio-libs/propcache/issues/32>`__.
- Converted project to use a src layout -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
*Related issues and pull requests on GitHub:*
`#22 <https://github.com/aio-libs/propcache/issues/22>`__, `#29 <https://github.com/aio-libs/propcache/issues/29>`__, `#37 <https://github.com/aio-libs/propcache/issues/37>`__.
----
0.1.0
=====
*(2024-10-03)*
Features
--------
- Added ``armv7l`` wheels -- by `@bdraco <https://github.com/sponsors/bdraco>`__.
*Related issues and pull requests on GitHub:*
`#5 <https://github.com/aio-libs/propcache/issues/5>`__.
----
0.0.0
=====
*(2024-10-02)*
- Initial release.
Raw data
{
"_id": null,
"home_page": "https://github.com/aio-libs/propcache",
"name": "propcache",
"maintainer": "aiohttp team <team@aiohttp.org>",
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": "team@aiohttp.org",
"keywords": "cython, cext, propcache",
"author": "Andrew Svetlov",
"author_email": "andrew.svetlov@gmail.com",
"download_url": "https://files.pythonhosted.org/packages/20/c8/2a13f78d82211490855b2fb303b6721348d0787fdd9a12ac46d99d3acde1/propcache-0.2.1.tar.gz",
"platform": null,
"description": "propcache\n=========\n\nThe module provides a fast implementation of cached properties for Python 3.9+.\n\n.. image:: https://github.com/aio-libs/propcache/actions/workflows/ci-cd.yml/badge.svg\n :target: https://github.com/aio-libs/propcache/actions?query=workflow%3ACI\n :align: right\n\n.. image:: https://codecov.io/gh/aio-libs/propcache/branch/master/graph/badge.svg\n :target: https://codecov.io/gh/aio-libs/propcache\n\n.. image:: https://badge.fury.io/py/propcache.svg\n :target: https://badge.fury.io/py/propcache\n\n\n.. image:: https://readthedocs.org/projects/propcache/badge/?version=latest\n :target: https://propcache.readthedocs.io\n\n\n.. image:: https://img.shields.io/pypi/pyversions/propcache.svg\n :target: https://pypi.python.org/pypi/propcache\n\n.. image:: https://img.shields.io/matrix/aio-libs:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat\n :target: https://matrix.to/#/%23aio-libs:matrix.org\n :alt: Matrix Room \u2014 #aio-libs:matrix.org\n\n.. image:: https://img.shields.io/matrix/aio-libs-space:matrix.org?label=Discuss%20on%20Matrix%20at%20%23aio-libs-space%3Amatrix.org&logo=matrix&server_fqdn=matrix.org&style=flat\n :target: https://matrix.to/#/%23aio-libs-space:matrix.org\n :alt: Matrix Space \u2014 #aio-libs-space:matrix.org\n\nIntroduction\n------------\n\nThe API is designed to be nearly identical to the built-in ``functools.cached_property`` class,\nexcept for the additional ``under_cached_property`` class which uses ``self._cache``\ninstead of ``self.__dict__`` to store the cached values and prevents ``__set__`` from being called.\n\nFor full documentation please read https://propcache.readthedocs.io.\n\nInstallation\n------------\n\n::\n\n $ pip install propcache\n\nThe library is Python 3 only!\n\nPyPI contains binary wheels for Linux, Windows and MacOS. If you want to install\n``propcache`` on another operating system where wheels are not provided,\nthe the tarball will be used to compile the library from\nthe source code. It requires a C compiler and and Python headers installed.\n\nTo skip the compilation you must explicitly opt-in by using a PEP 517\nconfiguration setting ``pure-python``, or setting the ``PROPCACHE_NO_EXTENSIONS``\nenvironment variable to a non-empty value, e.g.:\n\n.. code-block:: console\n\n $ pip install propcache --config-settings=pure-python=false\n\nPlease note that the pure-Python (uncompiled) version is much slower. However,\nPyPy always uses a pure-Python implementation, and, as such, it is unaffected\nby this variable.\n\n\nAPI documentation\n------------------\n\nThe documentation is located at https://propcache.readthedocs.io.\n\nSource code\n-----------\n\nThe project is hosted on GitHub_\n\nPlease file an issue on the `bug tracker\n<https://github.com/aio-libs/propcache/issues>`_ if you have found a bug\nor have some suggestion in order to improve the library.\n\nDiscussion list\n---------------\n\n*aio-libs* google group: https://groups.google.com/forum/#!forum/aio-libs\n\nFeel free to post your questions and ideas here.\n\n\nAuthors and License\n-------------------\n\nThe ``propcache`` package is derived from ``yarl`` which is written by Andrew Svetlov.\n\nIt's *Apache 2* licensed and freely available.\n\n\n.. _GitHub: https://github.com/aio-libs/propcache\n\n=========\nChangelog\n=========\n\n..\n You should *NOT* be adding new change log entries to this file, this\n file is managed by towncrier. You *may* edit previous change logs to\n fix problems like typo corrections or such.\n To add a new change log entry, please see\n https://pip.pypa.io/en/latest/development/#adding-a-news-entry\n we named the news folder \"changes\".\n\n WARNING: Don't drop the next directive!\n\n.. towncrier release notes start\n\n0.2.1\n=====\n\n*(2024-12-01)*\n\n\nBug fixes\n---------\n\n- Stopped implicitly allowing the use of Cython pre-release versions when\n building the distribution package -- by `@ajsanchezsanz <https://github.com/sponsors/ajsanchezsanz>`__ and\n `@markgreene74 <https://github.com/sponsors/markgreene74>`__.\n\n *Related commits on GitHub:*\n `64df0a6 <https://github.com/aio-libs/propcache/commit/64df0a6>`__.\n\n- Fixed ``wrapped`` and ``func`` not being accessible in the Cython versions of ``propcache.api.cached_property`` and ``propcache.api.under_cached_property`` decorators -- by `@bdraco <https://github.com/sponsors/bdraco>`__.\n\n *Related issues and pull requests on GitHub:*\n `#72 <https://github.com/aio-libs/propcache/issues/72>`__.\n\n\nRemovals and backward incompatible breaking changes\n---------------------------------------------------\n\n- Removed support for Python 3.8 as it has reached end of life -- by `@bdraco <https://github.com/sponsors/bdraco>`__.\n\n *Related issues and pull requests on GitHub:*\n `#57 <https://github.com/aio-libs/propcache/issues/57>`__.\n\n\nPackaging updates and notes for downstreams\n-------------------------------------------\n\n- Stopped implicitly allowing the use of Cython pre-release versions when\n building the distribution package -- by `@ajsanchezsanz <https://github.com/sponsors/ajsanchezsanz>`__ and\n `@markgreene74 <https://github.com/sponsors/markgreene74>`__.\n\n *Related commits on GitHub:*\n `64df0a6 <https://github.com/aio-libs/propcache/commit/64df0a6>`__.\n\n\n----\n\n\n0.2.0\n=====\n\n*(2024-10-07)*\n\n\nBug fixes\n---------\n\n- Fixed loading the C-extensions on Python 3.8 -- by `@bdraco <https://github.com/sponsors/bdraco>`__.\n\n *Related issues and pull requests on GitHub:*\n `#26 <https://github.com/aio-libs/propcache/issues/26>`__.\n\n\nFeatures\n--------\n\n- Improved typing for the ``propcache.api.under_cached_property`` decorator -- by `@bdraco <https://github.com/sponsors/bdraco>`__.\n\n *Related issues and pull requests on GitHub:*\n `#38 <https://github.com/aio-libs/propcache/issues/38>`__.\n\n\nImproved documentation\n----------------------\n\n- Added API documentation for the ``propcache.api.cached_property`` and ``propcache.api.under_cached_property`` decorators -- by `@bdraco <https://github.com/sponsors/bdraco>`__.\n\n *Related issues and pull requests on GitHub:*\n `#16 <https://github.com/aio-libs/propcache/issues/16>`__.\n\n\nPackaging updates and notes for downstreams\n-------------------------------------------\n\n- Moved ``propcache.api.under_cached_property`` and ``propcache.api.cached_property`` to `propcache.api` -- by `@bdraco <https://github.com/sponsors/bdraco>`__.\n\n Both decorators remain importable from the top-level package, however importing from `propcache.api` is now the recommended way to use them.\n\n *Related issues and pull requests on GitHub:*\n `#19 <https://github.com/aio-libs/propcache/issues/19>`__, `#24 <https://github.com/aio-libs/propcache/issues/24>`__, `#32 <https://github.com/aio-libs/propcache/issues/32>`__.\n\n- Converted project to use a src layout -- by `@bdraco <https://github.com/sponsors/bdraco>`__.\n\n *Related issues and pull requests on GitHub:*\n `#22 <https://github.com/aio-libs/propcache/issues/22>`__, `#29 <https://github.com/aio-libs/propcache/issues/29>`__, `#37 <https://github.com/aio-libs/propcache/issues/37>`__.\n\n\n----\n\n\n0.1.0\n=====\n\n*(2024-10-03)*\n\n\nFeatures\n--------\n\n- Added ``armv7l`` wheels -- by `@bdraco <https://github.com/sponsors/bdraco>`__.\n\n *Related issues and pull requests on GitHub:*\n `#5 <https://github.com/aio-libs/propcache/issues/5>`__.\n\n\n----\n\n\n0.0.0\n=====\n\n*(2024-10-02)*\n\n\n- Initial release.\n",
"bugtrack_url": null,
"license": "Apache-2.0",
"summary": "Accelerated property cache",
"version": "0.2.1",
"project_urls": {
"CI: GitHub Workflows": "https://github.com/aio-libs/propcache/actions?query=branch:master",
"Chat: Matrix": "https://matrix.to/#/#aio-libs:matrix.org",
"Chat: Matrix Space": "https://matrix.to/#/#aio-libs-space:matrix.org",
"Code of Conduct": "https://github.com/aio-libs/.github/blob/master/CODE_OF_CONDUCT.md",
"Coverage: codecov": "https://codecov.io/github/aio-libs/propcache",
"Docs: Changelog": "https://propcache.readthedocs.io/en/latest/changes/",
"Docs: RTD": "https://propcache.readthedocs.io",
"GitHub: issues": "https://github.com/aio-libs/propcache/issues",
"GitHub: repo": "https://github.com/aio-libs/propcache",
"Homepage": "https://github.com/aio-libs/propcache"
},
"split_keywords": [
"cython",
" cext",
" propcache"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "a7a50ea64c9426959ef145a938e38c832fc551843481d356713ececa9a8a64e8",
"md5": "1caecbc0bd0ac22b1c64217b0ac29ed0",
"sha256": "6b3f39a85d671436ee3d12c017f8fdea38509e4f25b28eb25877293c98c243f6"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "1caecbc0bd0ac22b1c64217b0ac29ed0",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 79296,
"upload_time": "2024-12-01T18:27:02",
"upload_time_iso_8601": "2024-12-01T18:27:02.052592Z",
"url": "https://files.pythonhosted.org/packages/a7/a5/0ea64c9426959ef145a938e38c832fc551843481d356713ececa9a8a64e8/propcache-0.2.1-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "765a916db1aba735f55e5eca4733eea4d1973845cf77dfe67c2381a2ca3ce52d",
"md5": "1f0951f0a532642023a92f3cab187e12",
"sha256": "39d51fbe4285d5db5d92a929e3e21536ea3dd43732c5b177c7ef03f918dff9f2"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "1f0951f0a532642023a92f3cab187e12",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 45622,
"upload_time": "2024-12-01T18:27:04",
"upload_time_iso_8601": "2024-12-01T18:27:04.022325Z",
"url": "https://files.pythonhosted.org/packages/76/5a/916db1aba735f55e5eca4733eea4d1973845cf77dfe67c2381a2ca3ce52d/propcache-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2d62685d3cf268b8401ec12b250b925b21d152b9d193b7bffa5fdc4815c392c2",
"md5": "8e73726e0a6730add13be5408e1e4a15",
"sha256": "6445804cf4ec763dc70de65a3b0d9954e868609e83850a47ca4f0cb64bd79fea"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "8e73726e0a6730add13be5408e1e4a15",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 45133,
"upload_time": "2024-12-01T18:27:05",
"upload_time_iso_8601": "2024-12-01T18:27:05.149017Z",
"url": "https://files.pythonhosted.org/packages/2d/62/685d3cf268b8401ec12b250b925b21d152b9d193b7bffa5fdc4815c392c2/propcache-0.2.1-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4d3d31c9c29ee7192defc05aa4d01624fd85a41cf98e5922aaed206017329944",
"md5": "63877600ffb9426c9f244a48e2652de6",
"sha256": "f9479aa06a793c5aeba49ce5c5692ffb51fcd9a7016e017d555d5e2b0045d212"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "63877600ffb9426c9f244a48e2652de6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 204809,
"upload_time": "2024-12-01T18:27:07",
"upload_time_iso_8601": "2024-12-01T18:27:07.020252Z",
"url": "https://files.pythonhosted.org/packages/4d/3d/31c9c29ee7192defc05aa4d01624fd85a41cf98e5922aaed206017329944/propcache-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "10a1e4050776f4797fc86140ac9a480d5dc069fbfa9d499fe5c5d2fa1ae71f07",
"md5": "cc03bbf3ac1846d320c15a2dee8cec2b",
"sha256": "d9631c5e8b5b3a0fda99cb0d29c18133bca1e18aea9effe55adb3da1adef80d3"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "cc03bbf3ac1846d320c15a2dee8cec2b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 219109,
"upload_time": "2024-12-01T18:27:08",
"upload_time_iso_8601": "2024-12-01T18:27:08.267868Z",
"url": "https://files.pythonhosted.org/packages/10/a1/e4050776f4797fc86140ac9a480d5dc069fbfa9d499fe5c5d2fa1ae71f07/propcache-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c9c0e7ae0df76343d5e107d81e59acc085cea5fd36a48aa53ef09add7503e888",
"md5": "1056b35883bc7c8bbc2a8dad45f08124",
"sha256": "3156628250f46a0895f1f36e1d4fbe062a1af8718ec3ebeb746f1d23f0c5dc4d"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "1056b35883bc7c8bbc2a8dad45f08124",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 217368,
"upload_time": "2024-12-01T18:27:18",
"upload_time_iso_8601": "2024-12-01T18:27:18.699243Z",
"url": "https://files.pythonhosted.org/packages/c9/c0/e7ae0df76343d5e107d81e59acc085cea5fd36a48aa53ef09add7503e888/propcache-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fce1e0a2ed6394b5772508868a977d3238f4afb2eebaf9976f0b44a8d347ad63",
"md5": "90517acf0cf8c50d6b41d4e6247eda52",
"sha256": "6b6fb63ae352e13748289f04f37868099e69dba4c2b3e271c46061e82c745634"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "90517acf0cf8c50d6b41d4e6247eda52",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 205124,
"upload_time": "2024-12-01T18:27:20",
"upload_time_iso_8601": "2024-12-01T18:27:20.619142Z",
"url": "https://files.pythonhosted.org/packages/fc/e1/e0a2ed6394b5772508868a977d3238f4afb2eebaf9976f0b44a8d347ad63/propcache-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "50c1e388c232d15ca10f233c778bbdc1034ba53ede14c207a72008de45b2db2e",
"md5": "b1ecf4c991d64d596b700cf4398c0344",
"sha256": "887d9b0a65404929641a9fabb6452b07fe4572b269d901d622d8a34a4e9043b2"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "b1ecf4c991d64d596b700cf4398c0344",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 195463,
"upload_time": "2024-12-01T18:27:22",
"upload_time_iso_8601": "2024-12-01T18:27:22.582068Z",
"url": "https://files.pythonhosted.org/packages/50/c1/e388c232d15ca10f233c778bbdc1034ba53ede14c207a72008de45b2db2e/propcache-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0afd71b349b9def426cc73813dbd0f33e266de77305e337c8c12bfb0a2a82bfb",
"md5": "6ba15e136d89fa381cd79c67890c719c",
"sha256": "a96dc1fa45bd8c407a0af03b2d5218392729e1822b0c32e62c5bf7eeb5fb3958"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "6ba15e136d89fa381cd79c67890c719c",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 198358,
"upload_time": "2024-12-01T18:27:24",
"upload_time_iso_8601": "2024-12-01T18:27:24.617967Z",
"url": "https://files.pythonhosted.org/packages/0a/fd/71b349b9def426cc73813dbd0f33e266de77305e337c8c12bfb0a2a82bfb/propcache-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "02f2d7c497cd148ebfc5b0ae32808e6c1af5922215fe38c7a06e4e722fe937c8",
"md5": "f8fefad56406c54a3e682c911d38188e",
"sha256": "a7e65eb5c003a303b94aa2c3852ef130230ec79e349632d030e9571b87c4698c"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "f8fefad56406c54a3e682c911d38188e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 195560,
"upload_time": "2024-12-01T18:27:26",
"upload_time_iso_8601": "2024-12-01T18:27:26.170603Z",
"url": "https://files.pythonhosted.org/packages/02/f2/d7c497cd148ebfc5b0ae32808e6c1af5922215fe38c7a06e4e722fe937c8/propcache-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bb57f37041bbe5e0dfed80a3f6be2612a3a75b9cfe2652abf2c99bef3455bbad",
"md5": "bfb5fb944c7820b8e98bb80e82a9c4ab",
"sha256": "999779addc413181912e984b942fbcc951be1f5b3663cd80b2687758f434c583"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "bfb5fb944c7820b8e98bb80e82a9c4ab",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 196895,
"upload_time": "2024-12-01T18:27:28",
"upload_time_iso_8601": "2024-12-01T18:27:28.040352Z",
"url": "https://files.pythonhosted.org/packages/bb/57/f37041bbe5e0dfed80a3f6be2612a3a75b9cfe2652abf2c99bef3455bbad/propcache-0.2.1-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8336ae3cc3e4f310bff2f064e3d2ed5558935cc7778d6f827dce74dcfa125304",
"md5": "bcca9c4fbfbd54e3c502066a5e749b05",
"sha256": "19a0f89a7bb9d8048d9c4370c9c543c396e894c76be5525f5e1ad287f1750ddf"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp310-cp310-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "bcca9c4fbfbd54e3c502066a5e749b05",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 207124,
"upload_time": "2024-12-01T18:27:29",
"upload_time_iso_8601": "2024-12-01T18:27:29.976029Z",
"url": "https://files.pythonhosted.org/packages/83/36/ae3cc3e4f310bff2f064e3d2ed5558935cc7778d6f827dce74dcfa125304/propcache-0.2.1-cp310-cp310-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8cc4811b9f311f10ce9d31a32ff14ce58500458443627e4df4ae9c264defba7f",
"md5": "e0300f9cbb7955774fe7e0d3448bf1cd",
"sha256": "1ac2f5fe02fa75f56e1ad473f1175e11f475606ec9bd0be2e78e4734ad575034"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp310-cp310-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "e0300f9cbb7955774fe7e0d3448bf1cd",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 210442,
"upload_time": "2024-12-01T18:27:32",
"upload_time_iso_8601": "2024-12-01T18:27:32.044548Z",
"url": "https://files.pythonhosted.org/packages/8c/c4/811b9f311f10ce9d31a32ff14ce58500458443627e4df4ae9c264defba7f/propcache-0.2.1-cp310-cp310-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "18dda1670d483a61ecac0d7fc4305d91caaac7a8fc1b200ea3965a01cf03bced",
"md5": "62529dbaa9c0d8f4a4c7e2ac44254def",
"sha256": "574faa3b79e8ebac7cb1d7930f51184ba1ccf69adfdec53a12f319a06030a68b"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "62529dbaa9c0d8f4a4c7e2ac44254def",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 203219,
"upload_time": "2024-12-01T18:27:34",
"upload_time_iso_8601": "2024-12-01T18:27:34.129322Z",
"url": "https://files.pythonhosted.org/packages/18/dd/a1670d483a61ecac0d7fc4305d91caaac7a8fc1b200ea3965a01cf03bced/propcache-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f92d30ced5afde41b099b2dc0c6573b66b45d16d73090e85655f1a30c5a24e07",
"md5": "4187c910c6a90581e21cfda5fb247ecf",
"sha256": "03ff9d3f665769b2a85e6157ac8b439644f2d7fd17615a82fa55739bc97863f4"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "4187c910c6a90581e21cfda5fb247ecf",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 40313,
"upload_time": "2024-12-01T18:27:35",
"upload_time_iso_8601": "2024-12-01T18:27:35.648331Z",
"url": "https://files.pythonhosted.org/packages/f9/2d/30ced5afde41b099b2dc0c6573b66b45d16d73090e85655f1a30c5a24e07/propcache-0.2.1-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2384bd9b207ac80da237af77aa6e153b08ffa83264b1c7882495984fcbfcf85c",
"md5": "025e2a9fe128d818988458b7f8aef233",
"sha256": "2d3af2e79991102678f53e0dbf4c35de99b6b8b58f29a27ca0325816364caaba"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "025e2a9fe128d818988458b7f8aef233",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.9",
"size": 44428,
"upload_time": "2024-12-01T18:27:37",
"upload_time_iso_8601": "2024-12-01T18:27:37.608610Z",
"url": "https://files.pythonhosted.org/packages/23/84/bd9b207ac80da237af77aa6e153b08ffa83264b1c7882495984fcbfcf85c/propcache-0.2.1-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bc0f2913b6791ebefb2b25b4efd4bb2299c985e09786b9f5b19184a88e5778dd",
"md5": "3165859cfc82faf4d1bcd54ffd5d26af",
"sha256": "1ffc3cca89bb438fb9c95c13fc874012f7b9466b89328c3c8b1aa93cdcfadd16"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "3165859cfc82faf4d1bcd54ffd5d26af",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 79297,
"upload_time": "2024-12-01T18:27:39",
"upload_time_iso_8601": "2024-12-01T18:27:39.425715Z",
"url": "https://files.pythonhosted.org/packages/bc/0f/2913b6791ebefb2b25b4efd4bb2299c985e09786b9f5b19184a88e5778dd/propcache-0.2.1-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cf73af2053aeccd40b05d6e19058419ac77674daecdd32478088b79375b9ab54",
"md5": "fc99cc590fa4ea8fe7637fcc74f21350",
"sha256": "f174bbd484294ed9fdf09437f889f95807e5f229d5d93588d34e92106fbf6717"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "fc99cc590fa4ea8fe7637fcc74f21350",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 45611,
"upload_time": "2024-12-01T18:27:40",
"upload_time_iso_8601": "2024-12-01T18:27:40.944145Z",
"url": "https://files.pythonhosted.org/packages/cf/73/af2053aeccd40b05d6e19058419ac77674daecdd32478088b79375b9ab54/propcache-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3c098386115ba7775ea3b9537730e8cf718d83bbf95bffe30757ccf37ec4e5da",
"md5": "9ac0a711e01690cb71809b8d7365c10f",
"sha256": "70693319e0b8fd35dd863e3e29513875eb15c51945bf32519ef52927ca883bc3"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "9ac0a711e01690cb71809b8d7365c10f",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 45146,
"upload_time": "2024-12-01T18:27:42",
"upload_time_iso_8601": "2024-12-01T18:27:42.106164Z",
"url": "https://files.pythonhosted.org/packages/3c/09/8386115ba7775ea3b9537730e8cf718d83bbf95bffe30757ccf37ec4e5da/propcache-0.2.1-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "037a793aa12f0537b2e520bf09f4c6833706b63170a211ad042ca71cbf79d9cb",
"md5": "4f55555856822261a964017480ae9874",
"sha256": "b480c6a4e1138e1aa137c0079b9b6305ec6dcc1098a8ca5196283e8a49df95a9"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "4f55555856822261a964017480ae9874",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 232136,
"upload_time": "2024-12-01T18:27:43",
"upload_time_iso_8601": "2024-12-01T18:27:43.293134Z",
"url": "https://files.pythonhosted.org/packages/03/7a/793aa12f0537b2e520bf09f4c6833706b63170a211ad042ca71cbf79d9cb/propcache-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f138b921b3168d72111769f648314100558c2ea1d52eb3d1ba7ea5c4aa6f9848",
"md5": "b19cb8abff285d25af29a2de6618c959",
"sha256": "d27b84d5880f6d8aa9ae3edb253c59d9f6642ffbb2c889b78b60361eed449787"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "b19cb8abff285d25af29a2de6618c959",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 239706,
"upload_time": "2024-12-01T18:27:44",
"upload_time_iso_8601": "2024-12-01T18:27:44.916304Z",
"url": "https://files.pythonhosted.org/packages/f1/38/b921b3168d72111769f648314100558c2ea1d52eb3d1ba7ea5c4aa6f9848/propcache-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "14294636f500c69b5edea7786db3c34eb6166f3384b905665ce312a6e42c720c",
"md5": "c60a9286318860155a726008c6a33743",
"sha256": "857112b22acd417c40fa4595db2fe28ab900c8c5fe4670c7989b1c0230955465"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "c60a9286318860155a726008c6a33743",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 238531,
"upload_time": "2024-12-01T18:27:46",
"upload_time_iso_8601": "2024-12-01T18:27:46.228468Z",
"url": "https://files.pythonhosted.org/packages/14/29/4636f500c69b5edea7786db3c34eb6166f3384b905665ce312a6e42c720c/propcache-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "851401fe53580a8e1734ebb704a3482b7829a0ef4ea68d356141cf0994d9659b",
"md5": "13880ef4e8334fde060190ef2153438d",
"sha256": "cf6c4150f8c0e32d241436526f3c3f9cbd34429492abddbada2ffcff506c51af"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "13880ef4e8334fde060190ef2153438d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 231063,
"upload_time": "2024-12-01T18:27:47",
"upload_time_iso_8601": "2024-12-01T18:27:47.720110Z",
"url": "https://files.pythonhosted.org/packages/85/14/01fe53580a8e1734ebb704a3482b7829a0ef4ea68d356141cf0994d9659b/propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "335c1d961299f3c3b8438301ccfbff0143b69afcc30c05fa28673cface692305",
"md5": "e69aa5f98a2cd353c8c66e41be0ec930",
"sha256": "66d4cfda1d8ed687daa4bc0274fcfd5267873db9a5bc0418c2da19273040eeb7"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e69aa5f98a2cd353c8c66e41be0ec930",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 220134,
"upload_time": "2024-12-01T18:27:49",
"upload_time_iso_8601": "2024-12-01T18:27:49.044684Z",
"url": "https://files.pythonhosted.org/packages/33/5c/1d961299f3c3b8438301ccfbff0143b69afcc30c05fa28673cface692305/propcache-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "00d0ed735e76db279ba67a7d3b45ba4c654e7b02bc2f8050671ec365d8665e21",
"md5": "2e2f1eeffab77c895e71e391ca65dcd4",
"sha256": "c2f992c07c0fca81655066705beae35fc95a2fa7366467366db627d9f2ee097f"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2e2f1eeffab77c895e71e391ca65dcd4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 220009,
"upload_time": "2024-12-01T18:27:50",
"upload_time_iso_8601": "2024-12-01T18:27:50.343565Z",
"url": "https://files.pythonhosted.org/packages/00/d0/ed735e76db279ba67a7d3b45ba4c654e7b02bc2f8050671ec365d8665e21/propcache-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7590ee8fab7304ad6533872fee982cfff5a53b63d095d78140827d93de22e2d4",
"md5": "39e7fc8889acfcb6fa8cbe2b7baf085b",
"sha256": "4a571d97dbe66ef38e472703067021b1467025ec85707d57e78711c085984e54"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "39e7fc8889acfcb6fa8cbe2b7baf085b",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 212199,
"upload_time": "2024-12-01T18:27:52",
"upload_time_iso_8601": "2024-12-01T18:27:52.389756Z",
"url": "https://files.pythonhosted.org/packages/75/90/ee8fab7304ad6533872fee982cfff5a53b63d095d78140827d93de22e2d4/propcache-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ebec977ffaf1664f82e90737275873461695d4c9407d52abc2f3c3e24716da13",
"md5": "81c430ada8bfe06443c11fefd21dc007",
"sha256": "bb6178c241278d5fe853b3de743087be7f5f4c6f7d6d22a3b524d323eecec505"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "81c430ada8bfe06443c11fefd21dc007",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 214827,
"upload_time": "2024-12-01T18:27:54",
"upload_time_iso_8601": "2024-12-01T18:27:54.423675Z",
"url": "https://files.pythonhosted.org/packages/eb/ec/977ffaf1664f82e90737275873461695d4c9407d52abc2f3c3e24716da13/propcache-0.2.1-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5748031fb87ab6081764054821a71b71942161619549396224cbb242922525e8",
"md5": "9d38480dbc64de8805133cba990cff6d",
"sha256": "ad1af54a62ffe39cf34db1aa6ed1a1873bd548f6401db39d8e7cd060b9211f82"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp311-cp311-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "9d38480dbc64de8805133cba990cff6d",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 228009,
"upload_time": "2024-12-01T18:27:55",
"upload_time_iso_8601": "2024-12-01T18:27:55.639939Z",
"url": "https://files.pythonhosted.org/packages/57/48/031fb87ab6081764054821a71b71942161619549396224cbb242922525e8/propcache-0.2.1-cp311-cp311-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1a06ef1390f2524850838f2390421b23a8b298f6ce3396a7cc6d39dedd4047b0",
"md5": "3241f320c6d9128b1bd4dbf89f9e34ea",
"sha256": "e7048abd75fe40712005bcfc06bb44b9dfcd8e101dda2ecf2f5aa46115ad07ca"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp311-cp311-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "3241f320c6d9128b1bd4dbf89f9e34ea",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 231638,
"upload_time": "2024-12-01T18:27:57",
"upload_time_iso_8601": "2024-12-01T18:27:57.655279Z",
"url": "https://files.pythonhosted.org/packages/1a/06/ef1390f2524850838f2390421b23a8b298f6ce3396a7cc6d39dedd4047b0/propcache-0.2.1-cp311-cp311-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "382a101e6386d5a93358395da1d41642b79c1ee0f3b12e31727932b069282b1d",
"md5": "55d118a150d2afe84124b500e2e1040e",
"sha256": "160291c60081f23ee43d44b08a7e5fb76681221a8e10b3139618c5a9a291b84e"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "55d118a150d2afe84124b500e2e1040e",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 222788,
"upload_time": "2024-12-01T18:27:58",
"upload_time_iso_8601": "2024-12-01T18:27:58.917708Z",
"url": "https://files.pythonhosted.org/packages/38/2a/101e6386d5a93358395da1d41642b79c1ee0f3b12e31727932b069282b1d/propcache-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "db81786f687951d0979007e05ad9346cd357e50e3d0b0f1a1d6074df334b1bbb",
"md5": "65bd1a3bfea601c6495f077f7c02c093",
"sha256": "819ce3b883b7576ca28da3861c7e1a88afd08cc8c96908e08a3f4dd64a228034"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "65bd1a3bfea601c6495f077f7c02c093",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 40170,
"upload_time": "2024-12-01T18:28:00",
"upload_time_iso_8601": "2024-12-01T18:28:00.307824Z",
"url": "https://files.pythonhosted.org/packages/db/81/786f687951d0979007e05ad9346cd357e50e3d0b0f1a1d6074df334b1bbb/propcache-0.2.1-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cf597cc7037b295d5772eceb426358bb1b86e6cab4616d971bd74275395d100d",
"md5": "e755ca8a0b5acd5aefe192fb5f874c40",
"sha256": "edc9fc7051e3350643ad929df55c451899bb9ae6d24998a949d2e4c87fb596d3"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "e755ca8a0b5acd5aefe192fb5f874c40",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.9",
"size": 44404,
"upload_time": "2024-12-01T18:28:02",
"upload_time_iso_8601": "2024-12-01T18:28:02.129534Z",
"url": "https://files.pythonhosted.org/packages/cf/59/7cc7037b295d5772eceb426358bb1b86e6cab4616d971bd74275395d100d/propcache-0.2.1-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4c281d205fe49be8b1b4df4c50024e62480a442b1a7b818e734308bb0d17e7fb",
"md5": "5e763f40c8f1a264081104f94ef94249",
"sha256": "081a430aa8d5e8876c6909b67bd2d937bfd531b0382d3fdedb82612c618bc41a"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "5e763f40c8f1a264081104f94ef94249",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 79588,
"upload_time": "2024-12-01T18:28:03",
"upload_time_iso_8601": "2024-12-01T18:28:03.327575Z",
"url": "https://files.pythonhosted.org/packages/4c/28/1d205fe49be8b1b4df4c50024e62480a442b1a7b818e734308bb0d17e7fb/propcache-0.2.1-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "21eefc4d893f8d81cd4971affef2a6cb542b36617cd1d8ce56b406112cb80bf7",
"md5": "883e480f83b69d2a2bb9d4e1a1b2d635",
"sha256": "d2ccec9ac47cf4e04897619c0e0c1a48c54a71bdf045117d3a26f80d38ab1fb0"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "883e480f83b69d2a2bb9d4e1a1b2d635",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 45825,
"upload_time": "2024-12-01T18:28:06",
"upload_time_iso_8601": "2024-12-01T18:28:06.780793Z",
"url": "https://files.pythonhosted.org/packages/21/ee/fc4d893f8d81cd4971affef2a6cb542b36617cd1d8ce56b406112cb80bf7/propcache-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4adebbe712f94d088da1d237c35d735f675e494a816fd6f54e9db2f61ef4d03f",
"md5": "5c63f326d8d5fc20b988c05ea27019a8",
"sha256": "14d86fe14b7e04fa306e0c43cdbeebe6b2c2156a0c9ce56b815faacc193e320d"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "5c63f326d8d5fc20b988c05ea27019a8",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 45357,
"upload_time": "2024-12-01T18:28:08",
"upload_time_iso_8601": "2024-12-01T18:28:08.575721Z",
"url": "https://files.pythonhosted.org/packages/4a/de/bbe712f94d088da1d237c35d735f675e494a816fd6f54e9db2f61ef4d03f/propcache-0.2.1-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7f147ae06a6cf2a2f1cb382586d5a99efe66b0b3d0c6f9ac2f759e6f7af9d7cf",
"md5": "93e904d2fa22a42f8da75a5a96654e97",
"sha256": "049324ee97bb67285b49632132db351b41e77833678432be52bdd0289c0e05e4"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "93e904d2fa22a42f8da75a5a96654e97",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 241869,
"upload_time": "2024-12-01T18:28:10",
"upload_time_iso_8601": "2024-12-01T18:28:10.396525Z",
"url": "https://files.pythonhosted.org/packages/7f/14/7ae06a6cf2a2f1cb382586d5a99efe66b0b3d0c6f9ac2f759e6f7af9d7cf/propcache-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cc59227a78be960b54a41124e639e2c39e8807ac0c751c735a900e21315f8c2b",
"md5": "d1e84a59c5d1df2ef50952e70c6df6f6",
"sha256": "1cd9a1d071158de1cc1c71a26014dcdfa7dd3d5f4f88c298c7f90ad6f27bb46d"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "d1e84a59c5d1df2ef50952e70c6df6f6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 247884,
"upload_time": "2024-12-01T18:28:11",
"upload_time_iso_8601": "2024-12-01T18:28:11.746647Z",
"url": "https://files.pythonhosted.org/packages/cc/59/227a78be960b54a41124e639e2c39e8807ac0c751c735a900e21315f8c2b/propcache-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8458f62b4ffaedf88dc1b17f04d57d8536601e4e030feb26617228ef930c3279",
"md5": "9e00f31d407bd0a46ae9d3288d15b8f2",
"sha256": "98110aa363f1bb4c073e8dcfaefd3a5cea0f0834c2aab23dda657e4dab2f53b5"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "9e00f31d407bd0a46ae9d3288d15b8f2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 248486,
"upload_time": "2024-12-01T18:28:13",
"upload_time_iso_8601": "2024-12-01T18:28:13.048741Z",
"url": "https://files.pythonhosted.org/packages/84/58/f62b4ffaedf88dc1b17f04d57d8536601e4e030feb26617228ef930c3279/propcache-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1c07ebe102777a830bca91bbb93e3479cd34c2ca5d0361b83be9dbd93104865e",
"md5": "5b240d91d65b9aceed5e92308855965a",
"sha256": "647894f5ae99c4cf6bb82a1bb3a796f6e06af3caa3d32e26d2350d0e3e3faf24"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "5b240d91d65b9aceed5e92308855965a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 243649,
"upload_time": "2024-12-01T18:28:14",
"upload_time_iso_8601": "2024-12-01T18:28:14.297042Z",
"url": "https://files.pythonhosted.org/packages/1c/07/ebe102777a830bca91bbb93e3479cd34c2ca5d0361b83be9dbd93104865e/propcache-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "edbc4f7aba7f08f520376c4bb6a20b9a981a581b7f2e385fa0ec9f789bb2d362",
"md5": "a9b68daa6aff7184b6af4597a18200de",
"sha256": "bfd3223c15bebe26518d58ccf9a39b93948d3dcb3e57a20480dfdd315356baff"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "a9b68daa6aff7184b6af4597a18200de",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 229103,
"upload_time": "2024-12-01T18:28:15",
"upload_time_iso_8601": "2024-12-01T18:28:15.913864Z",
"url": "https://files.pythonhosted.org/packages/ed/bc/4f7aba7f08f520376c4bb6a20b9a981a581b7f2e385fa0ec9f789bb2d362/propcache-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fed504ac9cd4e51a57a96f78795e03c5a0ddb8f23ec098b86f92de028d7f2a6b",
"md5": "535ed40f987f15f55bb876d7e5b634be",
"sha256": "d71264a80f3fcf512eb4f18f59423fe82d6e346ee97b90625f283df56aee103f"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "535ed40f987f15f55bb876d7e5b634be",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 226607,
"upload_time": "2024-12-01T18:28:18",
"upload_time_iso_8601": "2024-12-01T18:28:18.015318Z",
"url": "https://files.pythonhosted.org/packages/fe/d5/04ac9cd4e51a57a96f78795e03c5a0ddb8f23ec098b86f92de028d7f2a6b/propcache-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e3f024060d959ea41d7a7cc7fdbf68b31852331aabda914a0c63bdb0e22e96d6",
"md5": "216b070123d234e9c0080ffb46da1af6",
"sha256": "e73091191e4280403bde6c9a52a6999d69cdfde498f1fdf629105247599b57ec"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "216b070123d234e9c0080ffb46da1af6",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 221153,
"upload_time": "2024-12-01T18:28:19",
"upload_time_iso_8601": "2024-12-01T18:28:19.937621Z",
"url": "https://files.pythonhosted.org/packages/e3/f0/24060d959ea41d7a7cc7fdbf68b31852331aabda914a0c63bdb0e22e96d6/propcache-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "77a73ac76045a077b3e4de4859a0753010765e45749bdf53bd02bc4d372da1a0",
"md5": "6d4a64fa5c3febf84a41399df88499ce",
"sha256": "3935bfa5fede35fb202c4b569bb9c042f337ca4ff7bd540a0aa5e37131659348"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "6d4a64fa5c3febf84a41399df88499ce",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 222151,
"upload_time": "2024-12-01T18:28:21",
"upload_time_iso_8601": "2024-12-01T18:28:21.186701Z",
"url": "https://files.pythonhosted.org/packages/77/a7/3ac76045a077b3e4de4859a0753010765e45749bdf53bd02bc4d372da1a0/propcache-0.2.1-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e7af5e29da6f80cebab3f5a4dcd2a3240e7f56f2c4abf51cbfcc99be34e17f0b",
"md5": "18f2c6be5f6ed2dda4cd378982ba52e4",
"sha256": "f508b0491767bb1f2b87fdfacaba5f7eddc2f867740ec69ece6d1946d29029a6"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp312-cp312-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "18f2c6be5f6ed2dda4cd378982ba52e4",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 233812,
"upload_time": "2024-12-01T18:28:22",
"upload_time_iso_8601": "2024-12-01T18:28:22.816739Z",
"url": "https://files.pythonhosted.org/packages/e7/af/5e29da6f80cebab3f5a4dcd2a3240e7f56f2c4abf51cbfcc99be34e17f0b/propcache-0.2.1-cp312-cp312-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c89ebe3ad52642cc5509eaa453e9f4b94b374d81bae3265c59d5c2d98efa1b4",
"md5": "a2d6aaf0a3c7fa5b7948062dbf64442c",
"sha256": "1672137af7c46662a1c2be1e8dc78cb6d224319aaa40271c9257d886be4363a6"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp312-cp312-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "a2d6aaf0a3c7fa5b7948062dbf64442c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 238829,
"upload_time": "2024-12-01T18:28:24",
"upload_time_iso_8601": "2024-12-01T18:28:24.071214Z",
"url": "https://files.pythonhosted.org/packages/8c/89/ebe3ad52642cc5509eaa453e9f4b94b374d81bae3265c59d5c2d98efa1b4/propcache-0.2.1-cp312-cp312-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e92f6b32f273fa02e978b7577159eae7471b3cfb88b48563b1c2578b2d7ca0bb",
"md5": "de1840652a24d75a651b7ffd14910850",
"sha256": "b74c261802d3d2b85c9df2dfb2fa81b6f90deeef63c2db9f0e029a3cac50b518"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "de1840652a24d75a651b7ffd14910850",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 230704,
"upload_time": "2024-12-01T18:28:25",
"upload_time_iso_8601": "2024-12-01T18:28:25.314950Z",
"url": "https://files.pythonhosted.org/packages/e9/2f/6b32f273fa02e978b7577159eae7471b3cfb88b48563b1c2578b2d7ca0bb/propcache-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5c2ef40ae6ff5624a5f77edd7b8359b208b5455ea113f68309e2b00a2e1426b6",
"md5": "566713e5242fbe16e4db27f4de9a81da",
"sha256": "d09c333d36c1409d56a9d29b3a1b800a42c76a57a5a8907eacdbce3f18768246"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "566713e5242fbe16e4db27f4de9a81da",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 40050,
"upload_time": "2024-12-01T18:28:26",
"upload_time_iso_8601": "2024-12-01T18:28:26.617477Z",
"url": "https://files.pythonhosted.org/packages/5c/2e/f40ae6ff5624a5f77edd7b8359b208b5455ea113f68309e2b00a2e1426b6/propcache-0.2.1-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3b77a92c3ef994e47180862b9d7d11e37624fb1c00a16d61faf55115d970628b",
"md5": "b93413ac4040212f8f87f11031049ccb",
"sha256": "c214999039d4f2a5b2073ac506bba279945233da8c786e490d411dfc30f855c1"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "b93413ac4040212f8f87f11031049ccb",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.9",
"size": 44117,
"upload_time": "2024-12-01T18:28:27",
"upload_time_iso_8601": "2024-12-01T18:28:27.643734Z",
"url": "https://files.pythonhosted.org/packages/3b/77/a92c3ef994e47180862b9d7d11e37624fb1c00a16d61faf55115d970628b/propcache-0.2.1-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0f2a329e0547cf2def8857157f9477669043e75524cc3e6251cef332b3ff256f",
"md5": "83d654f0a10a4f05e85fec6fc684cd12",
"sha256": "aca405706e0b0a44cc6bfd41fbe89919a6a56999157f6de7e182a990c36e37bc"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "83d654f0a10a4f05e85fec6fc684cd12",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 77002,
"upload_time": "2024-12-01T18:28:29",
"upload_time_iso_8601": "2024-12-01T18:28:29.025205Z",
"url": "https://files.pythonhosted.org/packages/0f/2a/329e0547cf2def8857157f9477669043e75524cc3e6251cef332b3ff256f/propcache-0.2.1-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "122dc4df5415e2382f840dc2ecbca0eeb2293024bc28e57a80392f2012b4708c",
"md5": "fc52cf5399b10b846e7500345521df27",
"sha256": "12d1083f001ace206fe34b6bdc2cb94be66d57a850866f0b908972f90996b3e9"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "fc52cf5399b10b846e7500345521df27",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 44639,
"upload_time": "2024-12-01T18:28:30",
"upload_time_iso_8601": "2024-12-01T18:28:30.199643Z",
"url": "https://files.pythonhosted.org/packages/12/2d/c4df5415e2382f840dc2ecbca0eeb2293024bc28e57a80392f2012b4708c/propcache-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d05a21aaa4ea2f326edaa4e240959ac8b8386ea31dedfdaa636a3544d9e7a408",
"md5": "0b5f33552c8b5e40a86f3e65b4be7b9f",
"sha256": "d93f3307ad32a27bda2e88ec81134b823c240aa3abb55821a8da553eed8d9439"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "0b5f33552c8b5e40a86f3e65b4be7b9f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 44049,
"upload_time": "2024-12-01T18:28:31",
"upload_time_iso_8601": "2024-12-01T18:28:31.308088Z",
"url": "https://files.pythonhosted.org/packages/d0/5a/21aaa4ea2f326edaa4e240959ac8b8386ea31dedfdaa636a3544d9e7a408/propcache-0.2.1-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4e3e021b6cd86c0acc90d74784ccbb66808b0bd36067a1bf3e2deb0f3845f618",
"md5": "b13cf50bd442d60fbe98f0d421cb8ecb",
"sha256": "ba278acf14471d36316159c94a802933d10b6a1e117b8554fe0d0d9b75c9d536"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "b13cf50bd442d60fbe98f0d421cb8ecb",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 224819,
"upload_time": "2024-12-01T18:28:32",
"upload_time_iso_8601": "2024-12-01T18:28:32.755806Z",
"url": "https://files.pythonhosted.org/packages/4e/3e/021b6cd86c0acc90d74784ccbb66808b0bd36067a1bf3e2deb0f3845f618/propcache-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3c57c2fdeed1b3b8918b1770a133ba5c43ad3d78e18285b0c06364861ef5cc38",
"md5": "18df92c722cf588f8c61ce3bade00125",
"sha256": "4e6281aedfca15301c41f74d7005e6e3f4ca143584ba696ac69df4f02f40d629"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "18df92c722cf588f8c61ce3bade00125",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 229625,
"upload_time": "2024-12-01T18:28:34",
"upload_time_iso_8601": "2024-12-01T18:28:34.083804Z",
"url": "https://files.pythonhosted.org/packages/3c/57/c2fdeed1b3b8918b1770a133ba5c43ad3d78e18285b0c06364861ef5cc38/propcache-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9d8170d4ff57bf2877b5780b466471bebf5892f851a7e2ca0ae7ffd728220281",
"md5": "618d0acddbd80ce2025acb132b6fe665",
"sha256": "5b750a8e5a1262434fb1517ddf64b5de58327f1adc3524a5e44c2ca43305eb0b"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "618d0acddbd80ce2025acb132b6fe665",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 232934,
"upload_time": "2024-12-01T18:28:35",
"upload_time_iso_8601": "2024-12-01T18:28:35.434918Z",
"url": "https://files.pythonhosted.org/packages/9d/81/70d4ff57bf2877b5780b466471bebf5892f851a7e2ca0ae7ffd728220281/propcache-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3cb9bb51ea95d73b3fb4100cb95adbd4e1acaf2cbb1fd1083f5468eeb4a099a8",
"md5": "ceb4d0b9b538d86403a0e6c9a1d6259c",
"sha256": "bf72af5e0fb40e9babf594308911436c8efde3cb5e75b6f206c34ad18be5c052"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "ceb4d0b9b538d86403a0e6c9a1d6259c",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 227361,
"upload_time": "2024-12-01T18:28:36",
"upload_time_iso_8601": "2024-12-01T18:28:36.777204Z",
"url": "https://files.pythonhosted.org/packages/3c/b9/bb51ea95d73b3fb4100cb95adbd4e1acaf2cbb1fd1083f5468eeb4a099a8/propcache-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f1203c6d696cd6fd70b29445960cc803b1851a1131e7a2e4ee261ee48e002bcd",
"md5": "78f4ba94862be40db70eccbe48c330f7",
"sha256": "b2d0a12018b04f4cb820781ec0dffb5f7c7c1d2a5cd22bff7fb055a2cb19ebce"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "78f4ba94862be40db70eccbe48c330f7",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 213904,
"upload_time": "2024-12-01T18:28:38",
"upload_time_iso_8601": "2024-12-01T18:28:38.041671Z",
"url": "https://files.pythonhosted.org/packages/f1/20/3c6d696cd6fd70b29445960cc803b1851a1131e7a2e4ee261ee48e002bcd/propcache-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a1cb1593bfc5ac6d40c010fa823f128056d6bc25b667f5393781e37d62f12005",
"md5": "b088137eefcc3997014622c4285605a8",
"sha256": "e800776a79a5aabdb17dcc2346a7d66d0777e942e4cd251defeb084762ecd17d"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "b088137eefcc3997014622c4285605a8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 212632,
"upload_time": "2024-12-01T18:28:39",
"upload_time_iso_8601": "2024-12-01T18:28:39.401021Z",
"url": "https://files.pythonhosted.org/packages/a1/cb/1593bfc5ac6d40c010fa823f128056d6bc25b667f5393781e37d62f12005/propcache-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6d5ce95617e222be14a34c709442a0ec179f3207f8a2b900273720501a70ec5e",
"md5": "799c1eddbf81df8730d47c5fb339d263",
"sha256": "4160d9283bd382fa6c0c2b5e017acc95bc183570cd70968b9202ad6d8fc48dce"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "799c1eddbf81df8730d47c5fb339d263",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 207897,
"upload_time": "2024-12-01T18:28:40",
"upload_time_iso_8601": "2024-12-01T18:28:40.996735Z",
"url": "https://files.pythonhosted.org/packages/6d/5c/e95617e222be14a34c709442a0ec179f3207f8a2b900273720501a70ec5e/propcache-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e3b56c5ab3dc00f6375fbcdeefdede5adf9bee94f1fab04adc8db118f0f9e25",
"md5": "b42350718a6c530eb48ec8d3db8ef65f",
"sha256": "30b43e74f1359353341a7adb783c8f1b1c676367b011709f466f42fda2045e95"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "b42350718a6c530eb48ec8d3db8ef65f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 208118,
"upload_time": "2024-12-01T18:28:42",
"upload_time_iso_8601": "2024-12-01T18:28:42.380574Z",
"url": "https://files.pythonhosted.org/packages/8e/3b/56c5ab3dc00f6375fbcdeefdede5adf9bee94f1fab04adc8db118f0f9e25/propcache-0.2.1-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8625d7ef738323fbc6ebcbce33eb2a19c5e07a89a3df2fded206065bd5e868a9",
"md5": "424e2a822c832e96f1ba654c4f00df8b",
"sha256": "58791550b27d5488b1bb52bc96328456095d96206a250d28d874fafe11b3dfaf"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp313-cp313-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "424e2a822c832e96f1ba654c4f00df8b",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 217851,
"upload_time": "2024-12-01T18:28:43",
"upload_time_iso_8601": "2024-12-01T18:28:43.655579Z",
"url": "https://files.pythonhosted.org/packages/86/25/d7ef738323fbc6ebcbce33eb2a19c5e07a89a3df2fded206065bd5e868a9/propcache-0.2.1-cp313-cp313-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b377763e6cef1852cf1ba740590364ec50309b89d1c818e3256d3929eb92fabf",
"md5": "2ffea942cd710143f831c29a075fc48a",
"sha256": "0f022d381747f0dfe27e99d928e31bc51a18b65bb9e481ae0af1380a6725dd1f"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp313-cp313-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "2ffea942cd710143f831c29a075fc48a",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 222630,
"upload_time": "2024-12-01T18:28:45",
"upload_time_iso_8601": "2024-12-01T18:28:45.663315Z",
"url": "https://files.pythonhosted.org/packages/b3/77/763e6cef1852cf1ba740590364ec50309b89d1c818e3256d3929eb92fabf/propcache-0.2.1-cp313-cp313-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4fe90f86be33602089c701696fbed8d8c4c07b6ee9605c5b7536fd27ed540c5b",
"md5": "f7ef04e0cf8a3e8cba9a9c1e271f633e",
"sha256": "297878dc9d0a334358f9b608b56d02e72899f3b8499fc6044133f0d319e2ec30"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "f7ef04e0cf8a3e8cba9a9c1e271f633e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 216269,
"upload_time": "2024-12-01T18:28:47",
"upload_time_iso_8601": "2024-12-01T18:28:47.602222Z",
"url": "https://files.pythonhosted.org/packages/4f/e9/0f86be33602089c701696fbed8d8c4c07b6ee9605c5b7536fd27ed540c5b/propcache-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cc025ac83217d522394b6a2e81a2e888167e7ca629ef6569a3f09852d6dcb01a",
"md5": "c3890a0f711bae705f1d60984e7525f4",
"sha256": "ddfab44e4489bd79bda09d84c430677fc7f0a4939a73d2bba3073036f487a0a6"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "c3890a0f711bae705f1d60984e7525f4",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 39472,
"upload_time": "2024-12-01T18:28:48",
"upload_time_iso_8601": "2024-12-01T18:28:48.983890Z",
"url": "https://files.pythonhosted.org/packages/cc/02/5ac83217d522394b6a2e81a2e888167e7ca629ef6569a3f09852d6dcb01a/propcache-0.2.1-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f433d6f5420252a36034bc8a3a01171bc55b4bff5df50d1c63d9caa50693662f",
"md5": "4ab5a1d5c40e5f5168733f36eee47eca",
"sha256": "556fc6c10989f19a179e4321e5d678db8eb2924131e64652a51fe83e4c3db0e1"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "4ab5a1d5c40e5f5168733f36eee47eca",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.9",
"size": 43363,
"upload_time": "2024-12-01T18:28:50",
"upload_time_iso_8601": "2024-12-01T18:28:50.025258Z",
"url": "https://files.pythonhosted.org/packages/f4/33/d6f5420252a36034bc8a3a01171bc55b4bff5df50d1c63d9caa50693662f/propcache-0.2.1-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0a086ab7f65240a16fa01023125e65258acf7e4884f483f267cdd6fcc48f37db",
"md5": "d5bede7c2f18ee2dc1784810b0d95b17",
"sha256": "6a9a8c34fb7bb609419a211e59da8887eeca40d300b5ea8e56af98f6fbbb1541"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "d5bede7c2f18ee2dc1784810b0d95b17",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 80403,
"upload_time": "2024-12-01T18:28:51",
"upload_time_iso_8601": "2024-12-01T18:28:51.350449Z",
"url": "https://files.pythonhosted.org/packages/0a/08/6ab7f65240a16fa01023125e65258acf7e4884f483f267cdd6fcc48f37db/propcache-0.2.1-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "34fee7180285e21b4e6dff7d311fdf22490c9146a09a02834b5232d6248c6004",
"md5": "6fd9f8e34a348701d97ef3fd0d9a15cf",
"sha256": "ae1aa1cd222c6d205853b3013c69cd04515f9d6ab6de4b0603e2e1c33221303e"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "6fd9f8e34a348701d97ef3fd0d9a15cf",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 46152,
"upload_time": "2024-12-01T18:28:52",
"upload_time_iso_8601": "2024-12-01T18:28:52.503511Z",
"url": "https://files.pythonhosted.org/packages/34/fe/e7180285e21b4e6dff7d311fdf22490c9146a09a02834b5232d6248c6004/propcache-0.2.1-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9c36aa74d884af826030ba9cee2ac109b0664beb7e9449c315c9c44db99efbb3",
"md5": "d133e65a23be28eae1e5abd8e26c9fb3",
"sha256": "accb6150ce61c9c4b7738d45550806aa2b71c7668c6942f17b0ac182b6142fd4"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "d133e65a23be28eae1e5abd8e26c9fb3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 45674,
"upload_time": "2024-12-01T18:28:53",
"upload_time_iso_8601": "2024-12-01T18:28:53.741166Z",
"url": "https://files.pythonhosted.org/packages/9c/36/aa74d884af826030ba9cee2ac109b0664beb7e9449c315c9c44db99efbb3/propcache-0.2.1-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "22596fe80a3fe7720f715f2c0f6df250dacbd7cad42832410dbd84c719c52f78",
"md5": "f553eacb35f5a25b9fd2ae465d316eb9",
"sha256": "5eee736daafa7af6d0a2dc15cc75e05c64f37fc37bafef2e00d77c14171c2097"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "f553eacb35f5a25b9fd2ae465d316eb9",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 207792,
"upload_time": "2024-12-01T18:28:54",
"upload_time_iso_8601": "2024-12-01T18:28:54.885203Z",
"url": "https://files.pythonhosted.org/packages/22/59/6fe80a3fe7720f715f2c0f6df250dacbd7cad42832410dbd84c719c52f78/propcache-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4a68584cd51dd8f4d0f5fff5b128ce0cdb257cde903898eecfb92156bbc2c780",
"md5": "45ece6bc2f1fbbc155c9b27cccbc5193",
"sha256": "f7a31fc1e1bd362874863fdeed71aed92d348f5336fd84f2197ba40c59f061bd"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "45ece6bc2f1fbbc155c9b27cccbc5193",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 223280,
"upload_time": "2024-12-01T18:28:56",
"upload_time_iso_8601": "2024-12-01T18:28:56.202115Z",
"url": "https://files.pythonhosted.org/packages/4a/68/584cd51dd8f4d0f5fff5b128ce0cdb257cde903898eecfb92156bbc2c780/propcache-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "85cb4c3528460c41e61b06ec3f970c0f89f87fa21f63acac8642ed81a886c164",
"md5": "87c49139ed7e93a4b9106bbbe8b5ceb1",
"sha256": "cba4cfa1052819d16699e1d55d18c92b6e094d4517c41dd231a8b9f87b6fa681"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "87c49139ed7e93a4b9106bbbe8b5ceb1",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 221293,
"upload_time": "2024-12-01T18:28:58",
"upload_time_iso_8601": "2024-12-01T18:28:58.180094Z",
"url": "https://files.pythonhosted.org/packages/85/cb/4c3528460c41e61b06ec3f970c0f89f87fa21f63acac8642ed81a886c164/propcache-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "69c0560e050aa6d31eeece3490d1174da508f05ab27536dfc8474af88b97160a",
"md5": "54086e6f0dcc9d08bf5ff48a28a92e87",
"sha256": "f089118d584e859c62b3da0892b88a83d611c2033ac410e929cb6754eec0ed16"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "54086e6f0dcc9d08bf5ff48a28a92e87",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 208259,
"upload_time": "2024-12-01T18:28:59",
"upload_time_iso_8601": "2024-12-01T18:28:59.543838Z",
"url": "https://files.pythonhosted.org/packages/69/c0/560e050aa6d31eeece3490d1174da508f05ab27536dfc8474af88b97160a/propcache-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0c87d6c86a77632eb1ba86a328e3313159f246e7564cb5951e05ed77555826a0",
"md5": "9025d0d974b6f8a7abb4576f0afbf029",
"sha256": "781e65134efaf88feb447e8c97a51772aa75e48b794352f94cb7ea717dedda0d"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "9025d0d974b6f8a7abb4576f0afbf029",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 198632,
"upload_time": "2024-12-01T18:29:00",
"upload_time_iso_8601": "2024-12-01T18:29:00.939770Z",
"url": "https://files.pythonhosted.org/packages/0c/87/d6c86a77632eb1ba86a328e3313159f246e7564cb5951e05ed77555826a0/propcache-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3a2b3690ea7b662dc762ab7af5f3ef0e2d7513c823d193d7b2a1b4cda472c2be",
"md5": "16c74580a87b4e34ff8c95960fa5cda8",
"sha256": "31f5af773530fd3c658b32b6bdc2d0838543de70eb9a2156c03e410f7b0d3aae"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "16c74580a87b4e34ff8c95960fa5cda8",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 203516,
"upload_time": "2024-12-01T18:29:02",
"upload_time_iso_8601": "2024-12-01T18:29:02.866381Z",
"url": "https://files.pythonhosted.org/packages/3a/2b/3690ea7b662dc762ab7af5f3ef0e2d7513c823d193d7b2a1b4cda472c2be/propcache-0.2.1-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4db5afe716c16c23c77657185c257a41918b83e03993b6ccdfa748e5e7d328e9",
"md5": "27108d13b4b30859cc53e639631689a3",
"sha256": "a7a078f5d37bee6690959c813977da5291b24286e7b962e62a94cec31aa5188b"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "27108d13b4b30859cc53e639631689a3",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 199402,
"upload_time": "2024-12-01T18:29:04",
"upload_time_iso_8601": "2024-12-01T18:29:04.157320Z",
"url": "https://files.pythonhosted.org/packages/4d/b5/afe716c16c23c77657185c257a41918b83e03993b6ccdfa748e5e7d328e9/propcache-0.2.1-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a4c02d2df3aa7f8660d0d4cc4f1e00490c48d5958da57082e70dea7af366f876",
"md5": "a40b1dc4b9345c7b1e2f4839633a75eb",
"sha256": "cea7daf9fc7ae6687cf1e2c049752f19f146fdc37c2cc376e7d0032cf4f25347"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "a40b1dc4b9345c7b1e2f4839633a75eb",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 200528,
"upload_time": "2024-12-01T18:29:05",
"upload_time_iso_8601": "2024-12-01T18:29:05.485172Z",
"url": "https://files.pythonhosted.org/packages/a4/c0/2d2df3aa7f8660d0d4cc4f1e00490c48d5958da57082e70dea7af366f876/propcache-0.2.1-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "21c865ac9142f5e40c8497f7176e71d18826b09e06dd4eb401c9a4ee41aa9c74",
"md5": "cb72cf6b163e353bb8da60c893795f88",
"sha256": "8b3489ff1ed1e8315674d0775dc7d2195fb13ca17b3808721b54dbe9fd020faf"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp39-cp39-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "cb72cf6b163e353bb8da60c893795f88",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 211254,
"upload_time": "2024-12-01T18:29:06",
"upload_time_iso_8601": "2024-12-01T18:29:06.953100Z",
"url": "https://files.pythonhosted.org/packages/21/c8/65ac9142f5e40c8497f7176e71d18826b09e06dd4eb401c9a4ee41aa9c74/propcache-0.2.1-cp39-cp39-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "09e4edb70b447a1d8142df51ec7511e84aa64d7f6ce0a0fdf5eb55363cdd0935",
"md5": "6f29cc0c804e933c27571af823caed3c",
"sha256": "9403db39be1393618dd80c746cb22ccda168efce239c73af13c3763ef56ffc04"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp39-cp39-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "6f29cc0c804e933c27571af823caed3c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 214589,
"upload_time": "2024-12-01T18:29:08",
"upload_time_iso_8601": "2024-12-01T18:29:08.957448Z",
"url": "https://files.pythonhosted.org/packages/09/e4/edb70b447a1d8142df51ec7511e84aa64d7f6ce0a0fdf5eb55363cdd0935/propcache-0.2.1-cp39-cp39-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "cb02817f309ec8d8883287781d6d9390f80b14db6e6de08bc659dfe798a825c2",
"md5": "58d626de707e78dc916e3c6183f8b42c",
"sha256": "5d97151bc92d2b2578ff7ce779cdb9174337390a535953cbb9452fb65164c587"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "58d626de707e78dc916e3c6183f8b42c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 207283,
"upload_time": "2024-12-01T18:29:10",
"upload_time_iso_8601": "2024-12-01T18:29:10.286137Z",
"url": "https://files.pythonhosted.org/packages/cb/02/817f309ec8d8883287781d6d9390f80b14db6e6de08bc659dfe798a825c2/propcache-0.2.1-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "d7fe2d18612096ed2212cfef821b6fccdba5d52efc1d64511c206c5c16be28fd",
"md5": "4e84841d7ac86e9b308419ca2cff4272",
"sha256": "9caac6b54914bdf41bcc91e7eb9147d331d29235a7c967c150ef5df6464fd1bb"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "4e84841d7ac86e9b308419ca2cff4272",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 40866,
"upload_time": "2024-12-01T18:29:12",
"upload_time_iso_8601": "2024-12-01T18:29:12.363262Z",
"url": "https://files.pythonhosted.org/packages/d7/fe/2d18612096ed2212cfef821b6fccdba5d52efc1d64511c206c5c16be28fd/propcache-0.2.1-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "242eb5134802e7b57c403c7b73c7a39374e7a6b7f128d1968b4a4b4c0b700250",
"md5": "4988f8cc128174f120a768f8a52ceb09",
"sha256": "92fc4500fcb33899b05ba73276dfb684a20d31caa567b7cb5252d48f896a91b1"
},
"downloads": -1,
"filename": "propcache-0.2.1-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "4988f8cc128174f120a768f8a52ceb09",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.9",
"size": 44975,
"upload_time": "2024-12-01T18:29:13",
"upload_time_iso_8601": "2024-12-01T18:29:13.516467Z",
"url": "https://files.pythonhosted.org/packages/24/2e/b5134802e7b57c403c7b73c7a39374e7a6b7f128d1968b4a4b4c0b700250/propcache-0.2.1-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "41b6c5319caea262f4821995dca2107483b94a3345d4607ad797c76cb9c36bcc",
"md5": "795e038172946c0a09cb7929c3b35381",
"sha256": "52277518d6aae65536e9cea52d4e7fd2f7a66f4aa2d30ed3f2fcea620ace3c54"
},
"downloads": -1,
"filename": "propcache-0.2.1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "795e038172946c0a09cb7929c3b35381",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 11818,
"upload_time": "2024-12-01T18:29:14",
"upload_time_iso_8601": "2024-12-01T18:29:14.716727Z",
"url": "https://files.pythonhosted.org/packages/41/b6/c5319caea262f4821995dca2107483b94a3345d4607ad797c76cb9c36bcc/propcache-0.2.1-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "20c82a13f78d82211490855b2fb303b6721348d0787fdd9a12ac46d99d3acde1",
"md5": "c642caac1415818205011277008142ea",
"sha256": "3f77ce728b19cb537714499928fe800c3dda29e8d9428778fc7c186da4c09a64"
},
"downloads": -1,
"filename": "propcache-0.2.1.tar.gz",
"has_sig": false,
"md5_digest": "c642caac1415818205011277008142ea",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 41735,
"upload_time": "2024-12-01T18:29:16",
"upload_time_iso_8601": "2024-12-01T18:29:16.437094Z",
"url": "https://files.pythonhosted.org/packages/20/c8/2a13f78d82211490855b2fb303b6721348d0787fdd9a12ac46d99d3acde1/propcache-0.2.1.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-01 18:29:16",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "aio-libs",
"github_project": "propcache",
"travis_ci": false,
"coveralls": true,
"github_actions": true,
"lcname": "propcache"
}