propcache
=========
The module provides a fast implementation of cached properties for Python 3.8+.
.. 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.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.8",
"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/a9/4d/5e5a60b78dbc1d464f8a7bbaeb30957257afdc8512cbb9dfd5659304f5cd/propcache-0.2.0.tar.gz",
"platform": null,
"description": "propcache\n=========\n\nThe module provides a fast implementation of cached properties for Python 3.8+.\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.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.0",
"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": "3a081963dfb932b8d74d5b09098507b37e9b96c835ba89ab8aad35aa330f4ff3",
"md5": "e86b981b4f7b6beacf5529d8c74f2f52",
"sha256": "c5869b8fd70b81835a6f187c5fdbe67917a04d7e52b6e7cc4e5fe39d55c39d58"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp310-cp310-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "e86b981b4f7b6beacf5529d8c74f2f52",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 80712,
"upload_time": "2024-10-07T12:54:02",
"upload_time_iso_8601": "2024-10-07T12:54:02.193663Z",
"url": "https://files.pythonhosted.org/packages/3a/08/1963dfb932b8d74d5b09098507b37e9b96c835ba89ab8aad35aa330f4ff3/propcache-0.2.0-cp310-cp310-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e65949072aba9bf8a8ed958e576182d46f038e595b17ff7408bc7e8807e721e1",
"md5": "6d512fe4e76bfb50f6b91e64ed4ddfc4",
"sha256": "952e0d9d07609d9c5be361f33b0d6d650cd2bae393aabb11d9b719364521984b"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "6d512fe4e76bfb50f6b91e64ed4ddfc4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 46301,
"upload_time": "2024-10-07T12:54:03",
"upload_time_iso_8601": "2024-10-07T12:54:03.576267Z",
"url": "https://files.pythonhosted.org/packages/e6/59/49072aba9bf8a8ed958e576182d46f038e595b17ff7408bc7e8807e721e1/propcache-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "33a26b1978c2e0d80a678e2c483f45e5443c15fe5d32c483902e92a073314ef1",
"md5": "e7d59cac44027a3deff908d5d7f119c4",
"sha256": "33ac8f098df0585c0b53009f039dfd913b38c1d2edafed0cedcc0c32a05aa110"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp310-cp310-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "e7d59cac44027a3deff908d5d7f119c4",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 45581,
"upload_time": "2024-10-07T12:54:05",
"upload_time_iso_8601": "2024-10-07T12:54:05.415371Z",
"url": "https://files.pythonhosted.org/packages/33/a2/6b1978c2e0d80a678e2c483f45e5443c15fe5d32c483902e92a073314ef1/propcache-0.2.0-cp310-cp310-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "439555acc9adff8f997c7572f23d41993042290dfb29e404cdadb07039a4386f",
"md5": "195f31da67efc4b4f14a675196891c15",
"sha256": "97e48e8875e6c13909c800fa344cd54cc4b2b0db1d5f911f840458a500fde2c2"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "195f31da67efc4b4f14a675196891c15",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 208659,
"upload_time": "2024-10-07T12:54:06",
"upload_time_iso_8601": "2024-10-07T12:54:06.742682Z",
"url": "https://files.pythonhosted.org/packages/43/95/55acc9adff8f997c7572f23d41993042290dfb29e404cdadb07039a4386f/propcache-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bd2cef7371ff715e6cd19ea03fdd5637ecefbaa0752fee5b0f2fe8ea8407ee01",
"md5": "abbf1a554d1935ed7a90d03fa7c14157",
"sha256": "388f3217649d6d59292b722d940d4d2e1e6a7003259eb835724092a1cca0203a"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "abbf1a554d1935ed7a90d03fa7c14157",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 222613,
"upload_time": "2024-10-07T12:54:08",
"upload_time_iso_8601": "2024-10-07T12:54:08.204350Z",
"url": "https://files.pythonhosted.org/packages/bd/2c/ef7371ff715e6cd19ea03fdd5637ecefbaa0752fee5b0f2fe8ea8407ee01/propcache-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "5e1cfef251f79fd4971a413fa4b1ae369ee07727b4cc2c71e2d90dfcde664fbb",
"md5": "57af245b310311196d6c03a1f2f84e36",
"sha256": "f571aea50ba5623c308aa146eb650eebf7dbe0fd8c5d946e28343cb3b5aad577"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "57af245b310311196d6c03a1f2f84e36",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 221067,
"upload_time": "2024-10-07T12:54:10",
"upload_time_iso_8601": "2024-10-07T12:54:10.449543Z",
"url": "https://files.pythonhosted.org/packages/5e/1c/fef251f79fd4971a413fa4b1ae369ee07727b4cc2c71e2d90dfcde664fbb/propcache-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8de722e76ae6fc5a1708bdce92bdb49de5ebe89a173db87e4ef597d6bbe9145a",
"md5": "f7b22fef971ffbb132c1e36969474286",
"sha256": "3dfafb44f7bb35c0c06eda6b2ab4bfd58f02729e7c4045e179f9a861b07c9850"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "f7b22fef971ffbb132c1e36969474286",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 208920,
"upload_time": "2024-10-07T12:54:11",
"upload_time_iso_8601": "2024-10-07T12:54:11.903827Z",
"url": "https://files.pythonhosted.org/packages/8d/e7/22e76ae6fc5a1708bdce92bdb49de5ebe89a173db87e4ef597d6bbe9145a/propcache-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "043ef10aa562781bcd8a1e0b37683a23bef32bdbe501d9cc7e76969becaac30d",
"md5": "6341c1a0ca6cbf4c032cebeb045100e2",
"sha256": "a3ebe9a75be7ab0b7da2464a77bb27febcb4fab46a34f9288f39d74833db7f61"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "6341c1a0ca6cbf4c032cebeb045100e2",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 200050,
"upload_time": "2024-10-07T12:54:13",
"upload_time_iso_8601": "2024-10-07T12:54:13.292987Z",
"url": "https://files.pythonhosted.org/packages/04/3e/f10aa562781bcd8a1e0b37683a23bef32bdbe501d9cc7e76969becaac30d/propcache-0.2.0-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": "d0988ac69f638358c5f2a0043809c917802f96f86026e86726b65006830f3dc6",
"md5": "f216f9fc413e8720f5b9bc792404d1fe",
"sha256": "d2f0d0f976985f85dfb5f3d685697ef769faa6b71993b46b295cdbbd6be8cc37"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f216f9fc413e8720f5b9bc792404d1fe",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 202346,
"upload_time": "2024-10-07T12:54:14",
"upload_time_iso_8601": "2024-10-07T12:54:14.644755Z",
"url": "https://files.pythonhosted.org/packages/d0/98/8ac69f638358c5f2a0043809c917802f96f86026e86726b65006830f3dc6/propcache-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ee784acfc5544a5075d8e660af4d4e468d60c418bba93203d1363848444511ad",
"md5": "3c1cecfa74fb4e7500c56292e9a418d6",
"sha256": "a3dc1a4b165283bd865e8f8cb5f0c64c05001e0718ed06250d8cac9bec115b48"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "3c1cecfa74fb4e7500c56292e9a418d6",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 199750,
"upload_time": "2024-10-07T12:54:16",
"upload_time_iso_8601": "2024-10-07T12:54:16.286909Z",
"url": "https://files.pythonhosted.org/packages/ee/78/4acfc5544a5075d8e660af4d4e468d60c418bba93203d1363848444511ad/propcache-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a28f90ada38448ca2e9cf25adc2fe05d08358bda1b9446f54a606ea38f41798b",
"md5": "4d60cf6072a71bc65eb2efd035460a8e",
"sha256": "9e0f07b42d2a50c7dd2d8675d50f7343d998c64008f1da5fef888396b7f84630"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp310-cp310-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "4d60cf6072a71bc65eb2efd035460a8e",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 201279,
"upload_time": "2024-10-07T12:54:17",
"upload_time_iso_8601": "2024-10-07T12:54:17.752749Z",
"url": "https://files.pythonhosted.org/packages/a2/8f/90ada38448ca2e9cf25adc2fe05d08358bda1b9446f54a606ea38f41798b/propcache-0.2.0-cp310-cp310-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "08310e299f650f73903da851f50f576ef09bfffc8e1519e6a2f1e5ed2d19c591",
"md5": "0a2fd2f13c98c513ba7d6058bea8ee10",
"sha256": "e63e3e1e0271f374ed489ff5ee73d4b6e7c60710e1f76af5f0e1a6117cd26394"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "0a2fd2f13c98c513ba7d6058bea8ee10",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 211035,
"upload_time": "2024-10-07T12:54:19",
"upload_time_iso_8601": "2024-10-07T12:54:19.109689Z",
"url": "https://files.pythonhosted.org/packages/08/31/0e299f650f73903da851f50f576ef09bfffc8e1519e6a2f1e5ed2d19c591/propcache-0.2.0-cp310-cp310-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "853ee356cc6b09064bff1c06d0b2413593e7c925726f0139bc7acef8a21e87a8",
"md5": "90fcf16fa36b0d18764e59d0b3a6aedc",
"sha256": "56bb5c98f058a41bb58eead194b4db8c05b088c93d94d5161728515bd52b052b"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp310-cp310-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "90fcf16fa36b0d18764e59d0b3a6aedc",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 215565,
"upload_time": "2024-10-07T12:54:20",
"upload_time_iso_8601": "2024-10-07T12:54:20.578001Z",
"url": "https://files.pythonhosted.org/packages/85/3e/e356cc6b09064bff1c06d0b2413593e7c925726f0139bc7acef8a21e87a8/propcache-0.2.0-cp310-cp310-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8b544ef7236cd657e53098bd05aa59cbc3cbf7018fba37b40eaed112c3921e51",
"md5": "d9f5ffea3aa039362c0855a8df4e20f7",
"sha256": "7665f04d0c7f26ff8bb534e1c65068409bf4687aa2534faf7104d7182debb336"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "d9f5ffea3aa039362c0855a8df4e20f7",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 207604,
"upload_time": "2024-10-07T12:54:22",
"upload_time_iso_8601": "2024-10-07T12:54:22.588452Z",
"url": "https://files.pythonhosted.org/packages/8b/54/4ef7236cd657e53098bd05aa59cbc3cbf7018fba37b40eaed112c3921e51/propcache-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "1f27d01d7799c068443ee64002f0655d82fb067496897bf74b632e28ee6a32cf",
"md5": "8267d0c2f3f4ebcfe3138832c93f7d2b",
"sha256": "7cf18abf9764746b9c8704774d8b06714bcb0a63641518a3a89c7f85cc02c2ad"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp310-cp310-win32.whl",
"has_sig": false,
"md5_digest": "8267d0c2f3f4ebcfe3138832c93f7d2b",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 40526,
"upload_time": "2024-10-07T12:54:23",
"upload_time_iso_8601": "2024-10-07T12:54:23.867354Z",
"url": "https://files.pythonhosted.org/packages/1f/27/d01d7799c068443ee64002f0655d82fb067496897bf74b632e28ee6a32cf/propcache-0.2.0-cp310-cp310-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bb446c2add5eeafb7f31ff0d25fbc005d930bea040a1364cf0f5768750ddf4d1",
"md5": "de6aad2d3d7d3c23787697a5db822059",
"sha256": "cfac69017ef97db2438efb854edf24f5a29fd09a536ff3a992b75990720cdc99"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp310-cp310-win_amd64.whl",
"has_sig": false,
"md5_digest": "de6aad2d3d7d3c23787697a5db822059",
"packagetype": "bdist_wheel",
"python_version": "cp310",
"requires_python": ">=3.8",
"size": 44958,
"upload_time": "2024-10-07T12:54:24",
"upload_time_iso_8601": "2024-10-07T12:54:24.983751Z",
"url": "https://files.pythonhosted.org/packages/bb/44/6c2add5eeafb7f31ff0d25fbc005d930bea040a1364cf0f5768750ddf4d1/propcache-0.2.0-cp310-cp310-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e01c71eec730e12aec6511e702ad0cd73c2872eccb7cad39de8ba3ba9de693ef",
"md5": "f3f0093549879d9b1a3d2024fa087fe4",
"sha256": "63f13bf09cc3336eb04a837490b8f332e0db41da66995c9fd1ba04552e516354"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp311-cp311-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "f3f0093549879d9b1a3d2024fa087fe4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 80811,
"upload_time": "2024-10-07T12:54:26",
"upload_time_iso_8601": "2024-10-07T12:54:26.165674Z",
"url": "https://files.pythonhosted.org/packages/e0/1c/71eec730e12aec6511e702ad0cd73c2872eccb7cad39de8ba3ba9de693ef/propcache-0.2.0-cp311-cp311-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "89c37e94009f9a4934c48a371632197406a8860b9f08e3f7f7d922ab69e57a41",
"md5": "53de0b233e06a58e3460c28a5813ecde",
"sha256": "608cce1da6f2672a56b24a015b42db4ac612ee709f3d29f27a00c943d9e851de"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "53de0b233e06a58e3460c28a5813ecde",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 46365,
"upload_time": "2024-10-07T12:54:28",
"upload_time_iso_8601": "2024-10-07T12:54:28.034744Z",
"url": "https://files.pythonhosted.org/packages/89/c3/7e94009f9a4934c48a371632197406a8860b9f08e3f7f7d922ab69e57a41/propcache-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c01dc700d16d1d6903aeab28372fe9999762f074b80b96a0ccc953175b858743",
"md5": "740269af4f8873b1b23a925b94814c54",
"sha256": "466c219deee4536fbc83c08d09115249db301550625c7fef1c5563a584c9bc87"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp311-cp311-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "740269af4f8873b1b23a925b94814c54",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 45602,
"upload_time": "2024-10-07T12:54:29",
"upload_time_iso_8601": "2024-10-07T12:54:29.148541Z",
"url": "https://files.pythonhosted.org/packages/c0/1d/c700d16d1d6903aeab28372fe9999762f074b80b96a0ccc953175b858743/propcache-0.2.0-cp311-cp311-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e5e4a3e96380805bf742712e39a4534689f4cddf5fa2d3a93f22e9fd8001b23",
"md5": "443febc3614b08c42499673d2114e037",
"sha256": "fc2db02409338bf36590aa985a461b2c96fce91f8e7e0f14c50c5fcc4f229016"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "443febc3614b08c42499673d2114e037",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 236161,
"upload_time": "2024-10-07T12:54:31",
"upload_time_iso_8601": "2024-10-07T12:54:31.557906Z",
"url": "https://files.pythonhosted.org/packages/2e/5e/4a3e96380805bf742712e39a4534689f4cddf5fa2d3a93f22e9fd8001b23/propcache-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a58590132481183d1436dff6e29f4fa81b891afb6cb89a7306f32ac500a25932",
"md5": "8b4c171bbe470e259500536315b6e261",
"sha256": "a6ed8db0a556343d566a5c124ee483ae113acc9a557a807d439bcecc44e7dfbb"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8b4c171bbe470e259500536315b6e261",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 244938,
"upload_time": "2024-10-07T12:54:33",
"upload_time_iso_8601": "2024-10-07T12:54:33.051171Z",
"url": "https://files.pythonhosted.org/packages/a5/85/90132481183d1436dff6e29f4fa81b891afb6cb89a7306f32ac500a25932/propcache-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4a89c893533cb45c79c970834274e2d0f6d64383ec740be631b6a0a1d2b4ddc0",
"md5": "83d21292a25c000d0d8d622c962eac68",
"sha256": "91997d9cb4a325b60d4e3f20967f8eb08dfcb32b22554d5ef78e6fd1dda743a2"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "83d21292a25c000d0d8d622c962eac68",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 243576,
"upload_time": "2024-10-07T12:54:34",
"upload_time_iso_8601": "2024-10-07T12:54:34.497907Z",
"url": "https://files.pythonhosted.org/packages/4a/89/c893533cb45c79c970834274e2d0f6d64383ec740be631b6a0a1d2b4ddc0/propcache-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8c5698c2054c8526331a05f205bf45cbb2cda4e58e56df70e76d6a509e5d6ec6",
"md5": "8948210c1244584d7d7de84db301ba25",
"sha256": "4c7dde9e533c0a49d802b4f3f218fa9ad0a1ce21f2c2eb80d5216565202acab4"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8948210c1244584d7d7de84db301ba25",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 236011,
"upload_time": "2024-10-07T12:54:35",
"upload_time_iso_8601": "2024-10-07T12:54:35.903435Z",
"url": "https://files.pythonhosted.org/packages/8c/56/98c2054c8526331a05f205bf45cbb2cda4e58e56df70e76d6a509e5d6ec6/propcache-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2d0c8b8b9f8a6e1abd869c0fa79b907228e7abb966919047d294ef5df0d136cf",
"md5": "ab329632948e2a67e7e60401c3cace35",
"sha256": "ffcad6c564fe6b9b8916c1aefbb37a362deebf9394bd2974e9d84232e3e08504"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "ab329632948e2a67e7e60401c3cace35",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 224834,
"upload_time": "2024-10-07T12:54:37",
"upload_time_iso_8601": "2024-10-07T12:54:37.238811Z",
"url": "https://files.pythonhosted.org/packages/2d/0c/8b8b9f8a6e1abd869c0fa79b907228e7abb966919047d294ef5df0d136cf/propcache-0.2.0-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": "18bb397d05a7298b7711b90e13108db697732325cafdcd8484c894885c1bf109",
"md5": "7927abb95c0b17c4baac745bdb34aa68",
"sha256": "97a58a28bcf63284e8b4d7b460cbee1edaab24634e82059c7b8c09e65284f178"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "7927abb95c0b17c4baac745bdb34aa68",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 224946,
"upload_time": "2024-10-07T12:54:38",
"upload_time_iso_8601": "2024-10-07T12:54:38.720587Z",
"url": "https://files.pythonhosted.org/packages/18/bb/397d05a7298b7711b90e13108db697732325cafdcd8484c894885c1bf109/propcache-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "25194fc08dac19297ac58135c03770b42377be211622fd0147f015f78d47cd31",
"md5": "b6fae6b290974f62513e0b0f01bc57ae",
"sha256": "945db8ee295d3af9dbdbb698cce9bbc5c59b5c3fe328bbc4387f59a8a35f998d"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "b6fae6b290974f62513e0b0f01bc57ae",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 217280,
"upload_time": "2024-10-07T12:54:40",
"upload_time_iso_8601": "2024-10-07T12:54:40.089105Z",
"url": "https://files.pythonhosted.org/packages/25/19/4fc08dac19297ac58135c03770b42377be211622fd0147f015f78d47cd31/propcache-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7e76c79276a43df2096ce2aba07ce47576832b1174c0c480fe6b04bd70120e59",
"md5": "7764a20fbb225d9a26028c9afce64b52",
"sha256": "39e104da444a34830751715f45ef9fc537475ba21b7f1f5b0f4d71a3b60d7fe2"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp311-cp311-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "7764a20fbb225d9a26028c9afce64b52",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 220088,
"upload_time": "2024-10-07T12:54:41",
"upload_time_iso_8601": "2024-10-07T12:54:41.726176Z",
"url": "https://files.pythonhosted.org/packages/7e/76/c79276a43df2096ce2aba07ce47576832b1174c0c480fe6b04bd70120e59/propcache-0.2.0-cp311-cp311-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c39a8a8cf428a91b1336b883f09c8b884e1734c87f724d74b917129a24fe2093",
"md5": "b69058f387a5fb53acee2f354b38546a",
"sha256": "c5ecca8f9bab618340c8e848d340baf68bcd8ad90a8ecd7a4524a81c1764b3db"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "b69058f387a5fb53acee2f354b38546a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 233008,
"upload_time": "2024-10-07T12:54:43",
"upload_time_iso_8601": "2024-10-07T12:54:43.742668Z",
"url": "https://files.pythonhosted.org/packages/c3/9a/8a8cf428a91b1336b883f09c8b884e1734c87f724d74b917129a24fe2093/propcache-0.2.0-cp311-cp311-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "257b768a8969abd447d5f0f3333df85c6a5d94982a1bc9a89c53c154bf7a8b11",
"md5": "127abc572f0d47587506851685c548e7",
"sha256": "c436130cc779806bdf5d5fae0d848713105472b8566b75ff70048c47d3961c5b"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp311-cp311-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "127abc572f0d47587506851685c548e7",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 237719,
"upload_time": "2024-10-07T12:54:45",
"upload_time_iso_8601": "2024-10-07T12:54:45.065563Z",
"url": "https://files.pythonhosted.org/packages/25/7b/768a8969abd447d5f0f3333df85c6a5d94982a1bc9a89c53c154bf7a8b11/propcache-0.2.0-cp311-cp311-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ed0de5d68ccc7976ef8b57d80613ac07bbaf0614d43f4750cf953f0168ef114f",
"md5": "89a745297eab41e593df616ffb8de6e4",
"sha256": "191db28dc6dcd29d1a3e063c3be0b40688ed76434622c53a284e5427565bbd9b"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "89a745297eab41e593df616ffb8de6e4",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 227729,
"upload_time": "2024-10-07T12:54:46",
"upload_time_iso_8601": "2024-10-07T12:54:46.405614Z",
"url": "https://files.pythonhosted.org/packages/ed/0d/e5d68ccc7976ef8b57d80613ac07bbaf0614d43f4750cf953f0168ef114f/propcache-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "056417eb2796e2d1c3d0c431dc5f40078d7282f4645af0bb4da9097fbb628c6c",
"md5": "881437cf6437bb306de1f86510e0ff1a",
"sha256": "5f2564ec89058ee7c7989a7b719115bdfe2a2fb8e7a4543b8d1c0cc4cf6478c1"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp311-cp311-win32.whl",
"has_sig": false,
"md5_digest": "881437cf6437bb306de1f86510e0ff1a",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 40473,
"upload_time": "2024-10-07T12:54:47",
"upload_time_iso_8601": "2024-10-07T12:54:47.694772Z",
"url": "https://files.pythonhosted.org/packages/05/64/17eb2796e2d1c3d0c431dc5f40078d7282f4645af0bb4da9097fbb628c6c/propcache-0.2.0-cp311-cp311-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "83c5e89fc428ccdc897ade08cd7605f174c69390147526627a7650fb883e0cd0",
"md5": "4f07672670cbf8cd89dbd1d991f03cad",
"sha256": "6e2e54267980349b723cff366d1e29b138b9a60fa376664a157a342689553f71"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp311-cp311-win_amd64.whl",
"has_sig": false,
"md5_digest": "4f07672670cbf8cd89dbd1d991f03cad",
"packagetype": "bdist_wheel",
"python_version": "cp311",
"requires_python": ">=3.8",
"size": 44921,
"upload_time": "2024-10-07T12:54:48",
"upload_time_iso_8601": "2024-10-07T12:54:48.935163Z",
"url": "https://files.pythonhosted.org/packages/83/c5/e89fc428ccdc897ade08cd7605f174c69390147526627a7650fb883e0cd0/propcache-0.2.0-cp311-cp311-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7c46a41ca1097769fc548fc9216ec4c1471b772cc39720eb47ed7e38ef0006a9",
"md5": "90134bcab66b612d2f2adf9d540f0500",
"sha256": "2ee7606193fb267be4b2e3b32714f2d58cad27217638db98a60f9efb5efeccc2"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp312-cp312-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "90134bcab66b612d2f2adf9d540f0500",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 80800,
"upload_time": "2024-10-07T12:54:50",
"upload_time_iso_8601": "2024-10-07T12:54:50.409558Z",
"url": "https://files.pythonhosted.org/packages/7c/46/a41ca1097769fc548fc9216ec4c1471b772cc39720eb47ed7e38ef0006a9/propcache-0.2.0-cp312-cp312-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "754f93df46aab9cc473498ff56be39b5f6ee1e33529223d7a4d8c0a6101a9ba2",
"md5": "43d01ffccfa0854d41a39550a210a4f2",
"sha256": "91ee8fc02ca52e24bcb77b234f22afc03288e1dafbb1f88fe24db308910c4ac7"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "43d01ffccfa0854d41a39550a210a4f2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 46443,
"upload_time": "2024-10-07T12:54:51",
"upload_time_iso_8601": "2024-10-07T12:54:51.634481Z",
"url": "https://files.pythonhosted.org/packages/75/4f/93df46aab9cc473498ff56be39b5f6ee1e33529223d7a4d8c0a6101a9ba2/propcache-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0b17308acc6aee65d0f9a8375e36c4807ac6605d1f38074b1581bd4042b9fb37",
"md5": "067803df1a3eb70971895de5580dd921",
"sha256": "2e900bad2a8456d00a113cad8c13343f3b1f327534e3589acc2219729237a2e8"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp312-cp312-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "067803df1a3eb70971895de5580dd921",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 45676,
"upload_time": "2024-10-07T12:54:53",
"upload_time_iso_8601": "2024-10-07T12:54:53.454302Z",
"url": "https://files.pythonhosted.org/packages/0b/17/308acc6aee65d0f9a8375e36c4807ac6605d1f38074b1581bd4042b9fb37/propcache-0.2.0-cp312-cp312-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6544626599d2854d6c1d4530b9a05e7ff2ee22b790358334b475ed7c89f7d625",
"md5": "a242e302062d0cbd2ced26feda0f5d8a",
"sha256": "f52a68c21363c45297aca15561812d542f8fc683c85201df0bebe209e349f793"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a242e302062d0cbd2ced26feda0f5d8a",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 246191,
"upload_time": "2024-10-07T12:54:55",
"upload_time_iso_8601": "2024-10-07T12:54:55.438097Z",
"url": "https://files.pythonhosted.org/packages/65/44/626599d2854d6c1d4530b9a05e7ff2ee22b790358334b475ed7c89f7d625/propcache-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "f2df5d996d7cb18df076debae7d76ac3da085c0575a9f2be6b1f707fe227b54c",
"md5": "4375a8407f0153013d435ae79c392bf3",
"sha256": "1e41d67757ff4fbc8ef2af99b338bfb955010444b92929e9e55a6d4dcc3c4f09"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "4375a8407f0153013d435ae79c392bf3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 251791,
"upload_time": "2024-10-07T12:54:57",
"upload_time_iso_8601": "2024-10-07T12:54:57.441367Z",
"url": "https://files.pythonhosted.org/packages/f2/df/5d996d7cb18df076debae7d76ac3da085c0575a9f2be6b1f707fe227b54c/propcache-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e6d9f91e5dde8b1f662f6dd4dff36098ed22a1ef4e08e1316f05f4758f1576c",
"md5": "1816ccd2de94dec17b57011550925db3",
"sha256": "a64e32f8bd94c105cc27f42d3b658902b5bcc947ece3c8fe7bc1b05982f60e89"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "1816ccd2de94dec17b57011550925db3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 253434,
"upload_time": "2024-10-07T12:54:58",
"upload_time_iso_8601": "2024-10-07T12:54:58.857297Z",
"url": "https://files.pythonhosted.org/packages/2e/6d/9f91e5dde8b1f662f6dd4dff36098ed22a1ef4e08e1316f05f4758f1576c/propcache-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3ce91b54b7e26f50b3e0497cd13d3483d781d284452c2c50dd2a615a92a087a3",
"md5": "bcc5ad9dde1b14277ae9019d3346406f",
"sha256": "55346705687dbd7ef0d77883ab4f6fabc48232f587925bdaf95219bae072491e"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bcc5ad9dde1b14277ae9019d3346406f",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 248150,
"upload_time": "2024-10-07T12:55:00",
"upload_time_iso_8601": "2024-10-07T12:55:00.190840Z",
"url": "https://files.pythonhosted.org/packages/3c/e9/1b54b7e26f50b3e0497cd13d3483d781d284452c2c50dd2a615a92a087a3/propcache-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a7efa35bf191c8038fe3ce9a414b907371c81d102384eda5dbafe6f4dce0cf9b",
"md5": "6bf72eeb09b2cdd628a20c07ff208073",
"sha256": "00181262b17e517df2cd85656fcd6b4e70946fe62cd625b9d74ac9977b64d8d9"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "6bf72eeb09b2cdd628a20c07ff208073",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 233568,
"upload_time": "2024-10-07T12:55:01",
"upload_time_iso_8601": "2024-10-07T12:55:01.723835Z",
"url": "https://files.pythonhosted.org/packages/a7/ef/a35bf191c8038fe3ce9a414b907371c81d102384eda5dbafe6f4dce0cf9b/propcache-0.2.0-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": "97d9d00bb9277a9165a5e6d60f2142cd1a38a750045c9c12e47ae087f686d781",
"md5": "2498a1c2e19af7b2b8c0b9d1367698a2",
"sha256": "6994984550eaf25dd7fc7bd1b700ff45c894149341725bb4edc67f0ffa94efa4"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2498a1c2e19af7b2b8c0b9d1367698a2",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 229874,
"upload_time": "2024-10-07T12:55:03",
"upload_time_iso_8601": "2024-10-07T12:55:03.962646Z",
"url": "https://files.pythonhosted.org/packages/97/d9/d00bb9277a9165a5e6d60f2142cd1a38a750045c9c12e47ae087f686d781/propcache-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8e78c123cf22469bdc4b18efb78893e69c70a8b16de88e6160b69ca6bdd88b5d",
"md5": "63d2cfc63f4da3e4a6ce88e12e153c0c",
"sha256": "56295eb1e5f3aecd516d91b00cfd8bf3a13991de5a479df9e27dd569ea23959c"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "63d2cfc63f4da3e4a6ce88e12e153c0c",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 225857,
"upload_time": "2024-10-07T12:55:06",
"upload_time_iso_8601": "2024-10-07T12:55:06.439367Z",
"url": "https://files.pythonhosted.org/packages/8e/78/c123cf22469bdc4b18efb78893e69c70a8b16de88e6160b69ca6bdd88b5d/propcache-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "311bfd6b2f1f36d028820d35475be78859d8c89c8f091ad30e377ac49fd66359",
"md5": "b7280a4e174907988db9a774c31dd6b9",
"sha256": "439e76255daa0f8151d3cb325f6dd4a3e93043e6403e6491813bcaaaa8733887"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp312-cp312-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "b7280a4e174907988db9a774c31dd6b9",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 227604,
"upload_time": "2024-10-07T12:55:08",
"upload_time_iso_8601": "2024-10-07T12:55:08.254341Z",
"url": "https://files.pythonhosted.org/packages/31/1b/fd6b2f1f36d028820d35475be78859d8c89c8f091ad30e377ac49fd66359/propcache-0.2.0-cp312-cp312-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9936b07be976edf77a07233ba712e53262937625af02154353171716894a86a6",
"md5": "ccc5c3d2cb03a7f7fd865bad2b0875d3",
"sha256": "f6475a1b2ecb310c98c28d271a30df74f9dd436ee46d09236a6b750a7599ce57"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "ccc5c3d2cb03a7f7fd865bad2b0875d3",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 238430,
"upload_time": "2024-10-07T12:55:09",
"upload_time_iso_8601": "2024-10-07T12:55:09.766386Z",
"url": "https://files.pythonhosted.org/packages/99/36/b07be976edf77a07233ba712e53262937625af02154353171716894a86a6/propcache-0.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0d645822f496c9010e3966e934a011ac08cac8734561842bc7c1f65586e0683c",
"md5": "40bde029b08603456d60d58b940f0d72",
"sha256": "3444cdba6628accf384e349014084b1cacd866fbb88433cd9d279d90a54e0b23"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp312-cp312-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "40bde029b08603456d60d58b940f0d72",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 244814,
"upload_time": "2024-10-07T12:55:11",
"upload_time_iso_8601": "2024-10-07T12:55:11.145976Z",
"url": "https://files.pythonhosted.org/packages/0d/64/5822f496c9010e3966e934a011ac08cac8734561842bc7c1f65586e0683c/propcache-0.2.0-cp312-cp312-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fdbd8657918a35d50b18a9e4d78a5df7b6c82a637a311ab20851eef4326305c1",
"md5": "b5f559d7c937a22fbf994132593ada0b",
"sha256": "4a9d9b4d0a9b38d1c391bb4ad24aa65f306c6f01b512e10a8a34a2dc5675d348"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "b5f559d7c937a22fbf994132593ada0b",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 235922,
"upload_time": "2024-10-07T12:55:12",
"upload_time_iso_8601": "2024-10-07T12:55:12.508162Z",
"url": "https://files.pythonhosted.org/packages/fd/bd/8657918a35d50b18a9e4d78a5df7b6c82a637a311ab20851eef4326305c1/propcache-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a86fec0095e1647b4727db945213a9f395b1103c442ef65e54c62e92a72a3f75",
"md5": "b5a52b85ebfa02b609863f927cd79252",
"sha256": "69d3a98eebae99a420d4b28756c8ce6ea5a29291baf2dc9ff9414b42676f61d5"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp312-cp312-win32.whl",
"has_sig": false,
"md5_digest": "b5a52b85ebfa02b609863f927cd79252",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 40177,
"upload_time": "2024-10-07T12:55:13",
"upload_time_iso_8601": "2024-10-07T12:55:13.814341Z",
"url": "https://files.pythonhosted.org/packages/a8/6f/ec0095e1647b4727db945213a9f395b1103c442ef65e54c62e92a72a3f75/propcache-0.2.0-cp312-cp312-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "20a2bd0896fdc4f4c1db46d9bc361c8c79a9bf08ccc08ba054a98e38e7ba1557",
"md5": "6479b645ea2b997ea62c3743dfee9010",
"sha256": "ad9c9b99b05f163109466638bd30ada1722abb01bbb85c739c50b6dc11f92dc3"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp312-cp312-win_amd64.whl",
"has_sig": false,
"md5_digest": "6479b645ea2b997ea62c3743dfee9010",
"packagetype": "bdist_wheel",
"python_version": "cp312",
"requires_python": ">=3.8",
"size": 44446,
"upload_time": "2024-10-07T12:55:14",
"upload_time_iso_8601": "2024-10-07T12:55:14.972007Z",
"url": "https://files.pythonhosted.org/packages/20/a2/bd0896fdc4f4c1db46d9bc361c8c79a9bf08ccc08ba054a98e38e7ba1557/propcache-0.2.0-cp312-cp312-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a8a75f37b69197d4f558bfef5b4bceaff7c43cc9b51adf5bd75e9081d7ea80e4",
"md5": "ae77dd70d3bcbb007050f32277f44c44",
"sha256": "ecddc221a077a8132cf7c747d5352a15ed763b674c0448d811f408bf803d9ad7"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp313-cp313-macosx_10_13_universal2.whl",
"has_sig": false,
"md5_digest": "ae77dd70d3bcbb007050f32277f44c44",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 78120,
"upload_time": "2024-10-07T12:55:16",
"upload_time_iso_8601": "2024-10-07T12:55:16.179363Z",
"url": "https://files.pythonhosted.org/packages/a8/a7/5f37b69197d4f558bfef5b4bceaff7c43cc9b51adf5bd75e9081d7ea80e4/propcache-0.2.0-cp313-cp313-macosx_10_13_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c8cd48ab2b30a6b353ecb95a244915f85756d74f815862eb2ecc7a518d565b48",
"md5": "0bd34eed77f98a3209d9d8af467464c0",
"sha256": "0e53cb83fdd61cbd67202735e6a6687a7b491c8742dfc39c9e01e80354956763"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl",
"has_sig": false,
"md5_digest": "0bd34eed77f98a3209d9d8af467464c0",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 45127,
"upload_time": "2024-10-07T12:55:18",
"upload_time_iso_8601": "2024-10-07T12:55:18.275548Z",
"url": "https://files.pythonhosted.org/packages/c8/cd/48ab2b30a6b353ecb95a244915f85756d74f815862eb2ecc7a518d565b48/propcache-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a5ba0a1ef94a3412aab057bd996ed5f0ac7458be5bf469e85c70fa9ceb43290b",
"md5": "93e390866a348d99508608d666e8b43e",
"sha256": "92fe151145a990c22cbccf9ae15cae8ae9eddabfc949a219c9f667877e40853d"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp313-cp313-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "93e390866a348d99508608d666e8b43e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 44419,
"upload_time": "2024-10-07T12:55:19",
"upload_time_iso_8601": "2024-10-07T12:55:19.487891Z",
"url": "https://files.pythonhosted.org/packages/a5/ba/0a1ef94a3412aab057bd996ed5f0ac7458be5bf469e85c70fa9ceb43290b/propcache-0.2.0-cp313-cp313-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b46cca70bee4f22fa99eacd04f4d2f1699be9d13538ccf22b3169a61c60a27fa",
"md5": "58e9fff8f1248579de928f7ea30f07d1",
"sha256": "d6a21ef516d36909931a2967621eecb256018aeb11fc48656e3257e73e2e247a"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "58e9fff8f1248579de928f7ea30f07d1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 229611,
"upload_time": "2024-10-07T12:55:21",
"upload_time_iso_8601": "2024-10-07T12:55:21.377062Z",
"url": "https://files.pythonhosted.org/packages/b4/6c/ca70bee4f22fa99eacd04f4d2f1699be9d13538ccf22b3169a61c60a27fa/propcache-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "197047b872a263e8511ca33718d96a10c17d3c853aefadeb86dc26e8421184b9",
"md5": "762df2f419e7a595d2b83006e82749ed",
"sha256": "3f88a4095e913f98988f5b338c1d4d5d07dbb0b6bad19892fd447484e483ba6b"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "762df2f419e7a595d2b83006e82749ed",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 234005,
"upload_time": "2024-10-07T12:55:22",
"upload_time_iso_8601": "2024-10-07T12:55:22.898774Z",
"url": "https://files.pythonhosted.org/packages/19/70/47b872a263e8511ca33718d96a10c17d3c853aefadeb86dc26e8421184b9/propcache-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "4fbe3b0ab8c84a22e4a3224719099c1229ddfdd8a6a1558cf75cb55ee1e35c25",
"md5": "982e0be8e98f52715cdd821fc6724d78",
"sha256": "5a5b3bb545ead161be780ee85a2b54fdf7092815995661947812dde94a40f6fb"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "982e0be8e98f52715cdd821fc6724d78",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 237270,
"upload_time": "2024-10-07T12:55:24",
"upload_time_iso_8601": "2024-10-07T12:55:24.354776Z",
"url": "https://files.pythonhosted.org/packages/4f/be/3b0ab8c84a22e4a3224719099c1229ddfdd8a6a1558cf75cb55ee1e35c25/propcache-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "04d8f071bb000d4b8f851d312c3c75701e586b3f643fe14a2e3409b1b9ab3936",
"md5": "8c73e156cd45a6747d1ae9e83dad55e6",
"sha256": "67aeb72e0f482709991aa91345a831d0b707d16b0257e8ef88a2ad246a7280bf"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "8c73e156cd45a6747d1ae9e83dad55e6",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 231877,
"upload_time": "2024-10-07T12:55:25",
"upload_time_iso_8601": "2024-10-07T12:55:25.774180Z",
"url": "https://files.pythonhosted.org/packages/04/d8/f071bb000d4b8f851d312c3c75701e586b3f643fe14a2e3409b1b9ab3936/propcache-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "93e757a035a1359e542bbb0a7df95aad6b9871ebee6dce2840cb157a415bd1f3",
"md5": "aeeaffd0befa49853116b840fc6de2e1",
"sha256": "3c997f8c44ec9b9b0bcbf2d422cc00a1d9b9c681f56efa6ca149a941e5560da2"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "aeeaffd0befa49853116b840fc6de2e1",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 217848,
"upload_time": "2024-10-07T12:55:27",
"upload_time_iso_8601": "2024-10-07T12:55:27.148795Z",
"url": "https://files.pythonhosted.org/packages/93/e7/57a035a1359e542bbb0a7df95aad6b9871ebee6dce2840cb157a415bd1f3/propcache-0.2.0-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": "f093d1dea40f112ec183398fb6c42fde340edd7bab202411c4aa1a8289f461b6",
"md5": "c4479d58ecfa41e3071a66572356038f",
"sha256": "2a66df3d4992bc1d725b9aa803e8c5a66c010c65c741ad901e260ece77f58d2f"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "c4479d58ecfa41e3071a66572356038f",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 216987,
"upload_time": "2024-10-07T12:55:29",
"upload_time_iso_8601": "2024-10-07T12:55:29.294478Z",
"url": "https://files.pythonhosted.org/packages/f0/93/d1dea40f112ec183398fb6c42fde340edd7bab202411c4aa1a8289f461b6/propcache-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "624c877340871251145d3522c2b5d25c16a1690ad655fbab7bb9ece6b117e39f",
"md5": "3e8082814fc2b5994639d5a2df465141",
"sha256": "3ebbcf2a07621f29638799828b8d8668c421bfb94c6cb04269130d8de4fb7136"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "3e8082814fc2b5994639d5a2df465141",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 212451,
"upload_time": "2024-10-07T12:55:30",
"upload_time_iso_8601": "2024-10-07T12:55:30.643045Z",
"url": "https://files.pythonhosted.org/packages/62/4c/877340871251145d3522c2b5d25c16a1690ad655fbab7bb9ece6b117e39f/propcache-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7cbba91b72efeeb42906ef58ccf0cdb87947b54d7475fee3c93425d732f16a61",
"md5": "ce6fdedc405be9de1d9ea09734a9d903",
"sha256": "1235c01ddaa80da8235741e80815ce381c5267f96cc49b1477fdcf8c047ef325"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp313-cp313-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "ce6fdedc405be9de1d9ea09734a9d903",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 212879,
"upload_time": "2024-10-07T12:55:32",
"upload_time_iso_8601": "2024-10-07T12:55:32.024443Z",
"url": "https://files.pythonhosted.org/packages/7c/bb/a91b72efeeb42906ef58ccf0cdb87947b54d7475fee3c93425d732f16a61/propcache-0.2.0-cp313-cp313-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9b7fee7fea8faac57b3ec5d91ff47470c6c5d40d7f15d0b1fccac806348fa59e",
"md5": "026bef9f41889dd47afc66f29a761f2e",
"sha256": "3947483a381259c06921612550867b37d22e1df6d6d7e8361264b6d037595f44"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "026bef9f41889dd47afc66f29a761f2e",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 222288,
"upload_time": "2024-10-07T12:55:33",
"upload_time_iso_8601": "2024-10-07T12:55:33.401883Z",
"url": "https://files.pythonhosted.org/packages/9b/7f/ee7fea8faac57b3ec5d91ff47470c6c5d40d7f15d0b1fccac806348fa59e/propcache-0.2.0-cp313-cp313-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ffd7acd67901c43d2e6b20a7a973d9d5fd543c6e277af29b1eb0e1f7bd7ca7d2",
"md5": "9feddaa63284adc38bac31dc21f0e161",
"sha256": "d5bed7f9805cc29c780f3aee05de3262ee7ce1f47083cfe9f77471e9d6777e83"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp313-cp313-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "9feddaa63284adc38bac31dc21f0e161",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 228257,
"upload_time": "2024-10-07T12:55:35",
"upload_time_iso_8601": "2024-10-07T12:55:35.381972Z",
"url": "https://files.pythonhosted.org/packages/ff/d7/acd67901c43d2e6b20a7a973d9d5fd543c6e277af29b1eb0e1f7bd7ca7d2/propcache-0.2.0-cp313-cp313-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "8d6f6272ecc7a8daad1d0754cfc6c8846076a8cb13f810005c79b15ce0ef0cf2",
"md5": "73232c1f0ea8926d243145b019e55799",
"sha256": "e4a91d44379f45f5e540971d41e4626dacd7f01004826a18cb048e7da7e96544"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "73232c1f0ea8926d243145b019e55799",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 221075,
"upload_time": "2024-10-07T12:55:36",
"upload_time_iso_8601": "2024-10-07T12:55:36.789677Z",
"url": "https://files.pythonhosted.org/packages/8d/6f/6272ecc7a8daad1d0754cfc6c8846076a8cb13f810005c79b15ce0ef0cf2/propcache-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7cbdc7a6a719a6b3dd8b3aeadb3675b5783983529e4a3185946aa444d3e078f6",
"md5": "b1d003f06d7d34d074eeb9ec647b3d50",
"sha256": "f902804113e032e2cdf8c71015651c97af6418363bea8d78dc0911d56c335032"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp313-cp313-win32.whl",
"has_sig": false,
"md5_digest": "b1d003f06d7d34d074eeb9ec647b3d50",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 39654,
"upload_time": "2024-10-07T12:55:38",
"upload_time_iso_8601": "2024-10-07T12:55:38.762552Z",
"url": "https://files.pythonhosted.org/packages/7c/bd/c7a6a719a6b3dd8b3aeadb3675b5783983529e4a3185946aa444d3e078f6/propcache-0.2.0-cp313-cp313-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "88e70eef39eff84fa3e001b44de0bd41c7c0e3432e7648ffd3d64955910f002d",
"md5": "549c3e15428ab64b57222eb7ae01f1d8",
"sha256": "8f188cfcc64fb1266f4684206c9de0e80f54622c3f22a910cbd200478aeae61e"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp313-cp313-win_amd64.whl",
"has_sig": false,
"md5_digest": "549c3e15428ab64b57222eb7ae01f1d8",
"packagetype": "bdist_wheel",
"python_version": "cp313",
"requires_python": ">=3.8",
"size": 43705,
"upload_time": "2024-10-07T12:55:39",
"upload_time_iso_8601": "2024-10-07T12:55:39.921246Z",
"url": "https://files.pythonhosted.org/packages/88/e7/0eef39eff84fa3e001b44de0bd41c7c0e3432e7648ffd3d64955910f002d/propcache-0.2.0-cp313-cp313-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "b4942c3d64420fd58ed462e2b416386d48e72dec027cf7bb572066cf3866e939",
"md5": "144a2111cbb7e01719f4e7ed62453d80",
"sha256": "53d1bd3f979ed529f0805dd35ddaca330f80a9a6d90bc0121d2ff398f8ed8861"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp38-cp38-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "144a2111cbb7e01719f4e7ed62453d80",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 82315,
"upload_time": "2024-10-07T12:55:41",
"upload_time_iso_8601": "2024-10-07T12:55:41.166644Z",
"url": "https://files.pythonhosted.org/packages/b4/94/2c3d64420fd58ed462e2b416386d48e72dec027cf7bb572066cf3866e939/propcache-0.2.0-cp38-cp38-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "73b79e2a17d9a126f2012b22ddc5d0979c28ca75104e24945214790c1d787015",
"md5": "f46eafcf95f5bcab0217bd54ab6317bb",
"sha256": "83928404adf8fb3d26793665633ea79b7361efa0287dfbd372a7e74311d51ee6"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "f46eafcf95f5bcab0217bd54ab6317bb",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 47188,
"upload_time": "2024-10-07T12:55:42",
"upload_time_iso_8601": "2024-10-07T12:55:42.316122Z",
"url": "https://files.pythonhosted.org/packages/73/b7/9e2a17d9a126f2012b22ddc5d0979c28ca75104e24945214790c1d787015/propcache-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "80ef18af27caaae5589c08bb5a461cfa136b83b7e7983be604f2140d91f92b97",
"md5": "36285af50814b9104119c788391335c7",
"sha256": "77a86c261679ea5f3896ec060be9dc8e365788248cc1e049632a1be682442063"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp38-cp38-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "36285af50814b9104119c788391335c7",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 46314,
"upload_time": "2024-10-07T12:55:43",
"upload_time_iso_8601": "2024-10-07T12:55:43.544646Z",
"url": "https://files.pythonhosted.org/packages/80/ef/18af27caaae5589c08bb5a461cfa136b83b7e7983be604f2140d91f92b97/propcache-0.2.0-cp38-cp38-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fadf8dbd3e472baf73251c0fbb571a3f0a4e3a40c52a1c8c2a6c46ab08736ff9",
"md5": "a266ae8e4ef0071ced153138286a46c4",
"sha256": "218db2a3c297a3768c11a34812e63b3ac1c3234c3a086def9c0fee50d35add1f"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "a266ae8e4ef0071ced153138286a46c4",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 212874,
"upload_time": "2024-10-07T12:55:44",
"upload_time_iso_8601": "2024-10-07T12:55:44.823708Z",
"url": "https://files.pythonhosted.org/packages/fa/df/8dbd3e472baf73251c0fbb571a3f0a4e3a40c52a1c8c2a6c46ab08736ff9/propcache-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7c575d4d783ac594bd56434679b8643673ae12de1ce758116fd8912a7f2313ec",
"md5": "1ada6e4050edb3898fe3a668f0d63808",
"sha256": "7735e82e3498c27bcb2d17cb65d62c14f1100b71723b68362872bca7d0913d90"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "1ada6e4050edb3898fe3a668f0d63808",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 224578,
"upload_time": "2024-10-07T12:55:46",
"upload_time_iso_8601": "2024-10-07T12:55:46.253926Z",
"url": "https://files.pythonhosted.org/packages/7c/57/5d4d783ac594bd56434679b8643673ae12de1ce758116fd8912a7f2313ec/propcache-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "6627072be8ad434c9a3aa1b561f527984ea0ed4ac072fd18dfaaa2aa2d6e6a2b",
"md5": "cf7bcfb993ba8d5f66d44fd300c39fda",
"sha256": "20a617c776f520c3875cf4511e0d1db847a076d720714ae35ffe0df3e440be68"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "cf7bcfb993ba8d5f66d44fd300c39fda",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 222636,
"upload_time": "2024-10-07T12:55:47",
"upload_time_iso_8601": "2024-10-07T12:55:47.608273Z",
"url": "https://files.pythonhosted.org/packages/66/27/072be8ad434c9a3aa1b561f527984ea0ed4ac072fd18dfaaa2aa2d6e6a2b/propcache-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c3f169a30ff0928d07f50bdc6f0147fd9a08e80904fd3fdb711785e518de1021",
"md5": "bf7235e8f89732e81dbb52263bd0a233",
"sha256": "67b69535c870670c9f9b14a75d28baa32221d06f6b6fa6f77a0a13c5a7b0a5b9"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "bf7235e8f89732e81dbb52263bd0a233",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 213573,
"upload_time": "2024-10-07T12:55:49",
"upload_time_iso_8601": "2024-10-07T12:55:49.820397Z",
"url": "https://files.pythonhosted.org/packages/c3/f1/69a30ff0928d07f50bdc6f0147fd9a08e80904fd3fdb711785e518de1021/propcache-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a82ec16716ae113fe0a3219978df3665a6fea049d81d50bd28c4ae72a4c77567",
"md5": "1f0c44c4a6a93b99aa842b7bcf3ee1d9",
"sha256": "4569158070180c3855e9c0791c56be3ceeb192defa2cdf6a3f39e54319e56b89"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "1f0c44c4a6a93b99aa842b7bcf3ee1d9",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 205438,
"upload_time": "2024-10-07T12:55:51",
"upload_time_iso_8601": "2024-10-07T12:55:51.231469Z",
"url": "https://files.pythonhosted.org/packages/a8/2e/c16716ae113fe0a3219978df3665a6fea049d81d50bd28c4ae72a4c77567/propcache-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e1df80e2c5cd5ed56a7bfb1aa58cedb79617a152ae43de7c0a7e800944a6b2e2",
"md5": "2a4e8e8192230f66f678147036107165",
"sha256": "db47514ffdbd91ccdc7e6f8407aac4ee94cc871b15b577c1c324236b013ddd04"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "2a4e8e8192230f66f678147036107165",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 202352,
"upload_time": "2024-10-07T12:55:52",
"upload_time_iso_8601": "2024-10-07T12:55:52.596956Z",
"url": "https://files.pythonhosted.org/packages/e1/df/80e2c5cd5ed56a7bfb1aa58cedb79617a152ae43de7c0a7e800944a6b2e2/propcache-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "0f4e79f665fa04839f30ffb2903211c718b9660fbb938ac7a4df79525af5aeb3",
"md5": "24510c7c52731824fa4bd31ae9c6c626",
"sha256": "2a60ad3e2553a74168d275a0ef35e8c0a965448ffbc3b300ab3a5bb9956c2162"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "24510c7c52731824fa4bd31ae9c6c626",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 200476,
"upload_time": "2024-10-07T12:55:54",
"upload_time_iso_8601": "2024-10-07T12:55:54.016915Z",
"url": "https://files.pythonhosted.org/packages/0f/4e/79f665fa04839f30ffb2903211c718b9660fbb938ac7a4df79525af5aeb3/propcache-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a939b9ea7b011521dd7cfd2f89bb6b8b304f3c789ea6285445bc145bebc83094",
"md5": "17af03763043d04ec9a49752b3f8d250",
"sha256": "662dd62358bdeaca0aee5761de8727cfd6861432e3bb828dc2a693aa0471a563"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp38-cp38-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "17af03763043d04ec9a49752b3f8d250",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 201581,
"upload_time": "2024-10-07T12:55:56",
"upload_time_iso_8601": "2024-10-07T12:55:56.246867Z",
"url": "https://files.pythonhosted.org/packages/a9/39/b9ea7b011521dd7cfd2f89bb6b8b304f3c789ea6285445bc145bebc83094/propcache-0.2.0-cp38-cp38-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e481e8e96c97aa0b675a14e37b12ca9c9713b15cfacf0869e64bf3ab389fabf1",
"md5": "abc7ea5fe7c07066873773465daaad04",
"sha256": "25a1f88b471b3bc911d18b935ecb7115dff3a192b6fef46f0bfaf71ff4f12418"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp38-cp38-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "abc7ea5fe7c07066873773465daaad04",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 225628,
"upload_time": "2024-10-07T12:55:57",
"upload_time_iso_8601": "2024-10-07T12:55:57.686430Z",
"url": "https://files.pythonhosted.org/packages/e4/81/e8e96c97aa0b675a14e37b12ca9c9713b15cfacf0869e64bf3ab389fabf1/propcache-0.2.0-cp38-cp38-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "eb9915f998c502c214f6c7f51462937605d514a8943a9a6c1fa10f40d2710976",
"md5": "6c46bee8bd8a984b8362e0f57db28b09",
"sha256": "f60f0ac7005b9f5a6091009b09a419ace1610e163fa5deaba5ce3484341840e7"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp38-cp38-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "6c46bee8bd8a984b8362e0f57db28b09",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 229270,
"upload_time": "2024-10-07T12:55:59",
"upload_time_iso_8601": "2024-10-07T12:55:59.065139Z",
"url": "https://files.pythonhosted.org/packages/eb/99/15f998c502c214f6c7f51462937605d514a8943a9a6c1fa10f40d2710976/propcache-0.2.0-cp38-cp38-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ff3aa9f1a0c0e5b994b8f1a1c71bea56bb3e9eeec821cb4dd61e14051c4ba00b",
"md5": "a70ad4e3f53fc2a880d4e1dbc60e106a",
"sha256": "74acd6e291f885678631b7ebc85d2d4aec458dd849b8c841b57ef04047833bed"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "a70ad4e3f53fc2a880d4e1dbc60e106a",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 207771,
"upload_time": "2024-10-07T12:56:00",
"upload_time_iso_8601": "2024-10-07T12:56:00.393886Z",
"url": "https://files.pythonhosted.org/packages/ff/3a/a9f1a0c0e5b994b8f1a1c71bea56bb3e9eeec821cb4dd61e14051c4ba00b/propcache-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ff3e6103906a66d6713f32880cf6a5ba84a1406b4d66e1b9389bb9b8e1789f9e",
"md5": "93d7aae6186ffb6b5ba66950ee8b8855",
"sha256": "d9b6ddac6408194e934002a69bcaadbc88c10b5f38fb9307779d1c629181815d"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp38-cp38-win32.whl",
"has_sig": false,
"md5_digest": "93d7aae6186ffb6b5ba66950ee8b8855",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 41015,
"upload_time": "2024-10-07T12:56:01",
"upload_time_iso_8601": "2024-10-07T12:56:01.953822Z",
"url": "https://files.pythonhosted.org/packages/ff/3e/6103906a66d6713f32880cf6a5ba84a1406b4d66e1b9389bb9b8e1789f9e/propcache-0.2.0-cp38-cp38-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3723a30214b4c1f2bea24cc1197ef48d67824fbc41d5cf5472b17c37fef6002c",
"md5": "300b8bdf3cd95d3c2bb68230deeffe76",
"sha256": "676135dcf3262c9c5081cc8f19ad55c8a64e3f7282a21266d05544450bffc3a5"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp38-cp38-win_amd64.whl",
"has_sig": false,
"md5_digest": "300b8bdf3cd95d3c2bb68230deeffe76",
"packagetype": "bdist_wheel",
"python_version": "cp38",
"requires_python": ">=3.8",
"size": 45749,
"upload_time": "2024-10-07T12:56:03",
"upload_time_iso_8601": "2024-10-07T12:56:03.095820Z",
"url": "https://files.pythonhosted.org/packages/37/23/a30214b4c1f2bea24cc1197ef48d67824fbc41d5cf5472b17c37fef6002c/propcache-0.2.0-cp38-cp38-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3805797e6738c9f44ab5039e3ff329540c934eabbe8ad7e63c305c75844bc86f",
"md5": "f0f12728bdc4a06290eb0fccab38ea81",
"sha256": "25c8d773a62ce0451b020c7b29a35cfbc05de8b291163a7a0f3b7904f27253e6"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp39-cp39-macosx_10_9_universal2.whl",
"has_sig": false,
"md5_digest": "f0f12728bdc4a06290eb0fccab38ea81",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 81903,
"upload_time": "2024-10-07T12:56:04",
"upload_time_iso_8601": "2024-10-07T12:56:04.651167Z",
"url": "https://files.pythonhosted.org/packages/38/05/797e6738c9f44ab5039e3ff329540c934eabbe8ad7e63c305c75844bc86f/propcache-0.2.0-cp39-cp39-macosx_10_9_universal2.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "9f848d5edb9a73e1a56b24dd8f2adb6aac223109ff0e8002313d52e5518258ba",
"md5": "f939827759c4baf99e469960a4604300",
"sha256": "375a12d7556d462dc64d70475a9ee5982465fbb3d2b364f16b86ba9135793638"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl",
"has_sig": false,
"md5_digest": "f939827759c4baf99e469960a4604300",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 46960,
"upload_time": "2024-10-07T12:56:06",
"upload_time_iso_8601": "2024-10-07T12:56:06.380836Z",
"url": "https://files.pythonhosted.org/packages/9f/84/8d5edb9a73e1a56b24dd8f2adb6aac223109ff0e8002313d52e5518258ba/propcache-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e777388697bedda984af0d12d68e536b98129b167282da3401965c8450de510e",
"md5": "f9ffd5cbc4ec45663badd9776183f836",
"sha256": "1ec43d76b9677637a89d6ab86e1fef70d739217fefa208c65352ecf0282be957"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp39-cp39-macosx_11_0_arm64.whl",
"has_sig": false,
"md5_digest": "f9ffd5cbc4ec45663badd9776183f836",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 46133,
"upload_time": "2024-10-07T12:56:07",
"upload_time_iso_8601": "2024-10-07T12:56:07.606513Z",
"url": "https://files.pythonhosted.org/packages/e7/77/388697bedda984af0d12d68e536b98129b167282da3401965c8450de510e/propcache-0.2.0-cp39-cp39-macosx_11_0_arm64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "e2dc60d444610bc5b1d7a758534f58362b1bcee736a785473f8a39c91f05aad1",
"md5": "47d43dc9ff9958a629ed26647e99197d",
"sha256": "f45eec587dafd4b2d41ac189c2156461ebd0c1082d2fe7013571598abb8505d1"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"has_sig": false,
"md5_digest": "47d43dc9ff9958a629ed26647e99197d",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 211105,
"upload_time": "2024-10-07T12:56:08",
"upload_time_iso_8601": "2024-10-07T12:56:08.826776Z",
"url": "https://files.pythonhosted.org/packages/e2/dc/60d444610bc5b1d7a758534f58362b1bcee736a785473f8a39c91f05aad1/propcache-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "bcc640eb0dd1de6f8e84f454615ab61f68eb4a58f9d63d6f6eaf04300ac0cc17",
"md5": "8523bf5b4b3af8144c9d759ec05d8967",
"sha256": "bc092ba439d91df90aea38168e11f75c655880c12782facf5cf9c00f3d42b562"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"has_sig": false,
"md5_digest": "8523bf5b4b3af8144c9d759ec05d8967",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 226613,
"upload_time": "2024-10-07T12:56:11",
"upload_time_iso_8601": "2024-10-07T12:56:11.184539Z",
"url": "https://files.pythonhosted.org/packages/bc/c6/40eb0dd1de6f8e84f454615ab61f68eb4a58f9d63d6f6eaf04300ac0cc17/propcache-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "deb6e078b5e9de58e20db12135eb6a206b4b43cb26c6b62ee0fe36ac40763a64",
"md5": "d8763f1ac549c950e2f14e05f205102a",
"sha256": "fa1076244f54bb76e65e22cb6910365779d5c3d71d1f18b275f1dfc7b0d71b4d"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"has_sig": false,
"md5_digest": "d8763f1ac549c950e2f14e05f205102a",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 225587,
"upload_time": "2024-10-07T12:56:15",
"upload_time_iso_8601": "2024-10-07T12:56:15.294308Z",
"url": "https://files.pythonhosted.org/packages/de/b6/e078b5e9de58e20db12135eb6a206b4b43cb26c6b62ee0fe36ac40763a64/propcache-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "ce4e97059dd24494d1c93d1efb98bb24825e1930265b41858dd59c15cb37a975",
"md5": "259f9d93b565ac9f44bb25c70019a405",
"sha256": "682a7c79a2fbf40f5dbb1eb6bfe2cd865376deeac65acf9beb607505dced9e12"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"has_sig": false,
"md5_digest": "259f9d93b565ac9f44bb25c70019a405",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 211826,
"upload_time": "2024-10-07T12:56:16",
"upload_time_iso_8601": "2024-10-07T12:56:16.997875Z",
"url": "https://files.pythonhosted.org/packages/ce/4e/97059dd24494d1c93d1efb98bb24825e1930265b41858dd59c15cb37a975/propcache-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "fc234dbf726602a989d2280fe130a9b9dd71faa8d3bb8cd23d3261ff3c23f692",
"md5": "e8a6a9e5c7b018bcd440fd562d824bac",
"sha256": "8e40876731f99b6f3c897b66b803c9e1c07a989b366c6b5b475fafd1f7ba3fb8"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
"has_sig": false,
"md5_digest": "e8a6a9e5c7b018bcd440fd562d824bac",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 203140,
"upload_time": "2024-10-07T12:56:18",
"upload_time_iso_8601": "2024-10-07T12:56:18.368199Z",
"url": "https://files.pythonhosted.org/packages/fc/23/4dbf726602a989d2280fe130a9b9dd71faa8d3bb8cd23d3261ff3c23f692/propcache-0.2.0-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": "5bcef3bff82c885dbd9ae9e43f134d5b02516c3daa52d46f7a50e4f52ef9121f",
"md5": "f4d57dccd66f324b723cb795918dcf7c",
"sha256": "363ea8cd3c5cb6679f1c2f5f1f9669587361c062e4899fce56758efa928728f8"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"has_sig": false,
"md5_digest": "f4d57dccd66f324b723cb795918dcf7c",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 208841,
"upload_time": "2024-10-07T12:56:19",
"upload_time_iso_8601": "2024-10-07T12:56:19.859591Z",
"url": "https://files.pythonhosted.org/packages/5b/ce/f3bff82c885dbd9ae9e43f134d5b02516c3daa52d46f7a50e4f52ef9121f/propcache-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "29d719a4d3b4c7e95d08f216da97035d0b103d0c90411c6f739d47088d2da1f0",
"md5": "d9d70ce7a543d4b1935cca3e8c77da0f",
"sha256": "140fbf08ab3588b3468932974a9331aff43c0ab8a2ec2c608b6d7d1756dbb6cb"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl",
"has_sig": false,
"md5_digest": "d9d70ce7a543d4b1935cca3e8c77da0f",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 203315,
"upload_time": "2024-10-07T12:56:21",
"upload_time_iso_8601": "2024-10-07T12:56:21.256931Z",
"url": "https://files.pythonhosted.org/packages/29/d7/19a4d3b4c7e95d08f216da97035d0b103d0c90411c6f739d47088d2da1f0/propcache-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "db875748212a18beb8d4ab46315c55ade8960d1e2cdc190764985b2d229dd3f4",
"md5": "0b573fa3dfcf691f5704f414f5254ee5",
"sha256": "e70fac33e8b4ac63dfc4c956fd7d85a0b1139adcfc0d964ce288b7c527537fea"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp39-cp39-musllinux_1_2_i686.whl",
"has_sig": false,
"md5_digest": "0b573fa3dfcf691f5704f414f5254ee5",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 204724,
"upload_time": "2024-10-07T12:56:23",
"upload_time_iso_8601": "2024-10-07T12:56:23.644004Z",
"url": "https://files.pythonhosted.org/packages/db/87/5748212a18beb8d4ab46315c55ade8960d1e2cdc190764985b2d229dd3f4/propcache-0.2.0-cp39-cp39-musllinux_1_2_i686.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "842ac3d2f989fc571a5bad0fabcd970669ccb08c8f9b07b037ecddbdab16a040",
"md5": "5a8cdb05ac0af98aaea052bc95cdecd4",
"sha256": "b33d7a286c0dc1a15f5fc864cc48ae92a846df287ceac2dd499926c3801054a6"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
"has_sig": false,
"md5_digest": "5a8cdb05ac0af98aaea052bc95cdecd4",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 215514,
"upload_time": "2024-10-07T12:56:25",
"upload_time_iso_8601": "2024-10-07T12:56:25.733257Z",
"url": "https://files.pythonhosted.org/packages/84/2a/c3d2f989fc571a5bad0fabcd970669ccb08c8f9b07b037ecddbdab16a040/propcache-0.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "c91f4c44c133b08bc5f776afcb8f0833889c2636b8a83e07ea1d9096c1e401b0",
"md5": "de735529bff0651688b840fdb580d961",
"sha256": "f6d5749fdd33d90e34c2efb174c7e236829147a2713334d708746e94c4bde40d"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp39-cp39-musllinux_1_2_s390x.whl",
"has_sig": false,
"md5_digest": "de735529bff0651688b840fdb580d961",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 220063,
"upload_time": "2024-10-07T12:56:28",
"upload_time_iso_8601": "2024-10-07T12:56:28.497602Z",
"url": "https://files.pythonhosted.org/packages/c9/1f/4c44c133b08bc5f776afcb8f0833889c2636b8a83e07ea1d9096c1e401b0/propcache-0.2.0-cp39-cp39-musllinux_1_2_s390x.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "2e25280d0a3bdaee68db74c0acd9a472e59e64b516735b59cffd3a326ff9058a",
"md5": "e6945599e36cd40d6e86a3f38c98f3f7",
"sha256": "22aa8f2272d81d9317ff5756bb108021a056805ce63dd3630e27d042c8092798"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"has_sig": false,
"md5_digest": "e6945599e36cd40d6e86a3f38c98f3f7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 211620,
"upload_time": "2024-10-07T12:56:29",
"upload_time_iso_8601": "2024-10-07T12:56:29.891418Z",
"url": "https://files.pythonhosted.org/packages/2e/25/280d0a3bdaee68db74c0acd9a472e59e64b516735b59cffd3a326ff9058a/propcache-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "288c266898981b7883c1563c35954f9ce9ced06019fdcc487a9520150c48dc91",
"md5": "1ca6e3cd0b78a61e075abc81e5ffebd7",
"sha256": "73e4b40ea0eda421b115248d7e79b59214411109a5bc47d0d48e4c73e3b8fcf9"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp39-cp39-win32.whl",
"has_sig": false,
"md5_digest": "1ca6e3cd0b78a61e075abc81e5ffebd7",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 41049,
"upload_time": "2024-10-07T12:56:31",
"upload_time_iso_8601": "2024-10-07T12:56:31.246300Z",
"url": "https://files.pythonhosted.org/packages/28/8c/266898981b7883c1563c35954f9ce9ced06019fdcc487a9520150c48dc91/propcache-0.2.0-cp39-cp39-win32.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "af53a3e5b937f58e757a940716b88105ec4c211c42790c1ea17052b46dc16f16",
"md5": "201219f7deecd8181efcebda7edf1f11",
"sha256": "9517d5e9e0731957468c29dbfd0f976736a0e55afaea843726e887f36fe017df"
},
"downloads": -1,
"filename": "propcache-0.2.0-cp39-cp39-win_amd64.whl",
"has_sig": false,
"md5_digest": "201219f7deecd8181efcebda7edf1f11",
"packagetype": "bdist_wheel",
"python_version": "cp39",
"requires_python": ">=3.8",
"size": 45587,
"upload_time": "2024-10-07T12:56:33",
"upload_time_iso_8601": "2024-10-07T12:56:33.416699Z",
"url": "https://files.pythonhosted.org/packages/af/53/a3e5b937f58e757a940716b88105ec4c211c42790c1ea17052b46dc16f16/propcache-0.2.0-cp39-cp39-win_amd64.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "3db6e6d98278f2d49b22b4d033c9f792eda783b9ab2094b041f013fc69bcde87",
"md5": "21bf1db914fbed62448fd4015a73e396",
"sha256": "2ccc28197af5313706511fab3a8b66dcd6da067a1331372c82ea1cb74285e036"
},
"downloads": -1,
"filename": "propcache-0.2.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "21bf1db914fbed62448fd4015a73e396",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.8",
"size": 11603,
"upload_time": "2024-10-07T12:56:35",
"upload_time_iso_8601": "2024-10-07T12:56:35.137940Z",
"url": "https://files.pythonhosted.org/packages/3d/b6/e6d98278f2d49b22b4d033c9f792eda783b9ab2094b041f013fc69bcde87/propcache-0.2.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "a94d5e5a60b78dbc1d464f8a7bbaeb30957257afdc8512cbb9dfd5659304f5cd",
"md5": "70b121a9845a0da06eccfbc42ff74335",
"sha256": "df81779732feb9d01e5d513fad0122efb3d53bbc75f61b2a4f29a020bc985e70"
},
"downloads": -1,
"filename": "propcache-0.2.0.tar.gz",
"has_sig": false,
"md5_digest": "70b121a9845a0da06eccfbc42ff74335",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.8",
"size": 40951,
"upload_time": "2024-10-07T12:56:36",
"upload_time_iso_8601": "2024-10-07T12:56:36.896400Z",
"url": "https://files.pythonhosted.org/packages/a9/4d/5e5a60b78dbc1d464f8a7bbaeb30957257afdc8512cbb9dfd5659304f5cd/propcache-0.2.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-10-07 12:56:36",
"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"
}