Skip to main content

Accelerated property cache

Project description

propcache

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

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

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.2.0.tar.gz (41.0 kB view details)

Uploaded Source

Built Distributions

propcache-0.2.0-py3-none-any.whl (11.6 kB view details)

Uploaded Python 3

propcache-0.2.0-cp313-cp313-win_amd64.whl (43.7 kB view details)

Uploaded CPython 3.13 Windows x86-64

propcache-0.2.0-cp313-cp313-win32.whl (39.7 kB view details)

Uploaded CPython 3.13 Windows x86

propcache-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (221.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

propcache-0.2.0-cp313-cp313-musllinux_1_2_s390x.whl (228.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ s390x

propcache-0.2.0-cp313-cp313-musllinux_1_2_ppc64le.whl (222.3 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ppc64le

propcache-0.2.0-cp313-cp313-musllinux_1_2_i686.whl (212.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

propcache-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (212.5 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARMv7l

propcache-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (217.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ ARM64

propcache-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (231.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

propcache-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (237.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

propcache-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (234.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

propcache-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (229.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

propcache-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (217.8 kB view details)

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

propcache-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (44.4 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

propcache-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl (45.1 kB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

propcache-0.2.0-cp313-cp313-macosx_10_13_universal2.whl (78.1 kB view details)

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

propcache-0.2.0-cp312-cp312-win_amd64.whl (44.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

propcache-0.2.0-cp312-cp312-win32.whl (40.2 kB view details)

Uploaded CPython 3.12 Windows x86

propcache-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (235.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

propcache-0.2.0-cp312-cp312-musllinux_1_2_s390x.whl (244.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ s390x

propcache-0.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl (238.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ppc64le

propcache-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (227.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

propcache-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (225.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

propcache-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (229.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

propcache-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (248.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

propcache-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (253.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

propcache-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (251.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

propcache-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (246.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

propcache-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (233.6 kB view details)

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

propcache-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (45.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

propcache-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl (46.4 kB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

propcache-0.2.0-cp312-cp312-macosx_10_13_universal2.whl (80.8 kB view details)

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

propcache-0.2.0-cp311-cp311-win_amd64.whl (44.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

propcache-0.2.0-cp311-cp311-win32.whl (40.5 kB view details)

Uploaded CPython 3.11 Windows x86

propcache-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (227.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

propcache-0.2.0-cp311-cp311-musllinux_1_2_s390x.whl (237.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ s390x

propcache-0.2.0-cp311-cp311-musllinux_1_2_ppc64le.whl (233.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ppc64le

propcache-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (220.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

propcache-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (217.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

propcache-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (224.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

propcache-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (236.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

propcache-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (243.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

propcache-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (244.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

propcache-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (236.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

propcache-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (224.8 kB view details)

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

propcache-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (45.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

propcache-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl (46.4 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

propcache-0.2.0-cp311-cp311-macosx_10_9_universal2.whl (80.8 kB view details)

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

propcache-0.2.0-cp310-cp310-win_amd64.whl (45.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

propcache-0.2.0-cp310-cp310-win32.whl (40.5 kB view details)

Uploaded CPython 3.10 Windows x86

propcache-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (207.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

propcache-0.2.0-cp310-cp310-musllinux_1_2_s390x.whl (215.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ s390x

propcache-0.2.0-cp310-cp310-musllinux_1_2_ppc64le.whl (211.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ppc64le

propcache-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (201.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

propcache-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (199.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

propcache-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (202.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

propcache-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (208.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

propcache-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (221.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

propcache-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (222.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

propcache-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (208.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

propcache-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (200.1 kB view details)

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

propcache-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (45.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

propcache-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl (46.3 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

propcache-0.2.0-cp310-cp310-macosx_10_9_universal2.whl (80.7 kB view details)

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

propcache-0.2.0-cp39-cp39-win_amd64.whl (45.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

propcache-0.2.0-cp39-cp39-win32.whl (41.0 kB view details)

Uploaded CPython 3.9 Windows x86

propcache-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl (211.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

propcache-0.2.0-cp39-cp39-musllinux_1_2_s390x.whl (220.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ s390x

propcache-0.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl (215.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ppc64le

propcache-0.2.0-cp39-cp39-musllinux_1_2_i686.whl (204.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

propcache-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl (203.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

propcache-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl (208.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

propcache-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (211.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

propcache-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (225.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

propcache-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (226.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

propcache-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (211.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

propcache-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (203.1 kB view details)

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

propcache-0.2.0-cp39-cp39-macosx_11_0_arm64.whl (46.1 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

propcache-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl (47.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

propcache-0.2.0-cp39-cp39-macosx_10_9_universal2.whl (81.9 kB view details)

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

propcache-0.2.0-cp38-cp38-win_amd64.whl (45.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

propcache-0.2.0-cp38-cp38-win32.whl (41.0 kB view details)

Uploaded CPython 3.8 Windows x86

propcache-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl (207.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

propcache-0.2.0-cp38-cp38-musllinux_1_2_s390x.whl (229.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ s390x

propcache-0.2.0-cp38-cp38-musllinux_1_2_ppc64le.whl (225.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ppc64le

propcache-0.2.0-cp38-cp38-musllinux_1_2_i686.whl (201.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

propcache-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl (200.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

propcache-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl (202.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

propcache-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (213.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

propcache-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (222.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

propcache-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (224.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

propcache-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (212.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

propcache-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (205.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

propcache-0.2.0-cp38-cp38-macosx_11_0_arm64.whl (46.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

propcache-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl (47.2 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

propcache-0.2.0-cp38-cp38-macosx_10_9_universal2.whl (82.3 kB view details)

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

File details

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

File metadata

  • Download URL: propcache-0.2.0.tar.gz
  • Upload date:
  • Size: 41.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for propcache-0.2.0.tar.gz
Algorithm Hash digest
SHA256 df81779732feb9d01e5d513fad0122efb3d53bbc75f61b2a4f29a020bc985e70
MD5 70b121a9845a0da06eccfbc42ff74335
BLAKE2b-256 a94d5e5a60b78dbc1d464f8a7bbaeb30957257afdc8512cbb9dfd5659304f5cd

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: propcache-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 11.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for propcache-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2ccc28197af5313706511fab3a8b66dcd6da067a1331372c82ea1cb74285e036
MD5 21bf1db914fbed62448fd4015a73e396
BLAKE2b-256 3db6e6d98278f2d49b22b4d033c9f792eda783b9ab2094b041f013fc69bcde87

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8f188cfcc64fb1266f4684206c9de0e80f54622c3f22a910cbd200478aeae61e
MD5 549c3e15428ab64b57222eb7ae01f1d8
BLAKE2b-256 88e70eef39eff84fa3e001b44de0bd41c7c0e3432e7648ffd3d64955910f002d

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: propcache-0.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 39.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for propcache-0.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f902804113e032e2cdf8c71015651c97af6418363bea8d78dc0911d56c335032
MD5 b1d003f06d7d34d074eeb9ec647b3d50
BLAKE2b-256 7cbdc7a6a719a6b3dd8b3aeadb3675b5783983529e4a3185946aa444d3e078f6

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4a91d44379f45f5e540971d41e4626dacd7f01004826a18cb048e7da7e96544
MD5 73232c1f0ea8926d243145b019e55799
BLAKE2b-256 8d6f6272ecc7a8daad1d0754cfc6c8846076a8cb13f810005c79b15ce0ef0cf2

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d5bed7f9805cc29c780f3aee05de3262ee7ce1f47083cfe9f77471e9d6777e83
MD5 9feddaa63284adc38bac31dc21f0e161
BLAKE2b-256 ffd7acd67901c43d2e6b20a7a973d9d5fd543c6e277af29b1eb0e1f7bd7ca7d2

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3947483a381259c06921612550867b37d22e1df6d6d7e8361264b6d037595f44
MD5 026bef9f41889dd47afc66f29a761f2e
BLAKE2b-256 9b7fee7fea8faac57b3ec5d91ff47470c6c5d40d7f15d0b1fccac806348fa59e

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1235c01ddaa80da8235741e80815ce381c5267f96cc49b1477fdcf8c047ef325
MD5 ce6fdedc405be9de1d9ea09734a9d903
BLAKE2b-256 7cbba91b72efeeb42906ef58ccf0cdb87947b54d7475fee3c93425d732f16a61

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3ebbcf2a07621f29638799828b8d8668c421bfb94c6cb04269130d8de4fb7136
MD5 3e8082814fc2b5994639d5a2df465141
BLAKE2b-256 624c877340871251145d3522c2b5d25c16a1690ad655fbab7bb9ece6b117e39f

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2a66df3d4992bc1d725b9aa803e8c5a66c010c65c741ad901e260ece77f58d2f
MD5 c4479d58ecfa41e3071a66572356038f
BLAKE2b-256 f093d1dea40f112ec183398fb6c42fde340edd7bab202411c4aa1a8289f461b6

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67aeb72e0f482709991aa91345a831d0b707d16b0257e8ef88a2ad246a7280bf
MD5 8c73e156cd45a6747d1ae9e83dad55e6
BLAKE2b-256 04d8f071bb000d4b8f851d312c3c75701e586b3f643fe14a2e3409b1b9ab3936

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a5b3bb545ead161be780ee85a2b54fdf7092815995661947812dde94a40f6fb
MD5 982e0be8e98f52715cdd821fc6724d78
BLAKE2b-256 4fbe3b0ab8c84a22e4a3224719099c1229ddfdd8a6a1558cf75cb55ee1e35c25

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f88a4095e913f98988f5b338c1d4d5d07dbb0b6bad19892fd447484e483ba6b
MD5 762df2f419e7a595d2b83006e82749ed
BLAKE2b-256 197047b872a263e8511ca33718d96a10c17d3c853aefadeb86dc26e8421184b9

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6a21ef516d36909931a2967621eecb256018aeb11fc48656e3257e73e2e247a
MD5 58e9fff8f1248579de928f7ea30f07d1
BLAKE2b-256 b46cca70bee4f22fa99eacd04f4d2f1699be9d13538ccf22b3169a61c60a27fa

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3c997f8c44ec9b9b0bcbf2d422cc00a1d9b9c681f56efa6ca149a941e5560da2
MD5 aeeaffd0befa49853116b840fc6de2e1
BLAKE2b-256 93e757a035a1359e542bbb0a7df95aad6b9871ebee6dce2840cb157a415bd1f3

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92fe151145a990c22cbccf9ae15cae8ae9eddabfc949a219c9f667877e40853d
MD5 93e390866a348d99508608d666e8b43e
BLAKE2b-256 a5ba0a1ef94a3412aab057bd996ed5f0ac7458be5bf469e85c70fa9ceb43290b

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0e53cb83fdd61cbd67202735e6a6687a7b491c8742dfc39c9e01e80354956763
MD5 0bd34eed77f98a3209d9d8af467464c0
BLAKE2b-256 c8cd48ab2b30a6b353ecb95a244915f85756d74f815862eb2ecc7a518d565b48

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp313-cp313-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 ecddc221a077a8132cf7c747d5352a15ed763b674c0448d811f408bf803d9ad7
MD5 ae77dd70d3bcbb007050f32277f44c44
BLAKE2b-256 a8a75f37b69197d4f558bfef5b4bceaff7c43cc9b51adf5bd75e9081d7ea80e4

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ad9c9b99b05f163109466638bd30ada1722abb01bbb85c739c50b6dc11f92dc3
MD5 6479b645ea2b997ea62c3743dfee9010
BLAKE2b-256 20a2bd0896fdc4f4c1db46d9bc361c8c79a9bf08ccc08ba054a98e38e7ba1557

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: propcache-0.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 40.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for propcache-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 69d3a98eebae99a420d4b28756c8ce6ea5a29291baf2dc9ff9414b42676f61d5
MD5 b5a52b85ebfa02b609863f927cd79252
BLAKE2b-256 a86fec0095e1647b4727db945213a9f395b1103c442ef65e54c62e92a72a3f75

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a9d9b4d0a9b38d1c391bb4ad24aa65f306c6f01b512e10a8a34a2dc5675d348
MD5 b5f559d7c937a22fbf994132593ada0b
BLAKE2b-256 fdbd8657918a35d50b18a9e4d78a5df7b6c82a637a311ab20851eef4326305c1

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 3444cdba6628accf384e349014084b1cacd866fbb88433cd9d279d90a54e0b23
MD5 40bde029b08603456d60d58b940f0d72
BLAKE2b-256 0d645822f496c9010e3966e934a011ac08cac8734561842bc7c1f65586e0683c

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f6475a1b2ecb310c98c28d271a30df74f9dd436ee46d09236a6b750a7599ce57
MD5 ccc5c3d2cb03a7f7fd865bad2b0875d3
BLAKE2b-256 9936b07be976edf77a07233ba712e53262937625af02154353171716894a86a6

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 439e76255daa0f8151d3cb325f6dd4a3e93043e6403e6491813bcaaaa8733887
MD5 b7280a4e174907988db9a774c31dd6b9
BLAKE2b-256 311bfd6b2f1f36d028820d35475be78859d8c89c8f091ad30e377ac49fd66359

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 56295eb1e5f3aecd516d91b00cfd8bf3a13991de5a479df9e27dd569ea23959c
MD5 63d2cfc63f4da3e4a6ce88e12e153c0c
BLAKE2b-256 8e78c123cf22469bdc4b18efb78893e69c70a8b16de88e6160b69ca6bdd88b5d

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6994984550eaf25dd7fc7bd1b700ff45c894149341725bb4edc67f0ffa94efa4
MD5 2498a1c2e19af7b2b8c0b9d1367698a2
BLAKE2b-256 97d9d00bb9277a9165a5e6d60f2142cd1a38a750045c9c12e47ae087f686d781

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55346705687dbd7ef0d77883ab4f6fabc48232f587925bdaf95219bae072491e
MD5 bcc5ad9dde1b14277ae9019d3346406f
BLAKE2b-256 3ce91b54b7e26f50b3e0497cd13d3483d781d284452c2c50dd2a615a92a087a3

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a64e32f8bd94c105cc27f42d3b658902b5bcc947ece3c8fe7bc1b05982f60e89
MD5 1816ccd2de94dec17b57011550925db3
BLAKE2b-256 2e6d9f91e5dde8b1f662f6dd4dff36098ed22a1ef4e08e1316f05f4758f1576c

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e41d67757ff4fbc8ef2af99b338bfb955010444b92929e9e55a6d4dcc3c4f09
MD5 4375a8407f0153013d435ae79c392bf3
BLAKE2b-256 f2df5d996d7cb18df076debae7d76ac3da085c0575a9f2be6b1f707fe227b54c

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f52a68c21363c45297aca15561812d542f8fc683c85201df0bebe209e349f793
MD5 a242e302062d0cbd2ced26feda0f5d8a
BLAKE2b-256 6544626599d2854d6c1d4530b9a05e7ff2ee22b790358334b475ed7c89f7d625

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 00181262b17e517df2cd85656fcd6b4e70946fe62cd625b9d74ac9977b64d8d9
MD5 6bf72eeb09b2cdd628a20c07ff208073
BLAKE2b-256 a7efa35bf191c8038fe3ce9a414b907371c81d102384eda5dbafe6f4dce0cf9b

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e900bad2a8456d00a113cad8c13343f3b1f327534e3589acc2219729237a2e8
MD5 067803df1a3eb70971895de5580dd921
BLAKE2b-256 0b17308acc6aee65d0f9a8375e36c4807ac6605d1f38074b1581bd4042b9fb37

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 91ee8fc02ca52e24bcb77b234f22afc03288e1dafbb1f88fe24db308910c4ac7
MD5 43d01ffccfa0854d41a39550a210a4f2
BLAKE2b-256 754f93df46aab9cc473498ff56be39b5f6ee1e33529223d7a4d8c0a6101a9ba2

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp312-cp312-macosx_10_13_universal2.whl
Algorithm Hash digest
SHA256 2ee7606193fb267be4b2e3b32714f2d58cad27217638db98a60f9efb5efeccc2
MD5 90134bcab66b612d2f2adf9d540f0500
BLAKE2b-256 7c46a41ca1097769fc548fc9216ec4c1471b772cc39720eb47ed7e38ef0006a9

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6e2e54267980349b723cff366d1e29b138b9a60fa376664a157a342689553f71
MD5 4f07672670cbf8cd89dbd1d991f03cad
BLAKE2b-256 83c5e89fc428ccdc897ade08cd7605f174c69390147526627a7650fb883e0cd0

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: propcache-0.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 40.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for propcache-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5f2564ec89058ee7c7989a7b719115bdfe2a2fb8e7a4543b8d1c0cc4cf6478c1
MD5 881437cf6437bb306de1f86510e0ff1a
BLAKE2b-256 056417eb2796e2d1c3d0c431dc5f40078d7282f4645af0bb4da9097fbb628c6c

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 191db28dc6dcd29d1a3e063c3be0b40688ed76434622c53a284e5427565bbd9b
MD5 89a745297eab41e593df616ffb8de6e4
BLAKE2b-256 ed0de5d68ccc7976ef8b57d80613ac07bbaf0614d43f4750cf953f0168ef114f

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c436130cc779806bdf5d5fae0d848713105472b8566b75ff70048c47d3961c5b
MD5 127abc572f0d47587506851685c548e7
BLAKE2b-256 257b768a8969abd447d5f0f3333df85c6a5d94982a1bc9a89c53c154bf7a8b11

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c5ecca8f9bab618340c8e848d340baf68bcd8ad90a8ecd7a4524a81c1764b3db
MD5 b69058f387a5fb53acee2f354b38546a
BLAKE2b-256 c39a8a8cf428a91b1336b883f09c8b884e1734c87f724d74b917129a24fe2093

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 39e104da444a34830751715f45ef9fc537475ba21b7f1f5b0f4d71a3b60d7fe2
MD5 7764a20fbb225d9a26028c9afce64b52
BLAKE2b-256 7e76c79276a43df2096ce2aba07ce47576832b1174c0c480fe6b04bd70120e59

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 945db8ee295d3af9dbdbb698cce9bbc5c59b5c3fe328bbc4387f59a8a35f998d
MD5 b6fae6b290974f62513e0b0f01bc57ae
BLAKE2b-256 25194fc08dac19297ac58135c03770b42377be211622fd0147f015f78d47cd31

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 97a58a28bcf63284e8b4d7b460cbee1edaab24634e82059c7b8c09e65284f178
MD5 7927abb95c0b17c4baac745bdb34aa68
BLAKE2b-256 18bb397d05a7298b7711b90e13108db697732325cafdcd8484c894885c1bf109

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c7dde9e533c0a49d802b4f3f218fa9ad0a1ce21f2c2eb80d5216565202acab4
MD5 8948210c1244584d7d7de84db301ba25
BLAKE2b-256 8c5698c2054c8526331a05f205bf45cbb2cda4e58e56df70e76d6a509e5d6ec6

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91997d9cb4a325b60d4e3f20967f8eb08dfcb32b22554d5ef78e6fd1dda743a2
MD5 83d21292a25c000d0d8d622c962eac68
BLAKE2b-256 4a89c893533cb45c79c970834274e2d0f6d64383ec740be631b6a0a1d2b4ddc0

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a6ed8db0a556343d566a5c124ee483ae113acc9a557a807d439bcecc44e7dfbb
MD5 8b4c171bbe470e259500536315b6e261
BLAKE2b-256 a58590132481183d1436dff6e29f4fa81b891afb6cb89a7306f32ac500a25932

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc2db02409338bf36590aa985a461b2c96fce91f8e7e0f14c50c5fcc4f229016
MD5 443febc3614b08c42499673d2114e037
BLAKE2b-256 2e5e4a3e96380805bf742712e39a4534689f4cddf5fa2d3a93f22e9fd8001b23

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ffcad6c564fe6b9b8916c1aefbb37a362deebf9394bd2974e9d84232e3e08504
MD5 ab329632948e2a67e7e60401c3cace35
BLAKE2b-256 2d0c8b8b9f8a6e1abd869c0fa79b907228e7abb966919047d294ef5df0d136cf

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 466c219deee4536fbc83c08d09115249db301550625c7fef1c5563a584c9bc87
MD5 740269af4f8873b1b23a925b94814c54
BLAKE2b-256 c01dc700d16d1d6903aeab28372fe9999762f074b80b96a0ccc953175b858743

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 608cce1da6f2672a56b24a015b42db4ac612ee709f3d29f27a00c943d9e851de
MD5 53de0b233e06a58e3460c28a5813ecde
BLAKE2b-256 89c37e94009f9a4934c48a371632197406a8860b9f08e3f7f7d922ab69e57a41

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 63f13bf09cc3336eb04a837490b8f332e0db41da66995c9fd1ba04552e516354
MD5 f3f0093549879d9b1a3d2024fa087fe4
BLAKE2b-256 e01c71eec730e12aec6511e702ad0cd73c2872eccb7cad39de8ba3ba9de693ef

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cfac69017ef97db2438efb854edf24f5a29fd09a536ff3a992b75990720cdc99
MD5 de6aad2d3d7d3c23787697a5db822059
BLAKE2b-256 bb446c2add5eeafb7f31ff0d25fbc005d930bea040a1364cf0f5768750ddf4d1

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: propcache-0.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 40.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for propcache-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7cf18abf9764746b9c8704774d8b06714bcb0a63641518a3a89c7f85cc02c2ad
MD5 8267d0c2f3f4ebcfe3138832c93f7d2b
BLAKE2b-256 1f27d01d7799c068443ee64002f0655d82fb067496897bf74b632e28ee6a32cf

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7665f04d0c7f26ff8bb534e1c65068409bf4687aa2534faf7104d7182debb336
MD5 d9f5ffea3aa039362c0855a8df4e20f7
BLAKE2b-256 8b544ef7236cd657e53098bd05aa59cbc3cbf7018fba37b40eaed112c3921e51

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 56bb5c98f058a41bb58eead194b4db8c05b088c93d94d5161728515bd52b052b
MD5 90fcf16fa36b0d18764e59d0b3a6aedc
BLAKE2b-256 853ee356cc6b09064bff1c06d0b2413593e7c925726f0139bc7acef8a21e87a8

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e63e3e1e0271f374ed489ff5ee73d4b6e7c60710e1f76af5f0e1a6117cd26394
MD5 0a2fd2f13c98c513ba7d6058bea8ee10
BLAKE2b-256 08310e299f650f73903da851f50f576ef09bfffc8e1519e6a2f1e5ed2d19c591

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e0f07b42d2a50c7dd2d8675d50f7343d998c64008f1da5fef888396b7f84630
MD5 4d60cf6072a71bc65eb2efd035460a8e
BLAKE2b-256 a28f90ada38448ca2e9cf25adc2fe05d08358bda1b9446f54a606ea38f41798b

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a3dc1a4b165283bd865e8f8cb5f0c64c05001e0718ed06250d8cac9bec115b48
MD5 3c1cecfa74fb4e7500c56292e9a418d6
BLAKE2b-256 ee784acfc5544a5075d8e660af4d4e468d60c418bba93203d1363848444511ad

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2f0d0f976985f85dfb5f3d685697ef769faa6b71993b46b295cdbbd6be8cc37
MD5 f216f9fc413e8720f5b9bc792404d1fe
BLAKE2b-256 d0988ac69f638358c5f2a0043809c917802f96f86026e86726b65006830f3dc6

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3dfafb44f7bb35c0c06eda6b2ab4bfd58f02729e7c4045e179f9a861b07c9850
MD5 f7b22fef971ffbb132c1e36969474286
BLAKE2b-256 8de722e76ae6fc5a1708bdce92bdb49de5ebe89a173db87e4ef597d6bbe9145a

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f571aea50ba5623c308aa146eb650eebf7dbe0fd8c5d946e28343cb3b5aad577
MD5 57af245b310311196d6c03a1f2f84e36
BLAKE2b-256 5e1cfef251f79fd4971a413fa4b1ae369ee07727b4cc2c71e2d90dfcde664fbb

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 388f3217649d6d59292b722d940d4d2e1e6a7003259eb835724092a1cca0203a
MD5 abbf1a554d1935ed7a90d03fa7c14157
BLAKE2b-256 bd2cef7371ff715e6cd19ea03fdd5637ecefbaa0752fee5b0f2fe8ea8407ee01

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97e48e8875e6c13909c800fa344cd54cc4b2b0db1d5f911f840458a500fde2c2
MD5 195f31da67efc4b4f14a675196891c15
BLAKE2b-256 439555acc9adff8f997c7572f23d41993042290dfb29e404cdadb07039a4386f

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a3ebe9a75be7ab0b7da2464a77bb27febcb4fab46a34f9288f39d74833db7f61
MD5 6341c1a0ca6cbf4c032cebeb045100e2
BLAKE2b-256 043ef10aa562781bcd8a1e0b37683a23bef32bdbe501d9cc7e76969becaac30d

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33ac8f098df0585c0b53009f039dfd913b38c1d2edafed0cedcc0c32a05aa110
MD5 e7d59cac44027a3deff908d5d7f119c4
BLAKE2b-256 33a26b1978c2e0d80a678e2c483f45e5443c15fe5d32c483902e92a073314ef1

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 952e0d9d07609d9c5be361f33b0d6d650cd2bae393aabb11d9b719364521984b
MD5 6d512fe4e76bfb50f6b91e64ed4ddfc4
BLAKE2b-256 e65949072aba9bf8a8ed958e576182d46f038e595b17ff7408bc7e8807e721e1

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 c5869b8fd70b81835a6f187c5fdbe67917a04d7e52b6e7cc4e5fe39d55c39d58
MD5 e86b981b4f7b6beacf5529d8c74f2f52
BLAKE2b-256 3a081963dfb932b8d74d5b09098507b37e9b96c835ba89ab8aad35aa330f4ff3

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: propcache-0.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 45.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for propcache-0.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9517d5e9e0731957468c29dbfd0f976736a0e55afaea843726e887f36fe017df
MD5 201219f7deecd8181efcebda7edf1f11
BLAKE2b-256 af53a3e5b937f58e757a940716b88105ec4c211c42790c1ea17052b46dc16f16

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

  • Download URL: propcache-0.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 41.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for propcache-0.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 73e4b40ea0eda421b115248d7e79b59214411109a5bc47d0d48e4c73e3b8fcf9
MD5 1ca6e3cd0b78a61e075abc81e5ffebd7
BLAKE2b-256 288c266898981b7883c1563c35954f9ce9ced06019fdcc487a9520150c48dc91

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22aa8f2272d81d9317ff5756bb108021a056805ce63dd3630e27d042c8092798
MD5 e6945599e36cd40d6e86a3f38c98f3f7
BLAKE2b-256 2e25280d0a3bdaee68db74c0acd9a472e59e64b516735b59cffd3a326ff9058a

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f6d5749fdd33d90e34c2efb174c7e236829147a2713334d708746e94c4bde40d
MD5 de735529bff0651688b840fdb580d961
BLAKE2b-256 c91f4c44c133b08bc5f776afcb8f0833889c2636b8a83e07ea1d9096c1e401b0

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b33d7a286c0dc1a15f5fc864cc48ae92a846df287ceac2dd499926c3801054a6
MD5 5a8cdb05ac0af98aaea052bc95cdecd4
BLAKE2b-256 842ac3d2f989fc571a5bad0fabcd970669ccb08c8f9b07b037ecddbdab16a040

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e70fac33e8b4ac63dfc4c956fd7d85a0b1139adcfc0d964ce288b7c527537fea
MD5 0b573fa3dfcf691f5704f414f5254ee5
BLAKE2b-256 db875748212a18beb8d4ab46315c55ade8960d1e2cdc190764985b2d229dd3f4

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 140fbf08ab3588b3468932974a9331aff43c0ab8a2ec2c608b6d7d1756dbb6cb
MD5 d9d70ce7a543d4b1935cca3e8c77da0f
BLAKE2b-256 29d719a4d3b4c7e95d08f216da97035d0b103d0c90411c6f739d47088d2da1f0

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 363ea8cd3c5cb6679f1c2f5f1f9669587361c062e4899fce56758efa928728f8
MD5 f4d57dccd66f324b723cb795918dcf7c
BLAKE2b-256 5bcef3bff82c885dbd9ae9e43f134d5b02516c3daa52d46f7a50e4f52ef9121f

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 682a7c79a2fbf40f5dbb1eb6bfe2cd865376deeac65acf9beb607505dced9e12
MD5 259f9d93b565ac9f44bb25c70019a405
BLAKE2b-256 ce4e97059dd24494d1c93d1efb98bb24825e1930265b41858dd59c15cb37a975

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa1076244f54bb76e65e22cb6910365779d5c3d71d1f18b275f1dfc7b0d71b4d
MD5 d8763f1ac549c950e2f14e05f205102a
BLAKE2b-256 deb6e078b5e9de58e20db12135eb6a206b4b43cb26c6b62ee0fe36ac40763a64

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc092ba439d91df90aea38168e11f75c655880c12782facf5cf9c00f3d42b562
MD5 8523bf5b4b3af8144c9d759ec05d8967
BLAKE2b-256 bcc640eb0dd1de6f8e84f454615ab61f68eb4a58f9d63d6f6eaf04300ac0cc17

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f45eec587dafd4b2d41ac189c2156461ebd0c1082d2fe7013571598abb8505d1
MD5 47d43dc9ff9958a629ed26647e99197d
BLAKE2b-256 e2dc60d444610bc5b1d7a758534f58362b1bcee736a785473f8a39c91f05aad1

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e40876731f99b6f3c897b66b803c9e1c07a989b366c6b5b475fafd1f7ba3fb8
MD5 e8a6a9e5c7b018bcd440fd562d824bac
BLAKE2b-256 fc234dbf726602a989d2280fe130a9b9dd71faa8d3bb8cd23d3261ff3c23f692

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ec43d76b9677637a89d6ab86e1fef70d739217fefa208c65352ecf0282be957
MD5 f9ffd5cbc4ec45663badd9776183f836
BLAKE2b-256 e777388697bedda984af0d12d68e536b98129b167282da3401965c8450de510e

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 375a12d7556d462dc64d70475a9ee5982465fbb3d2b364f16b86ba9135793638
MD5 f939827759c4baf99e469960a4604300
BLAKE2b-256 9f848d5edb9a73e1a56b24dd8f2adb6aac223109ff0e8002313d52e5518258ba

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

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

File metadata

File hashes

Hashes for propcache-0.2.0-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 25c8d773a62ce0451b020c7b29a35cfbc05de8b291163a7a0f3b7904f27253e6
MD5 f0f12728bdc4a06290eb0fccab38ea81
BLAKE2b-256 3805797e6738c9f44ab5039e3ff329540c934eabbe8ad7e63c305c75844bc86f

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file propcache-0.2.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: propcache-0.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 45.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for propcache-0.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 676135dcf3262c9c5081cc8f19ad55c8a64e3f7282a21266d05544450bffc3a5
MD5 300b8bdf3cd95d3c2bb68230deeffe76
BLAKE2b-256 3723a30214b4c1f2bea24cc1197ef48d67824fbc41d5cf5472b17c37fef6002c

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.2.0-cp38-cp38-win_amd64.whl:

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

Attestations:

File details

Details for the file propcache-0.2.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: propcache-0.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 41.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for propcache-0.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d9b6ddac6408194e934002a69bcaadbc88c10b5f38fb9307779d1c629181815d
MD5 93d7aae6186ffb6b5ba66950ee8b8855
BLAKE2b-256 ff3e6103906a66d6713f32880cf6a5ba84a1406b4d66e1b9389bb9b8e1789f9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.2.0-cp38-cp38-win32.whl:

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

Attestations:

File details

Details for the file propcache-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74acd6e291f885678631b7ebc85d2d4aec458dd849b8c841b57ef04047833bed
MD5 a70ad4e3f53fc2a880d4e1dbc60e106a
BLAKE2b-256 ff3aa9f1a0c0e5b994b8f1a1c71bea56bb3e9eeec821cb4dd61e14051c4ba00b

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl:

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

Attestations:

File details

Details for the file propcache-0.2.0-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.2.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 f60f0ac7005b9f5a6091009b09a419ace1610e163fa5deaba5ce3484341840e7
MD5 6c46bee8bd8a984b8362e0f57db28b09
BLAKE2b-256 eb9915f998c502c214f6c7f51462937605d514a8943a9a6c1fa10f40d2710976

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.2.0-cp38-cp38-musllinux_1_2_s390x.whl:

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

Attestations:

File details

Details for the file propcache-0.2.0-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.2.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 25a1f88b471b3bc911d18b935ecb7115dff3a192b6fef46f0bfaf71ff4f12418
MD5 abc7ea5fe7c07066873773465daaad04
BLAKE2b-256 e481e8e96c97aa0b675a14e37b12ca9c9713b15cfacf0869e64bf3ab389fabf1

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.2.0-cp38-cp38-musllinux_1_2_ppc64le.whl:

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

Attestations:

File details

Details for the file propcache-0.2.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for propcache-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 662dd62358bdeaca0aee5761de8727cfd6861432e3bb828dc2a693aa0471a563
MD5 17af03763043d04ec9a49752b3f8d250
BLAKE2b-256 a939b9ea7b011521dd7cfd2f89bb6b8b304f3c789ea6285445bc145bebc83094

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.2.0-cp38-cp38-musllinux_1_2_i686.whl:

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

Attestations:

File details

Details for the file propcache-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for propcache-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2a60ad3e2553a74168d275a0ef35e8c0a965448ffbc3b300ab3a5bb9956c2162
MD5 24510c7c52731824fa4bd31ae9c6c626
BLAKE2b-256 0f4e79f665fa04839f30ffb2903211c718b9660fbb938ac7a4df79525af5aeb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl:

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

Attestations:

File details

Details for the file propcache-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db47514ffdbd91ccdc7e6f8407aac4ee94cc871b15b577c1c324236b013ddd04
MD5 2a4e8e8192230f66f678147036107165
BLAKE2b-256 e1df80e2c5cd5ed56a7bfb1aa58cedb79617a152ae43de7c0a7e800944a6b2e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl:

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

Attestations:

File details

Details for the file propcache-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67b69535c870670c9f9b14a75d28baa32221d06f6b6fa6f77a0a13c5a7b0a5b9
MD5 bf7235e8f89732e81dbb52263bd0a233
BLAKE2b-256 c3f169a30ff0928d07f50bdc6f0147fd9a08e80904fd3fdb711785e518de1021

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

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

Attestations:

File details

Details for the file propcache-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for propcache-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 20a617c776f520c3875cf4511e0d1db847a076d720714ae35ffe0df3e440be68
MD5 cf7bcfb993ba8d5f66d44fd300c39fda
BLAKE2b-256 6627072be8ad434c9a3aa1b561f527984ea0ed4ac072fd18dfaaa2aa2d6e6a2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:

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

Attestations:

File details

Details for the file propcache-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for propcache-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7735e82e3498c27bcb2d17cb65d62c14f1100b71723b68362872bca7d0913d90
MD5 1ada6e4050edb3898fe3a668f0d63808
BLAKE2b-256 7c575d4d783ac594bd56434679b8643673ae12de1ce758116fd8912a7f2313ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

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

Attestations:

File details

Details for the file propcache-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for propcache-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 218db2a3c297a3768c11a34812e63b3ac1c3234c3a086def9c0fee50d35add1f
MD5 a266ae8e4ef0071ced153138286a46c4
BLAKE2b-256 fadf8dbd3e472baf73251c0fbb571a3f0a4e3a40c52a1c8c2a6c46ab08736ff9

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

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

Attestations:

File details

Details for the file propcache-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for propcache-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4569158070180c3855e9c0791c56be3ceeb192defa2cdf6a3f39e54319e56b89
MD5 1f0c44c4a6a93b99aa842b7bcf3ee1d9
BLAKE2b-256 a82ec16716ae113fe0a3219978df3665a6fea049d81d50bd28c4ae72a4c77567

See more details on using hashes here.

Provenance

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

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

Attestations:

File details

Details for the file propcache-0.2.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for propcache-0.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77a86c261679ea5f3896ec060be9dc8e365788248cc1e049632a1be682442063
MD5 36285af50814b9104119c788391335c7
BLAKE2b-256 80ef18af27caaae5589c08bb5a461cfa136b83b7e7983be604f2140d91f92b97

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.2.0-cp38-cp38-macosx_11_0_arm64.whl:

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

Attestations:

File details

Details for the file propcache-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for propcache-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 83928404adf8fb3d26793665633ea79b7361efa0287dfbd372a7e74311d51ee6
MD5 f46eafcf95f5bcab0217bd54ab6317bb
BLAKE2b-256 73b79e2a17d9a126f2012b22ddc5d0979c28ca75104e24945214790c1d787015

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl:

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

Attestations:

File details

Details for the file propcache-0.2.0-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for propcache-0.2.0-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 53d1bd3f979ed529f0805dd35ddaca330f80a9a6d90bc0121d2ff398f8ed8861
MD5 144a2111cbb7e01719f4e7ed62453d80
BLAKE2b-256 b4942c3d64420fd58ed462e2b416386d48e72dec027cf7bb572066cf3866e939

See more details on using hashes here.

Provenance

The following attestation bundles were made for propcache-0.2.0-cp38-cp38-macosx_10_9_universal2.whl:

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

Attestations:

Supported by

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