Skip to main content

Accelerated property cache

Project description

propcache

The module provides a fast implementation of cached properties for Python 3.9+.

https://github.com/aio-libs/propcache/actions/workflows/ci-cd.yml/badge.svg https://codecov.io/gh/aio-libs/propcache/branch/master/graph/badge.svg https://badge.fury.io/py/propcache.svg https://readthedocs.org/projects/propcache/badge/?version=latest https://img.shields.io/pypi/pyversions/propcache.svg Matrix Room — #aio-libs:matrix.org 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.:

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

Changelog

0.3.2

(2025-06-09)

Improved documentation

  • Fixed incorrect decorator usage in the ~propcache.api.under_cached_property example code – by @meanmail.

    Related issues and pull requests on GitHub: #109.

Packaging updates and notes for downstreams

  • Updated to use Cython 3.1 universally across the build path – by @lysnikolaou.

    Related issues and pull requests on GitHub: #117.

  • Made Cython line tracing opt-in via the with-cython-tracing build config setting – by @bdraco.

    Previously, line tracing was enabled by default in pyproject.toml, which caused build issues for some users and made wheels nearly twice as slow.

    Now line tracing is only enabled when explicitly requested via pip install . --config-setting=with-cython-tracing=true or by setting the PROPCACHE_CYTHON_TRACING environment variable.

    Related issues and pull requests on GitHub: #118.


0.3.1

(2025-03-25)

Bug fixes

  • Improved typing annotations, fixing some type errors under correct usage and improving typing robustness generally – by @Dreamsorcerer.

    Related issues and pull requests on GitHub: #103.


0.3.0

(2025-02-20)

Features

  • Implemented support for the free-threaded build of CPython 3.13 – by @lysnikolaou.

    Related issues and pull requests on GitHub: #84.

Packaging updates and notes for downstreams

  • Started building wheels for the free-threaded build of CPython 3.13 – by @lysnikolaou.

    Related issues and pull requests on GitHub: #84.

Contributor-facing changes

  • GitHub Actions CI/CD is now configured to manage caching pip-ecosystem dependencies using re-actors/cache-python-deps – an action by @webknjaz that takes into account ABI stability and the exact version of Python runtime.

    Related issues and pull requests on GitHub: #93.


0.2.1

(2024-12-01)

Bug fixes

  • Stopped implicitly allowing the use of Cython pre-release versions when building the distribution package – by @ajsanchezsanz and @markgreene74.

    Related commits on GitHub: 64df0a6.

  • Fixed wrapped and func not being accessible in the Cython versions of propcache.api.cached_property and propcache.api.under_cached_property decorators – by @bdraco.

    Related issues and pull requests on GitHub: #72.

Removals and backward incompatible breaking changes

  • Removed support for Python 3.8 as it has reached end of life – by @bdraco.

    Related issues and pull requests on GitHub: #57.

Packaging updates and notes for downstreams

  • Stopped implicitly allowing the use of Cython pre-release versions when building the distribution package – by @ajsanchezsanz and @markgreene74.

    Related commits on GitHub: 64df0a6.


0.2.0

(2024-10-07)

Bug fixes

  • Fixed loading the C-extensions on Python 3.8 – by @bdraco.

    Related issues and pull requests on GitHub: #26.

Features

  • Improved typing for the propcache.api.under_cached_property decorator – by @bdraco.

    Related issues and pull requests on GitHub: #38.

Improved documentation

  • Added API documentation for the propcache.api.cached_property and propcache.api.under_cached_property decorators – by @bdraco.

    Related issues and pull requests on GitHub: #16.

Packaging updates and notes for downstreams

  • Moved propcache.api.under_cached_property and propcache.api.cached_property to propcache.api – by @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, #24, #32.

  • Converted project to use a src layout – by @bdraco.

    Related issues and pull requests on GitHub: #22, #29, #37.


0.1.0

(2024-10-03)

Features

  • Added armv7l wheels – by @bdraco.

    Related issues and pull requests on GitHub: #5.


0.0.0

(2024-10-02)

  • Initial release.

Project details


Download files

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

Source Distribution

propcache-0.3.2.tar.gz (44.1 kB view details)

Uploaded Source

Built Distributions

propcache-0.3.2-py3-none-any.whl (12.7 kB view details)

Uploaded Python 3

propcache-0.3.2-cp313-cp313t-win_amd64.whl (44.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

propcache-0.3.2-cp313-cp313t-win32.whl (41.2 kB view details)

Uploaded CPython 3.13tWindows x86

propcache-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl (265.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

propcache-0.3.2-cp313-cp313t-musllinux_1_2_s390x.whl (271.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ s390x

propcache-0.3.2-cp313-cp313t-musllinux_1_2_ppc64le.whl (268.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ppc64le

propcache-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl (250.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

propcache-0.3.2-cp313-cp313t-musllinux_1_2_armv7l.whl (255.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

propcache-0.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl (268.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

propcache-0.3.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (265.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

propcache-0.3.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (282.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

propcache-0.3.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (278.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

propcache-0.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

propcache-0.3.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (252.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

propcache-0.3.2-cp313-cp313t-macosx_11_0_arm64.whl (44.7 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

propcache-0.3.2-cp313-cp313t-macosx_10_13_x86_64.whl (44.7 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ x86-64

propcache-0.3.2-cp313-cp313t-macosx_10_13_universal2.whl (76.6 kB view details)

Uploaded CPython 3.13tmacOS 10.13+ universal2 (ARM64, x86-64)

propcache-0.3.2-cp313-cp313-win_amd64.whl (40.7 kB view details)

Uploaded CPython 3.13Windows x86-64

propcache-0.3.2-cp313-cp313-win32.whl (37.2 kB view details)

Uploaded CPython 3.13Windows x86

propcache-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl (205.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

propcache-0.3.2-cp313-cp313-musllinux_1_2_s390x.whl (212.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

propcache-0.3.2-cp313-cp313-musllinux_1_2_ppc64le.whl (210.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

propcache-0.3.2-cp313-cp313-musllinux_1_2_i686.whl (197.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

propcache-0.3.2-cp313-cp313-musllinux_1_2_armv7l.whl (201.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

propcache-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl (205.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

propcache-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (206.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

propcache-0.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (215.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

propcache-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (215.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

propcache-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (208.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

propcache-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (196.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

propcache-0.3.2-cp313-cp313-macosx_11_0_arm64.whl (41.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

propcache-0.3.2-cp313-cp313-macosx_10_13_x86_64.whl (42.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

propcache-0.3.2-cp313-cp313-macosx_10_13_universal2.whl (71.3 kB view details)

Uploaded CPython 3.13macOS 10.13+ universal2 (ARM64, x86-64)

propcache-0.3.2-cp312-cp312-win_amd64.whl (41.5 kB view details)

Uploaded CPython 3.12Windows x86-64

propcache-0.3.2-cp312-cp312-win32.whl (37.7 kB view details)

Uploaded CPython 3.12Windows x86

propcache-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl (222.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

propcache-0.3.2-cp312-cp312-musllinux_1_2_s390x.whl (234.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

propcache-0.3.2-cp312-cp312-musllinux_1_2_ppc64le.whl (227.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

propcache-0.3.2-cp312-cp312-musllinux_1_2_i686.whl (213.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

propcache-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl (217.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

propcache-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl (222.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

propcache-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (224.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

propcache-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (233.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

propcache-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (234.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

propcache-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (227.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

propcache-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (212.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

propcache-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (43.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

propcache-0.3.2-cp312-cp312-macosx_10_13_x86_64.whl (43.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

propcache-0.3.2-cp312-cp312-macosx_10_13_universal2.whl (73.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ universal2 (ARM64, x86-64)

propcache-0.3.2-cp311-cp311-win_amd64.whl (41.5 kB view details)

Uploaded CPython 3.11Windows x86-64

propcache-0.3.2-cp311-cp311-win32.whl (37.8 kB view details)

Uploaded CPython 3.11Windows x86

propcache-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl (211.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

propcache-0.3.2-cp311-cp311-musllinux_1_2_s390x.whl (223.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

propcache-0.3.2-cp311-cp311-musllinux_1_2_ppc64le.whl (218.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

propcache-0.3.2-cp311-cp311-musllinux_1_2_i686.whl (206.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

propcache-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl (205.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

propcache-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl (214.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

propcache-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (213.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

propcache-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (225.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

propcache-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (227.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

propcache-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (217.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

propcache-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (204.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

propcache-0.3.2-cp311-cp311-macosx_11_0_arm64.whl (43.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

propcache-0.3.2-cp311-cp311-macosx_10_9_x86_64.whl (43.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

propcache-0.3.2-cp311-cp311-macosx_10_9_universal2.whl (74.2 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

propcache-0.3.2-cp310-cp310-win_amd64.whl (41.5 kB view details)

Uploaded CPython 3.10Windows x86-64

propcache-0.3.2-cp310-cp310-win32.whl (37.7 kB view details)

Uploaded CPython 3.10Windows x86

propcache-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl (197.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

propcache-0.3.2-cp310-cp310-musllinux_1_2_s390x.whl (206.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

propcache-0.3.2-cp310-cp310-musllinux_1_2_ppc64le.whl (204.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

propcache-0.3.2-cp310-cp310-musllinux_1_2_i686.whl (193.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

propcache-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl (191.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

propcache-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl (199.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

propcache-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (198.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

propcache-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (210.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

propcache-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (213.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

propcache-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (201.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

propcache-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (191.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

propcache-0.3.2-cp310-cp310-macosx_11_0_arm64.whl (43.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

propcache-0.3.2-cp310-cp310-macosx_10_9_x86_64.whl (43.1 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

propcache-0.3.2-cp310-cp310-macosx_10_9_universal2.whl (73.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

propcache-0.3.2-cp39-cp39-win_amd64.whl (42.0 kB view details)

Uploaded CPython 3.9Windows x86-64

propcache-0.3.2-cp39-cp39-win32.whl (38.2 kB view details)

Uploaded CPython 3.9Windows x86

propcache-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl (200.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

propcache-0.3.2-cp39-cp39-musllinux_1_2_s390x.whl (210.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

propcache-0.3.2-cp39-cp39-musllinux_1_2_ppc64le.whl (208.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

propcache-0.3.2-cp39-cp39-musllinux_1_2_i686.whl (196.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

propcache-0.3.2-cp39-cp39-musllinux_1_2_armv7l.whl (195.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

propcache-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl (203.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

propcache-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (200.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

propcache-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (214.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

propcache-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (217.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

propcache-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (204.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

propcache-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (194.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

propcache-0.3.2-cp39-cp39-macosx_11_0_arm64.whl (43.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

propcache-0.3.2-cp39-cp39-macosx_10_9_x86_64.whl (43.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

propcache-0.3.2-cp39-cp39-macosx_10_9_universal2.whl (74.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

File details

Details for the file propcache-0.3.2.tar.gz.

File metadata

  • Download URL: propcache-0.3.2.tar.gz
  • Upload date:
  • Size: 44.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for propcache-0.3.2.tar.gz
Algorithm Hash digest
SHA256 20d7d62e4e7ef05f221e0db2856b979540686342e7dd9973b815599c7057e168
MD5 1c073b491620a9f6d568276d61f80277
BLAKE2b-256 a61643264e4a779dd8588c21a70f0709665ee8f611211bdd2c87d952cfa7c776

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2.tar.gz:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-py3-none-any.whl.

File metadata

  • Download URL: propcache-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 12.7 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for propcache-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 98f1ec44fb675f5052cccc8e609c46ed23a35a1cfd18545ad4e29002d858a43f
MD5 09d226887faca694b756034f8e6f80af
BLAKE2b-256 cc35cc0aaecf278bb4575b8555f2b137de5ab821595ddae9da9d3cd1da4072c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-py3-none-any.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: propcache-0.3.2-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 44.9 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for propcache-0.3.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 9704bedf6e7cbe3c65eca4379a9b53ee6a83749f047808cbb5044d40d7d72198
MD5 09daf3bc713decddedda55402789c678
BLAKE2b-256 a4ff47f08595e3d9b5e149c150f88d9714574f1a7cbd89fe2817158a952674bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313t-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313t-win32.whl.

File metadata

  • Download URL: propcache-0.3.2-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 41.2 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for propcache-0.3.2-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 f86e5d7cd03afb3a1db8e9f9f6eff15794e79e791350ac48a8c924e6f439f394
MD5 686224fdf992c5844e2022d7a23a8348
BLAKE2b-256 9a4cb0fe775a2bdd01e176b14b574be679d84fc83958335790f7c9a686c1f468

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313t-win32.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4445542398bd0b5d32df908031cb1b30d43ac848e20470a878b770ec2dcc6330
MD5 4503b96d352f1aa08b0202b9c39cf504
BLAKE2b-256 35919cb56efbb428b006bb85db28591e40b7736847b8331d43fe335acf95f6c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313t-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 acdf05d00696bc0447e278bb53cb04ca72354e562cf88ea6f9107df8e7fd9770
MD5 d97744905671f43c820cdbddc98943c7
BLAKE2b-256 c5982c12407a7e4fbacd94ddd32f3b1e3d5231e77c30ef7162b12a60e2dd5ce3

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313t-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0cc17efde71e12bbaad086d679ce575268d70bc123a5a71ea7ad76f70ba30bba
MD5 d5b2822712f80d4b9a9ed2ad2cf73fc5
BLAKE2b-256 eeb00dd03616142baba28e8b2d14ce5df6631b4673850a3d4f9c0f9dd714a404

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313t-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03c89c1b14a5452cf15403e291c0ccd7751d5b9736ecb2c5bab977ad6c5bcd81
MD5 211cacd6dae33f15c05d9160dd0948a3
BLAKE2b-256 8b958e6a6bbbd78ac89c30c225210a5c687790e532ba4088afb8c0445b77ef37

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313t-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d8f3f0eebf73e3c0ff0e7853f68be638b4043c65a70517bb575eff54edd8dbe
MD5 90b3d8fdb47c840d70f32cd6825c91c1
BLAKE2b-256 3ecafcd54f78b59e3f97b3b9715501e3147f5340167733d27db423aa321e7148

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313t-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46d7f8aa79c927e5f987ee3a80205c987717d3659f035c85cf0c3680526bdb44
MD5 142b81723e461e2a5311fb9eaca6e582
BLAKE2b-256 364f345ca9183b85ac29c8694b0941f7484bf419c7f0fea2d1e386b4f7893eed

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313t-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fad3b2a085ec259ad2c2842666b2a0a49dea8463579c606426128925af1ed725
MD5 f16097a6157f7ea844d51919a0ff3aed
BLAKE2b-256 2b00a10afce3d1ed0287cef2e09506d3be9822513f2c1e96457ee369adb9a6cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab50cef01b372763a13333b4e54021bdcb291fc9a8e2ccb9c2df98be51bcde6c
MD5 3af73309c8ea7a6f44e21ee20d3fb3e6
BLAKE2b-256 f89d994a5c1ce4389610838d1caec74bdf0e98b306c70314d46dbe4fcf21a3e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f1304b085c83067914721e7e9d9917d41ad87696bf70f0bc7dee450e9c71ad0a
MD5 1d52e455f238adf313678f03de1390a5
BLAKE2b-256 74ab935beb6f1756e0476a4d5938ff44bf0d13a055fed880caf93859b4f1baf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f066b437bb3fa39c58ff97ab2ca351db465157d68ed0440abecb21715eb24b28
MD5 f54cb1deb535f2e649785137b14b4c25
BLAKE2b-256 a400faa1b1b7c3b74fc277f8642f32a4c72ba1d7b2de36d7cdfb676db7f4303e

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 261fa020c1c14deafd54c76b014956e2f86991af198c51139faf41c4d5e83892
MD5 147f3d20776906e00498ffbae7efa822
BLAKE2b-256 2ea82aa6716ffa566ca57c749edb909ad27884680887d68517e4be41b02299f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74413c0ba02ba86f55cf60d18daab219f7e531620c15f1e23d95563f505efe7e
MD5 f2f840d59fb05bcbe79b4228b0ccb445
BLAKE2b-256 367bf025e06ea51cb72c52fb87e9b395cced02786610b60a3ed51da8af017170

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313t-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 156c03d07dc1323d8dacaa221fbe028c5c70d16709cdd63502778e6c3ccca1b0
MD5 9d4c5d9d2add09308810d74104286fe5
BLAKE2b-256 0cda64a2bb16418740fa634b0e9c3d29edff1db07f56d3546ca2d86ddf0305e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313t-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313t-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313t-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 9a3cf035bbaf035f109987d9d55dc90e4b0e36e04bbbb95af3055ef17194057b
MD5 46e2ee8c71169ff93fd7d25ced811b40
BLAKE2b-256 a43a6ece377b55544941a08d03581c7bc400a3c8cd3c2865900a68d5de79e21f

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313t-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: propcache-0.3.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 40.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for propcache-0.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e41671f1594fc4ab0a6dec1351864713cb3a279910ae8b58f884a88a0a632c05
MD5 e633e87013c4e339ea9feeffa7b68cd4
BLAKE2b-256 d3f5b369e026b09a26cd77aa88d8fffd69141d2ae00a2abaaf5380d2603f4b7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: propcache-0.3.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 37.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for propcache-0.3.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8a08154613f2249519e549de2330cf8e2071c2887309a7b07fb56098f5170a02
MD5 2243b7b55f6443b6504b52a48698fd51
BLAKE2b-256 d1e59076a0bbbfb65d1198007059c65639dfd56266cf8e477a9707e4b1999ff4

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313-win32.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c181cad81158d71c41a2bce88edce078458e2dd5ffee7eddd6b05da85079f43
MD5 9d3a93ad5315e71e0cacbf9f33754fe8
BLAKE2b-256 b3dbea12a49aa7b2b6d68a5da8293dcf50068d48d088100ac016ad92a6a780e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 fd3e6019dc1261cd0291ee8919dd91fbab7b169bb76aeef6c716833a3f65d206
MD5 190b110e398447033fa428905bdaac1a
BLAKE2b-256 b980abeb4a896d2767bf5f1ea7b92eb7be6a5330645bd7fb844049c0e4045d9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4adfb44cb588001f68c5466579d3f1157ca07f7504fc91ec87862e2b8e556b88
MD5 21f8200f4bdcca4a882a323b722ab01d
BLAKE2b-256 7c54fc7152e517cf5578278b242396ce4d4b36795423988ef39bb8cd5bf274c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 54e02207c79968ebbdffc169591009f4474dde3b4679e16634d34c9363ff56b4
MD5 66dd21f840ddb05e08bb9ce38eab16e7
BLAKE2b-256 cd4ae65276c7477533c59085251ae88505caf6831c0e85ff8b2e31ebcbb949b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 92b69e12e34869a6970fd2f3da91669899994b47c98f5d430b781c26f1d9f387
MD5 1b195058d0d438184de2fb13ad3bf765
BLAKE2b-256 0fca2f4aa819c357d3107c3763d7ef42c03980f9ed5c48c82e01e25945d437c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a2f2235ac46a7aa25bdeb03a9e7060f6ecbd213b1f9101c43b3090ffb971ef6
MD5 896b778800a2bf6272f3d6be87447f1e
BLAKE2b-256 b93f3bdd14e737d145114a5eb83cb172903afba7242f67c5877f9909a20d948d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c1396592321ac83157ac03a2023aa6cc4a3cc3cfdecb71090054c09e5a7cce3
MD5 f6e10bc2db3061d5b8202058124b7efa
BLAKE2b-256 af81b324c44ae60c56ef12007105f1460d5c304b0626ab0cc6b07c8f2a9aa0b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 310d11aa44635298397db47a3ebce7db99a4cc4b9bbdfcf6c98a60c8d5261cf1
MD5 e0e47bec21791cdbc5ef7da2f6f80def
BLAKE2b-256 61c1d72ea2dc83ac7f2c8e182786ab0fc2c7bd123a1ff9b7975bee671866fe5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a544caaae1ac73f1fecfae70ded3e93728831affebd017d53449e3ac052ac1e
MD5 fdbf30427363fe60f17f8af8ee6aa4d3
BLAKE2b-256 3a382085cda93d2c8b6ec3e92af2c89489a36a5886b712a34ab25de9fbca7992

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1a342c834734edb4be5ecb1e9fb48cb64b1e2320fccbd8c54bf8da8f2a84c33
MD5 a50576d215b4c6b90ece68293307b1c1
BLAKE2b-256 5bad3f0f9a705fb630d175146cd7b1d2bf5555c9beaed54e94132b21aac098a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8cabf5b5902272565e78197edb682017d21cf3b550ba0460ee473753f28d23c1
MD5 0a5a339d7b5e002312a7f42ff39f1379
BLAKE2b-256 097388549128bb89e66d2aff242488f62869014ae092db63ccea53c1cc75a81d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f08f1cc28bd2eade7a8a3d2954ccc673bb02062e3e7da09bc75d843386b342f
MD5 68498d2753c532d12f14c0cf2520ce5f
BLAKE2b-256 8c96ef98f91bbb42b79e9bb82bdd348b255eb9d65f14dbbe3b1594644c4073f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9ecb0aad4020e275652ba3975740f241bd12a61f1a784df044cf7477a02bc252
MD5 2952eca6094f85ce97d5130f8ca32d9c
BLAKE2b-256 6199d606cb7986b60d89c36de8a85d58764323b3a5ff07770a99d8e993b3fa73

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp313-cp313-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 ca592ed634a73ca002967458187109265e980422116c0a107cf93d81f95af945
MD5 a62d94215b5237cf7c5e9c48e94b74b9
BLAKE2b-256 dcd18c747fafa558c603c4ca19d8e20b288aa0c7cda74e9402f50f31eb65267e

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp313-cp313-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: propcache-0.3.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 41.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for propcache-0.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7046e79b989d7fe457bb755844019e10f693752d169076138abf17f31380800c
MD5 51da838217c29506a22f902acc343140
BLAKE2b-256 1961d582be5d226cf79071681d1b46b848d6cb03d7b70af7063e33a2787eaa03

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp312-cp312-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: propcache-0.3.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 37.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for propcache-0.3.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 df4a81b9b53449ebc90cc4deefb052c1dd934ba85012aa912c7ea7b7e38b60c1
MD5 abf200684266dcccf1f3eaf8d15e391c
BLAKE2b-256 7cd234b9eac8c35f79f8a962546b3e97e9d4b990c420ee66ac8255d5d9611648

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp312-cp312-win32.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 62b4239611205294cc433845b914131b2a1f03500ff3c1ed093ed216b82621e1
MD5 43fafa26db642725c82732a039772bf3
BLAKE2b-256 a47c3f539fcae630408d0bd8bf3208b9a647ccad10976eda62402a80adf8fc34

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ce2ac2675a6aa41ddb2a0c9cbff53780a617ac3d43e620f8fd77ba1c84dcfc06
MD5 4c310c0d7b053d1fe9d0f7327cebda6c
BLAKE2b-256 b70537ae63a0087677e90b1d14710e532ff104d44bc1efa3b3970fff99b891dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp312-cp312-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0b504d29f3c47cf6b9e936c1852246c83d450e8e063d50562115a6be6d3a2535
MD5 58d78bd8477bbcf9da0a2d6a409745e3
BLAKE2b-256 07942d7d1e328f45ff34a0a284cf5a2847013701e24c2a53117e7c280a4316b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cab90ac9d3f14b2d5050928483d3d3b8fb6b4018893fc75710e6aa361ecb2474
MD5 cbaefe2cc6d27d2ecee7130afcb3159c
BLAKE2b-256 5bd286fd6f7adffcfc74b42c10a6b7db721d1d9ca1055c45d39a1a8f2a740a21

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b77ec3c257d7816d9f3700013639db7491a434644c906a2578a11daf13176251
MD5 ade609323b40abb80741606cf24f8321
BLAKE2b-256 ba11ace870d0aafe443b33b2f0b7efdb872b7c3abd505bfb4890716ad7865e9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7a4f30862869fa2b68380d677cc1c5fcf1e0f2b9ea0cf665812895c75d0ca3b8
MD5 9235ca096dc741cf1b3409475c4e6a72
BLAKE2b-256 5e33ca98368586c9566a6b8d5ef66e30484f8da84c0aac3f2d9aec6d31a11bd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee6f22b6eaa39297c751d0e80c0d3a454f112f5c6481214fcf4c092074cecd67
MD5 ce134fb2647d5f66ef21f5d963f3c1ee
BLAKE2b-256 377c54fd5301ef38505ab235d98827207176a5c9b2aa61939b10a460ca53e123

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 035e631be25d6975ed87ab23153db6a73426a48db688070d925aa27e996fe93c
MD5 b9b2b1124c7fe9e4a8f7e9b0789e0667
BLAKE2b-256 11601d0ed6fff455a028d678df30cc28dcee7af77fa2b0e6962ce1df95c9a2a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 55780d5e9a2ddc59711d727226bb1ba83a22dd32f64ee15594b9392b1f544eb1
MD5 6e2ad54463ad37bf82442cc27b96a139
BLAKE2b-256 9dca63b520d2f3d418c968bf596839ae26cf7f87bead026b6192d4da6a08c467

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bca54bd347a253af2cf4544bbec232ab982f4868de0dd684246b67a51bc6b1db
MD5 36357f187dcaeaf99eb7a957f40088bc
BLAKE2b-256 372c489afe311a690399d04a3e03b069225670c1d489eb7b044a566511c1c498

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7ca3aee1aa955438c4dba34fc20a9f390e4c79967257d830f137bd5a8a32ed3b
MD5 c3ab2f2051abccae391e8357a64866ac
BLAKE2b-256 ee1a89a40e0846f5de05fdc6779883bf46ba980e6df4d2ff8fb02643de126592

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce26862344bdf836650ed2487c3d724b00fbfec4233a1013f597b78c1cb73615
MD5 8e8bb6562ceece1dc3aef7aeddd90292
BLAKE2b-256 0cc80393a0a3a2b8760eb3bde3c147f62b20044f0ddac81e9d6ed7318ec0d852

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 28710b0d3975117239c76600ea351934ac7b5ff56e60953474342608dbbb6154
MD5 5d1826d1865bff4948d2197eb66218ba
BLAKE2b-256 af6e21293133beb550f9c901bbece755d582bfaf2176bee4774000bd4dd41884

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp312-cp312-macosx_10_13_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 8de106b6c84506b31c27168582cd3cb3000a6412c16df14a8628e5871ff83c10
MD5 338c9c86c71cd0f755b940549239ffb0
BLAKE2b-256 a8429ca01b0a6f48e81615dca4765a8f1dd2c057e0540f6116a27dc5ee01dfb6

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp312-cp312-macosx_10_13_universal2.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: propcache-0.3.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 41.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for propcache-0.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e53af8cb6a781b02d2ea079b5b853ba9430fcbe18a8e3ce647d5982a3ff69f39
MD5 64045c1d4b8812612d3163825e2b676c
BLAKE2b-256 e12d89fe4489a884bc0da0c3278c552bd4ffe06a1ace559db5ef02ef24ab446b

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp311-cp311-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: propcache-0.3.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 37.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for propcache-0.3.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 36c8d9b673ec57900c3554264e630d45980fd302458e4ac801802a7fd2ef7897
MD5 65603ca7fc10d1e09ced1a5692cb647c
BLAKE2b-256 960a7d5260b914e01d1d0906f7f38af101f8d8ed0dc47426219eeaf05e8ea7c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp311-cp311-win32.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85871b050f174bc0bfb437efbdb68aaf860611953ed12418e4361bc9c392749e
MD5 465a2ad53b2a9f301e95a81280bc015c
BLAKE2b-256 88e4ebe30fc399e98572019eee82ad0caf512401661985cbd3da5e3140ffa1b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2a4092e8549031e82facf3decdbc0883755d5bbcc62d3aea9d9e185549936dcf
MD5 dfa8ed105850dd64c2afbbcc230ab70e
BLAKE2b-256 5b2cba4f1c0e8a4b4c75910742f0d333759d441f65a1c7f34683b4a74c0ee015

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp311-cp311-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 eef914c014bf72d18efb55619447e0aecd5fb7c2e3fa7441e2e5d6099bddff7e
MD5 61099afd1bbe11e13c59d81f680ce609
BLAKE2b-256 b77fad6a3c22630aaa5f618b4dc3c3598974a72abb4c18e45a50b3cdd091eb2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5f57aa0847730daceff0497f417c9de353c575d8da3579162cc74ac294c5369e
MD5 a80e0e4a1952443e8e880b65dc406b64
BLAKE2b-256 7a23fae0ff9b54b0de4e819bbe559508da132d5683c32d84d0dc2ccce3563ed4

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c0075bf773d66fa8c9d41f66cc132ecc75e5bb9dd7cce3cfd14adc5ca184cb95
MD5 d9781dfe626f2b2008fb56239e9be865
BLAKE2b-256 310bbd3e0c00509b609317df4a18e6b05a450ef2d9a963e1d8bc9c9415d86f30

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5745bc7acdafa978ca1642891b82c19238eadc78ba2aaa293c6863b304e552d7
MD5 6be24a75fd1a6568b8247641908ba2a0
BLAKE2b-256 e3797bf5ab9033b8b8194cc3f7cf1aaa0e9c3256320726f64a3e1f113a812dce

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c144ca294a204c470f18cf4c9d78887810d04a3e2fbb30eea903575a779159df
MD5 97fb5c4ef0e3ca7bf749c9d173decc1d
BLAKE2b-256 5de6116ba39448753b1330f48ab8ba927dcd6cf0baea8a0ccbc512dfb49ba670

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 62180e0b8dbb6b004baec00a7983e4cc52f5ada9cd11f48c3528d8cfa7b96a66
MD5 43c80da14f91de826e2a08e31668bf8b
BLAKE2b-256 de0307d992ccb6d930398689187e1b3c718339a1c06b8b145a8d9650e4726166

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59d61f6970ecbd8ff2e9360304d5c8876a6abd4530cb752c06586849ac8a9dc9
MD5 269d35f387096bfbcde5b7948382e2f3
BLAKE2b-256 c52a866726ea345299f7ceefc861a5e782b045545ae6940851930a6adaf1fca6

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be29c4f4810c5789cf10ddf6af80b041c724e629fa51e308a7a0fb19ed1ef7bf
MD5 fdf4460015d7f25c76cff5635cb43071
BLAKE2b-256 b3cee96392460f9fb68461fabab3e095cb00c8ddf901205be4eae5ce246e5b7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c5c2a784234c28854878d68978265617aa6dc0780e53d44b4d67f3651a17a9a2
MD5 5bf0d9596f926272ed3628ecb0c21aa6
BLAKE2b-256 a685f01f5d97e54e428885a5497ccf7f54404cbb4f906688a1690cd51bf597dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2dc1f4a1df4fecf4e6f68013575ff4af84ef6f478fe5344317a65d38a8e6dc9
MD5 b9c69347d656546ba26ecbc2180126a2
BLAKE2b-256 46921ad5af0df781e76988897da39b5f086c2bf0f028b7f9bd1f409bb05b6874

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 06766d8f34733416e2e34f46fea488ad5d60726bb9481d3cddf89a6fa2d9603f
MD5 0f11a164ca90de01e7c42f21072b19c8
BLAKE2b-256 d6291e34000e9766d112171764b9fa3226fa0153ab565d0c242c70e9945318a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0b8d2f607bd8f80ddc04088bc2a037fdd17884a6fcadc47a96e334d72f3717be
MD5 a39d16c0f2178876bc969fdc4fc15de7
BLAKE2b-256 808de8b436717ab9c2cfc23b116d2c297305aa4cd8339172a456d61ebf5669b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp311-cp311-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: propcache-0.3.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 41.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for propcache-0.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7435d766f978b4ede777002e6b3b6641dd229cd1da8d3d3106a45770365f9ad9
MD5 15093106b48a97004d9728903fae47bd
BLAKE2b-256 383507a471371ac89d418f8d0b699c75ea6dca2041fbda360823de21f6a9ce0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp310-cp310-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: propcache-0.3.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 37.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for propcache-0.3.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 404d70768080d3d3bdb41d0771037da19d8340d50b08e104ca0e7f9ce55fce70
MD5 d3a978222d78b0852c420fc04f51db9f
BLAKE2b-256 22ecc469c9d59dada8a7679625e0440b544fe72e99311a4679c279562051f6fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp310-cp310-win32.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb075ad271405dcad8e2a7ffc9a750a3bf70e533bd86e89f0603e607b93aa64c
MD5 b9e4e8336277ebcce57902adfb65f731
BLAKE2b-256 7ffe74d54cf9fbe2a20ff786e5f7afcfde446588f0cf15fb2daacfbc267b866c

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2183111651d710d3097338dd1893fcf09c9f54e27ff1a8795495a16a469cc90b
MD5 b443dc7d56d0cbf46203e0ca762740c1
BLAKE2b-256 b253e4d31dd5170b4a0e2e6b730f2385a96410633b4833dc25fe5dffd1f73294

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp310-cp310-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 70bd8b9cd6b519e12859c99f3fc9a93f375ebd22a50296c3a295028bea73b9e7
MD5 aad8022bf644e5f842a4ada49af2e8b2
BLAKE2b-256 1edfe6d3c7574233164b6330b9fd697beeac402afd367280e6dc377bb99b43d9

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6107ddd08b02654a30fb8ad7a132021759d750a82578b94cd55ee2772b6ebea2
MD5 52572dff5fa2a616b0772ac7b6753d7b
BLAKE2b-256 f2b3e4756258749bb2d3b46defcff606a2f47410bab82be5824a67e84015b267

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4927842833830942a5d0a56e6f4839bc484785b8e1ce8d287359794818633ba0
MD5 54a145adf7e98fdd8a85a5439223b345
BLAKE2b-256 1644447f2253d859602095356007657ee535e0093215ea0b3d1d6a41d16e5201

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aff2e4e06435d61f11a428360a932138d0ec288b0a31dd9bd78d200bd4a2b339
MD5 39058de5cb6eb99185d5475fb35097ad
BLAKE2b-256 54144701c33852937a22584e08abb531d654c8bcf7948a8f87ad0a4822394147

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9da1cf97b92b51253d5b68cf5a2b9e0dafca095e36b7f2da335e27dc6172a614
MD5 c0d660aa59b21f04c5faae6dba2224f8
BLAKE2b-256 7cbb38fd08b278ca85cde36d848091ad2b45954bc5f15cce494bb300b9285831

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 64a67fb39229a8a8491dd42f864e5e263155e729c2e7ff723d6e25f596b1e8cb
MD5 6a9fc7f66753cd059e2d07d0bc0f3934
BLAKE2b-256 5aaf9893b7d878deda9bb69fcf54600b247fba7317761b7db11fede6e0f28bd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 55ffda449a507e9fbd4aca1a7d9aa6753b07d6166140e5a18d2ac9bc49eac220
MD5 62b64a0db0c66b2b2b7772b17dcde068
BLAKE2b-256 c40a550ea0f52aac455cb90111c8bab995208443e46d925e51e2f6ebdf869525

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9bec58347a5a6cebf239daba9bda37dffec5b8d2ce004d9fe4edef3d2815137e
MD5 d6c29e006526a6cc1bb1b99006bc19d6
BLAKE2b-256 22e158da211eb8fdc6fc854002387d38f415a6ca5f5c67c1315b204a5d3e9d7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5f559e127134b07425134b4065be45b166183fdcb433cb6c24c8e4149056ad50
MD5 17542aab49d26e2165b45d7bb5d60f1b
BLAKE2b-256 788c9fe55bd01d362bafb413dfe508c48753111a1e269737fa143ba85693592c

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3def3da3ac3ce41562d85db655d18ebac740cb3fa4367f11a52b3da9d03a5cc3
MD5 87f8d25486ef458681334a816e462ac1
BLAKE2b-256 637ce9399ba5da7780871db4eac178e9c2e204c23dd3e7d32df202092a1ed400

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0d0fda578d1dc3f77b6b5a5dce3b9ad69a8250a891760a548df850a5e8da87f3
MD5 55c3b0d2d96223cc626165d35829387a
BLAKE2b-256 cd4ead52a7925ff01c1325653a730c7ec3175a23f948f08626a534133427dcff

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 22d9962a358aedbb7a2e36187ff273adeaab9743373a272976d2e348d08c7770
MD5 a1de1f9b65e2e29ad0515ee066529ceb
BLAKE2b-256 ab14510deed325e262afeb8b360043c5d7c960da7d3ecd6d6f9496c9c56dc7f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp310-cp310-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: propcache-0.3.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 42.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for propcache-0.3.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7a2368eed65fc69a7a7a40b27f22e85e7627b74216f0846b04ba5c116e191ec9
MD5 7a0964406206d83d0a941c72171626d2
BLAKE2b-256 6774d666795fb9ba1dc139d30de64f3b6fd1ff9c9d3d96ccfdb992cd715ce5d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp39-cp39-win_amd64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: propcache-0.3.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 38.2 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for propcache-0.3.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4ba3fef1c30f306b1c274ce0b8baaa2c3cdd91f645c48f06394068f37d3837a1
MD5 aa0beee14f40223990ea381e6f1e3090
BLAKE2b-256 bf32889f4903ddfe4a9dc61da71ee58b763758cf2d608fe1decede06e6467f8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp39-cp39-win32.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34a624af06c048946709f4278b4176470073deda88d91342665d95f7c6270fbe
MD5 744aebff984c39bcd887c10df1ca8526
BLAKE2b-256 5684b6d8a7ecf3f62d7dd09d9d10bbf89fad6837970ef868b35b5ffa0d24d9de

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 2ca6d378f09adb13837614ad2754fa8afaee330254f404299611bce41a8438cb
MD5 662a3412c0c20939acd50b1a156bd7e0
BLAKE2b-256 bbecd98ea8d5a4d8fe0e372033f5254eddf3254344c0c5dc6c49ab84349e4733

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp39-cp39-musllinux_1_2_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 21d8759141a9e00a681d35a1f160892a36fb6caa715ba0b832f7747da48fb6ea
MD5 1c58069fa8f232a558ff8a2ca53326c4
BLAKE2b-256 7658ced2757a46f55b8c84358d6ab8de4faf57cba831c51e823654da7144b13a

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp39-cp39-musllinux_1_2_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db429c19a6c7e8a1c320e6a13c99799450f411b02251fb1b75e6217cf4a14fcb
MD5 3bce1929837c240d7f1180dc22ea100d
BLAKE2b-256 29bd760c5c6a60a4a2c55a421bc34a25ba3919d49dee411ddb9d1493bb51d46e

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cc2782eb0f7a16462285b6f8394bbbd0e1ee5f928034e941ffc444012224171b
MD5 e591a428b3a4508baaf28b685fda4548
BLAKE2b-256 62cb3bdba2b736b3e45bc0e40f4370f745b3e711d439ffbffe3ae416393eece9

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp39-cp39-musllinux_1_2_armv7l.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d81ac3ae39d38588ad0549e321e6f773a4e7cc68e7751524a22885d5bbadf886
MD5 ffd7290c3bb4eeaff262a7786efe03a9
BLAKE2b-256 466c17b521a6b3b7cbe277a4064ff0aa9129dd8c89f425a5a9b6b4dd51cc3ff4

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31248e44b81d59d6addbb182c4720f90b44e1efdc19f58112a3c3a1615fb47ef
MD5 710ed19221f164dd07db1aab99e4cb78
BLAKE2b-256 9ae2eecf6989870988dfd731de408a6fa366e853d361a06c2133b5878ce821ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 76cace5d6b2a54e55b137669b30f31aa15977eeed390c7cbfb1dafa8dfe9a701
MD5 dc3a1f339be6e860ccc6edd64879a1e9
BLAKE2b-256 921d65fa889eb3b2a7d6e4ed3c2b568a9cb8817547a1450b572de7bf24872800

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4a996adb6904f85894570301939afeee65f072b4fd265ed7e569e8d9058e4ec
MD5 415dcf49c98f63fbf2c38c53bbfc077e
BLAKE2b-256 3fe07aff5de0c535f783b0c8be5bdb750c305c1961d69fbb136939926e155d98

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e514326b79e51f0a177daab1052bc164d9d9e54133797a3a58d24c9c87a3fe6d
MD5 3df8f0fb7168384e3a5af81fe33d2810
BLAKE2b-256 a2a20b2b5a210ff311260002a315f6f9531b65a36064dfb804655432b2f7d3e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 abb7fa19dbf88d3857363e0493b999b8011eea856b846305d8c0512dfdf8fbb1
MD5 9d9a0a0e6f88a4f7e33d281021710536
BLAKE2b-256 1206c32be4950967f18f77489268488c7cdc78cbfc65a8ba8101b15e526b83dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 261df2e9474a5949c46e962065d88eb9b96ce0f2bd30e9d3136bcde84befd8f2
MD5 be32422de5659ce4c04fc8604952847c
BLAKE2b-256 23f79cb719749152d8b26d63801b3220ce2d3931312b2744d2b3a088b0ee9947

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1f43837d4ca000243fd7fd6301947d7cb93360d03cd08369969450cc6b2ce3b4
MD5 c1a8eefaa343144b21fa05d2662678aa
BLAKE2b-256 d385cab84c86966e1d354cf90cdc4ba52f32f99a5bca92a1529d666d957d7686

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file propcache-0.3.2-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.3.2-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 a7fad897f14d92086d6b03fdd2eb844777b0c4d7ec5e3bac0fbae2ab0602bbe5
MD5 94ba3d8ddc2dc79fbfaff3a30bea62ef
BLAKE2b-256 6c398ea9bcfaaff16fd0b0fc901ee522e24c9ec44b4ca0229cfffb8066a06959

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.3.2-cp39-cp39-macosx_10_9_universal2.whl:

Publisher: ci-cd.yml on aio-libs/propcache

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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