Skip to main content

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.

Release files for propcache 0.2.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for propcache 0.2.0
File Size Uploaded
propcache-0.2.0.tar.gz 41.0 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for propcache 0.2.0
File
propcache-0.2.0-py3-none-any.whl Python 3 none any Details
propcache-0.2.0-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
propcache-0.2.0-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
propcache-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
propcache-0.2.0-cp313-cp313-musllinux_1_2_s390x.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ IBM System/390x Details
propcache-0.2.0-cp313-cp313-musllinux_1_2_ppc64le.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ PowerPC 64-le Details
propcache-0.2.0-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
propcache-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARMv7l Details
propcache-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ ARM64 Details
propcache-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
propcache-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ IBM System/390x Details
propcache-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ PowerPC 64-le Details
propcache-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
propcache-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
propcache-0.2.0-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
propcache-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
propcache-0.2.0-cp313-cp313-macosx_10_13_universal2.whl CPython 3.13 CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64) Details
propcache-0.2.0-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
propcache-0.2.0-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
propcache-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
propcache-0.2.0-cp312-cp312-musllinux_1_2_s390x.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ IBM System/390x Details
propcache-0.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ PowerPC 64-le Details
propcache-0.2.0-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
propcache-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARMv7l Details
propcache-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ ARM64 Details
propcache-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
propcache-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ IBM System/390x Details
propcache-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ PowerPC 64-le Details
propcache-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
propcache-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
propcache-0.2.0-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
propcache-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
propcache-0.2.0-cp312-cp312-macosx_10_13_universal2.whl CPython 3.12 CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64) Details
propcache-0.2.0-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
propcache-0.2.0-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
propcache-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
propcache-0.2.0-cp311-cp311-musllinux_1_2_s390x.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ IBM System/390x Details
propcache-0.2.0-cp311-cp311-musllinux_1_2_ppc64le.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ PowerPC 64-le Details
propcache-0.2.0-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
propcache-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARMv7l Details
propcache-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ ARM64 Details
propcache-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
propcache-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
propcache-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
propcache-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
propcache-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
propcache-0.2.0-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
propcache-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
propcache-0.2.0-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
propcache-0.2.0-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
propcache-0.2.0-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
propcache-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
propcache-0.2.0-cp310-cp310-musllinux_1_2_s390x.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ IBM System/390x Details
propcache-0.2.0-cp310-cp310-musllinux_1_2_ppc64le.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ PowerPC 64-le Details
propcache-0.2.0-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
propcache-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARMv7l Details
propcache-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ ARM64 Details
propcache-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
propcache-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
propcache-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
propcache-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
propcache-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
propcache-0.2.0-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
propcache-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
propcache-0.2.0-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
propcache-0.2.0-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
propcache-0.2.0-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
propcache-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
propcache-0.2.0-cp39-cp39-musllinux_1_2_s390x.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ IBM System/390x Details
propcache-0.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ PowerPC 64-le Details
propcache-0.2.0-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
propcache-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARMv7l Details
propcache-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ ARM64 Details
propcache-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
propcache-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
propcache-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
propcache-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
propcache-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
propcache-0.2.0-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
propcache-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
propcache-0.2.0-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
propcache-0.2.0-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
propcache-0.2.0-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
propcache-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
propcache-0.2.0-cp38-cp38-musllinux_1_2_s390x.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ IBM System/390x Details
propcache-0.2.0-cp38-cp38-musllinux_1_2_ppc64le.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ PowerPC 64-le Details
propcache-0.2.0-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
propcache-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARMv7l Details
propcache-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ ARM64 Details
propcache-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
propcache-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
propcache-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
propcache-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
propcache-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
propcache-0.2.0-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
propcache-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
propcache-0.2.0-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details

Total release size: 16.2 MB

Release files / propcache-0.2.0.tar.gz

Download URL propcache-0.2.0.tar.gz
Size 41.0 kB
Tags Source
SHA-256 checksum
How to use checksums
df81779732feb9d01e5d513fad0122efb3d53bbc75f61b2a4f29a020bc985e70
BLAKE2b-256 checksum
How to use checksums
a94d5e5a60b78dbc1d464f8a7bbaeb30957257afdc8512cbb9dfd5659304f5cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-py3-none-any.whl

Download URL propcache-0.2.0-py3-none-any.whl
Size 11.6 kB
Tags Python 3
SHA-256 checksum
How to use checksums
2ccc28197af5313706511fab3a8b66dcd6da067a1331372c82ea1cb74285e036
BLAKE2b-256 checksum
How to use checksums
3db6e6d98278f2d49b22b4d033c9f792eda783b9ab2094b041f013fc69bcde87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp313-cp313-win_amd64.whl

Download URL propcache-0.2.0-cp313-cp313-win_amd64.whl
Size 43.7 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
8f188cfcc64fb1266f4684206c9de0e80f54622c3f22a910cbd200478aeae61e
BLAKE2b-256 checksum
How to use checksums
88e70eef39eff84fa3e001b44de0bd41c7c0e3432e7648ffd3d64955910f002d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp313-cp313-win32.whl

Download URL propcache-0.2.0-cp313-cp313-win32.whl
Size 39.7 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
f902804113e032e2cdf8c71015651c97af6418363bea8d78dc0911d56c335032
BLAKE2b-256 checksum
How to use checksums
7cbdc7a6a719a6b3dd8b3aeadb3675b5783983529e4a3185946aa444d3e078f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL propcache-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Size 221.1 kB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e4a91d44379f45f5e540971d41e4626dacd7f01004826a18cb048e7da7e96544
BLAKE2b-256 checksum
How to use checksums
8d6f6272ecc7a8daad1d0754cfc6c8846076a8cb13f810005c79b15ce0ef0cf2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp313-cp313-musllinux_1_2_s390x.whl

Download URL propcache-0.2.0-cp313-cp313-musllinux_1_2_s390x.whl
Size 228.3 kB
Tags CPython 3.13 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
d5bed7f9805cc29c780f3aee05de3262ee7ce1f47083cfe9f77471e9d6777e83
BLAKE2b-256 checksum
How to use checksums
ffd7acd67901c43d2e6b20a7a973d9d5fd543c6e277af29b1eb0e1f7bd7ca7d2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp313-cp313-musllinux_1_2_ppc64le.whl

Download URL propcache-0.2.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Size 222.3 kB
Tags CPython 3.13 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
3947483a381259c06921612550867b37d22e1df6d6d7e8361264b6d037595f44
BLAKE2b-256 checksum
How to use checksums
9b7fee7fea8faac57b3ec5d91ff47470c6c5d40d7f15d0b1fccac806348fa59e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp313-cp313-musllinux_1_2_i686.whl

Download URL propcache-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Size 212.9 kB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
1235c01ddaa80da8235741e80815ce381c5267f96cc49b1477fdcf8c047ef325
BLAKE2b-256 checksum
How to use checksums
7cbba91b72efeeb42906ef58ccf0cdb87947b54d7475fee3c93425d732f16a61
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl

Download URL propcache-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Size 212.5 kB
Tags CPython 3.13 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
3ebbcf2a07621f29638799828b8d8668c421bfb94c6cb04269130d8de4fb7136
BLAKE2b-256 checksum
How to use checksums
624c877340871251145d3522c2b5d25c16a1690ad655fbab7bb9ece6b117e39f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl

Download URL propcache-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Size 217.0 kB
Tags CPython 3.13 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
2a66df3d4992bc1d725b9aa803e8c5a66c010c65c741ad901e260ece77f58d2f
BLAKE2b-256 checksum
How to use checksums
f093d1dea40f112ec183398fb6c42fde340edd7bab202411c4aa1a8289f461b6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL propcache-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 231.9 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
67aeb72e0f482709991aa91345a831d0b707d16b0257e8ef88a2ad246a7280bf
BLAKE2b-256 checksum
How to use checksums
04d8f071bb000d4b8f851d312c3c75701e586b3f643fe14a2e3409b1b9ab3936
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL propcache-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 237.3 kB
Tags CPython 3.13 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
5a5b3bb545ead161be780ee85a2b54fdf7092815995661947812dde94a40f6fb
BLAKE2b-256 checksum
How to use checksums
4fbe3b0ab8c84a22e4a3224719099c1229ddfdd8a6a1558cf75cb55ee1e35c25
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL propcache-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 234.0 kB
Tags CPython 3.13 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
3f88a4095e913f98988f5b338c1d4d5d07dbb0b6bad19892fd447484e483ba6b
BLAKE2b-256 checksum
How to use checksums
197047b872a263e8511ca33718d96a10c17d3c853aefadeb86dc26e8421184b9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL propcache-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 229.6 kB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
d6a21ef516d36909931a2967621eecb256018aeb11fc48656e3257e73e2e247a
BLAKE2b-256 checksum
How to use checksums
b46cca70bee4f22fa99eacd04f4d2f1699be9d13538ccf22b3169a61c60a27fa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL propcache-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 217.8 kB
Tags CPython 3.13 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
3c997f8c44ec9b9b0bcbf2d422cc00a1d9b9c681f56efa6ca149a941e5560da2
BLAKE2b-256 checksum
How to use checksums
93e757a035a1359e542bbb0a7df95aad6b9871ebee6dce2840cb157a415bd1f3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp313-cp313-macosx_11_0_arm64.whl

Download URL propcache-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Size 44.4 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
92fe151145a990c22cbccf9ae15cae8ae9eddabfc949a219c9f667877e40853d
BLAKE2b-256 checksum
How to use checksums
a5ba0a1ef94a3412aab057bd996ed5f0ac7458be5bf469e85c70fa9ceb43290b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl

Download URL propcache-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Size 45.1 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
0e53cb83fdd61cbd67202735e6a6687a7b491c8742dfc39c9e01e80354956763
BLAKE2b-256 checksum
How to use checksums
c8cd48ab2b30a6b353ecb95a244915f85756d74f815862eb2ecc7a518d565b48
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp313-cp313-macosx_10_13_universal2.whl

Download URL propcache-0.2.0-cp313-cp313-macosx_10_13_universal2.whl
Size 78.1 kB
Tags CPython 3.13 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
ecddc221a077a8132cf7c747d5352a15ed763b674c0448d811f408bf803d9ad7
BLAKE2b-256 checksum
How to use checksums
a8a75f37b69197d4f558bfef5b4bceaff7c43cc9b51adf5bd75e9081d7ea80e4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp312-cp312-win_amd64.whl

Download URL propcache-0.2.0-cp312-cp312-win_amd64.whl
Size 44.4 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
ad9c9b99b05f163109466638bd30ada1722abb01bbb85c739c50b6dc11f92dc3
BLAKE2b-256 checksum
How to use checksums
20a2bd0896fdc4f4c1db46d9bc361c8c79a9bf08ccc08ba054a98e38e7ba1557
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp312-cp312-win32.whl

Download URL propcache-0.2.0-cp312-cp312-win32.whl
Size 40.2 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
69d3a98eebae99a420d4b28756c8ce6ea5a29291baf2dc9ff9414b42676f61d5
BLAKE2b-256 checksum
How to use checksums
a86fec0095e1647b4727db945213a9f395b1103c442ef65e54c62e92a72a3f75
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL propcache-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Size 235.9 kB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4a9d9b4d0a9b38d1c391bb4ad24aa65f306c6f01b512e10a8a34a2dc5675d348
BLAKE2b-256 checksum
How to use checksums
fdbd8657918a35d50b18a9e4d78a5df7b6c82a637a311ab20851eef4326305c1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp312-cp312-musllinux_1_2_s390x.whl

Download URL propcache-0.2.0-cp312-cp312-musllinux_1_2_s390x.whl
Size 244.8 kB
Tags CPython 3.12 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
3444cdba6628accf384e349014084b1cacd866fbb88433cd9d279d90a54e0b23
BLAKE2b-256 checksum
How to use checksums
0d645822f496c9010e3966e934a011ac08cac8734561842bc7c1f65586e0683c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl

Download URL propcache-0.2.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Size 238.4 kB
Tags CPython 3.12 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
f6475a1b2ecb310c98c28d271a30df74f9dd436ee46d09236a6b750a7599ce57
BLAKE2b-256 checksum
How to use checksums
9936b07be976edf77a07233ba712e53262937625af02154353171716894a86a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp312-cp312-musllinux_1_2_i686.whl

Download URL propcache-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Size 227.6 kB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
439e76255daa0f8151d3cb325f6dd4a3e93043e6403e6491813bcaaaa8733887
BLAKE2b-256 checksum
How to use checksums
311bfd6b2f1f36d028820d35475be78859d8c89c8f091ad30e377ac49fd66359
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl

Download URL propcache-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Size 225.9 kB
Tags CPython 3.12 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
56295eb1e5f3aecd516d91b00cfd8bf3a13991de5a479df9e27dd569ea23959c
BLAKE2b-256 checksum
How to use checksums
8e78c123cf22469bdc4b18efb78893e69c70a8b16de88e6160b69ca6bdd88b5d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl

Download URL propcache-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Size 229.9 kB
Tags CPython 3.12 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
6994984550eaf25dd7fc7bd1b700ff45c894149341725bb4edc67f0ffa94efa4
BLAKE2b-256 checksum
How to use checksums
97d9d00bb9277a9165a5e6d60f2142cd1a38a750045c9c12e47ae087f686d781
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL propcache-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 248.2 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
55346705687dbd7ef0d77883ab4f6fabc48232f587925bdaf95219bae072491e
BLAKE2b-256 checksum
How to use checksums
3ce91b54b7e26f50b3e0497cd13d3483d781d284452c2c50dd2a615a92a087a3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL propcache-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 253.4 kB
Tags CPython 3.12 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
a64e32f8bd94c105cc27f42d3b658902b5bcc947ece3c8fe7bc1b05982f60e89
BLAKE2b-256 checksum
How to use checksums
2e6d9f91e5dde8b1f662f6dd4dff36098ed22a1ef4e08e1316f05f4758f1576c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL propcache-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 251.8 kB
Tags CPython 3.12 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
1e41d67757ff4fbc8ef2af99b338bfb955010444b92929e9e55a6d4dcc3c4f09
BLAKE2b-256 checksum
How to use checksums
f2df5d996d7cb18df076debae7d76ac3da085c0575a9f2be6b1f707fe227b54c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL propcache-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 246.2 kB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f52a68c21363c45297aca15561812d542f8fc683c85201df0bebe209e349f793
BLAKE2b-256 checksum
How to use checksums
6544626599d2854d6c1d4530b9a05e7ff2ee22b790358334b475ed7c89f7d625
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL propcache-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 233.6 kB
Tags CPython 3.12 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
00181262b17e517df2cd85656fcd6b4e70946fe62cd625b9d74ac9977b64d8d9
BLAKE2b-256 checksum
How to use checksums
a7efa35bf191c8038fe3ce9a414b907371c81d102384eda5dbafe6f4dce0cf9b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp312-cp312-macosx_11_0_arm64.whl

Download URL propcache-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Size 45.7 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
2e900bad2a8456d00a113cad8c13343f3b1f327534e3589acc2219729237a2e8
BLAKE2b-256 checksum
How to use checksums
0b17308acc6aee65d0f9a8375e36c4807ac6605d1f38074b1581bd4042b9fb37
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl

Download URL propcache-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Size 46.4 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
91ee8fc02ca52e24bcb77b234f22afc03288e1dafbb1f88fe24db308910c4ac7
BLAKE2b-256 checksum
How to use checksums
754f93df46aab9cc473498ff56be39b5f6ee1e33529223d7a4d8c0a6101a9ba2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp312-cp312-macosx_10_13_universal2.whl

Download URL propcache-0.2.0-cp312-cp312-macosx_10_13_universal2.whl
Size 80.8 kB
Tags CPython 3.12 macOS 10.13+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
2ee7606193fb267be4b2e3b32714f2d58cad27217638db98a60f9efb5efeccc2
BLAKE2b-256 checksum
How to use checksums
7c46a41ca1097769fc548fc9216ec4c1471b772cc39720eb47ed7e38ef0006a9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp311-cp311-win_amd64.whl

Download URL propcache-0.2.0-cp311-cp311-win_amd64.whl
Size 44.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
6e2e54267980349b723cff366d1e29b138b9a60fa376664a157a342689553f71
BLAKE2b-256 checksum
How to use checksums
83c5e89fc428ccdc897ade08cd7605f174c69390147526627a7650fb883e0cd0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp311-cp311-win32.whl

Download URL propcache-0.2.0-cp311-cp311-win32.whl
Size 40.5 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
5f2564ec89058ee7c7989a7b719115bdfe2a2fb8e7a4543b8d1c0cc4cf6478c1
BLAKE2b-256 checksum
How to use checksums
056417eb2796e2d1c3d0c431dc5f40078d7282f4645af0bb4da9097fbb628c6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL propcache-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Size 227.7 kB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
191db28dc6dcd29d1a3e063c3be0b40688ed76434622c53a284e5427565bbd9b
BLAKE2b-256 checksum
How to use checksums
ed0de5d68ccc7976ef8b57d80613ac07bbaf0614d43f4750cf953f0168ef114f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp311-cp311-musllinux_1_2_s390x.whl

Download URL propcache-0.2.0-cp311-cp311-musllinux_1_2_s390x.whl
Size 237.7 kB
Tags CPython 3.11 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
c436130cc779806bdf5d5fae0d848713105472b8566b75ff70048c47d3961c5b
BLAKE2b-256 checksum
How to use checksums
257b768a8969abd447d5f0f3333df85c6a5d94982a1bc9a89c53c154bf7a8b11
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp311-cp311-musllinux_1_2_ppc64le.whl

Download URL propcache-0.2.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Size 233.0 kB
Tags CPython 3.11 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
c5ecca8f9bab618340c8e848d340baf68bcd8ad90a8ecd7a4524a81c1764b3db
BLAKE2b-256 checksum
How to use checksums
c39a8a8cf428a91b1336b883f09c8b884e1734c87f724d74b917129a24fe2093
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp311-cp311-musllinux_1_2_i686.whl

Download URL propcache-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Size 220.1 kB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
39e104da444a34830751715f45ef9fc537475ba21b7f1f5b0f4d71a3b60d7fe2
BLAKE2b-256 checksum
How to use checksums
7e76c79276a43df2096ce2aba07ce47576832b1174c0c480fe6b04bd70120e59
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl

Download URL propcache-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Size 217.3 kB
Tags CPython 3.11 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
945db8ee295d3af9dbdbb698cce9bbc5c59b5c3fe328bbc4387f59a8a35f998d
BLAKE2b-256 checksum
How to use checksums
25194fc08dac19297ac58135c03770b42377be211622fd0147f015f78d47cd31
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl

Download URL propcache-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Size 224.9 kB
Tags CPython 3.11 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
97a58a28bcf63284e8b4d7b460cbee1edaab24634e82059c7b8c09e65284f178
BLAKE2b-256 checksum
How to use checksums
18bb397d05a7298b7711b90e13108db697732325cafdcd8484c894885c1bf109
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL propcache-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 236.0 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4c7dde9e533c0a49d802b4f3f218fa9ad0a1ce21f2c2eb80d5216565202acab4
BLAKE2b-256 checksum
How to use checksums
8c5698c2054c8526331a05f205bf45cbb2cda4e58e56df70e76d6a509e5d6ec6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL propcache-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 243.6 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
91997d9cb4a325b60d4e3f20967f8eb08dfcb32b22554d5ef78e6fd1dda743a2
BLAKE2b-256 checksum
How to use checksums
4a89c893533cb45c79c970834274e2d0f6d64383ec740be631b6a0a1d2b4ddc0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL propcache-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 244.9 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
a6ed8db0a556343d566a5c124ee483ae113acc9a557a807d439bcecc44e7dfbb
BLAKE2b-256 checksum
How to use checksums
a58590132481183d1436dff6e29f4fa81b891afb6cb89a7306f32ac500a25932
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL propcache-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 236.2 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
fc2db02409338bf36590aa985a461b2c96fce91f8e7e0f14c50c5fcc4f229016
BLAKE2b-256 checksum
How to use checksums
2e5e4a3e96380805bf742712e39a4534689f4cddf5fa2d3a93f22e9fd8001b23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL propcache-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 224.8 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
ffcad6c564fe6b9b8916c1aefbb37a362deebf9394bd2974e9d84232e3e08504
BLAKE2b-256 checksum
How to use checksums
2d0c8b8b9f8a6e1abd869c0fa79b907228e7abb966919047d294ef5df0d136cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp311-cp311-macosx_11_0_arm64.whl

Download URL propcache-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Size 45.6 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
466c219deee4536fbc83c08d09115249db301550625c7fef1c5563a584c9bc87
BLAKE2b-256 checksum
How to use checksums
c01dc700d16d1d6903aeab28372fe9999762f074b80b96a0ccc953175b858743
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl

Download URL propcache-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Size 46.4 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
608cce1da6f2672a56b24a015b42db4ac612ee709f3d29f27a00c943d9e851de
BLAKE2b-256 checksum
How to use checksums
89c37e94009f9a4934c48a371632197406a8860b9f08e3f7f7d922ab69e57a41
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp311-cp311-macosx_10_9_universal2.whl

Download URL propcache-0.2.0-cp311-cp311-macosx_10_9_universal2.whl
Size 80.8 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
63f13bf09cc3336eb04a837490b8f332e0db41da66995c9fd1ba04552e516354
BLAKE2b-256 checksum
How to use checksums
e01c71eec730e12aec6511e702ad0cd73c2872eccb7cad39de8ba3ba9de693ef
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp310-cp310-win_amd64.whl

Download URL propcache-0.2.0-cp310-cp310-win_amd64.whl
Size 45.0 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
cfac69017ef97db2438efb854edf24f5a29fd09a536ff3a992b75990720cdc99
BLAKE2b-256 checksum
How to use checksums
bb446c2add5eeafb7f31ff0d25fbc005d930bea040a1364cf0f5768750ddf4d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp310-cp310-win32.whl

Download URL propcache-0.2.0-cp310-cp310-win32.whl
Size 40.5 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
7cf18abf9764746b9c8704774d8b06714bcb0a63641518a3a89c7f85cc02c2ad
BLAKE2b-256 checksum
How to use checksums
1f27d01d7799c068443ee64002f0655d82fb067496897bf74b632e28ee6a32cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL propcache-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Size 207.6 kB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
7665f04d0c7f26ff8bb534e1c65068409bf4687aa2534faf7104d7182debb336
BLAKE2b-256 checksum
How to use checksums
8b544ef7236cd657e53098bd05aa59cbc3cbf7018fba37b40eaed112c3921e51
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp310-cp310-musllinux_1_2_s390x.whl

Download URL propcache-0.2.0-cp310-cp310-musllinux_1_2_s390x.whl
Size 215.6 kB
Tags CPython 3.10 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
56bb5c98f058a41bb58eead194b4db8c05b088c93d94d5161728515bd52b052b
BLAKE2b-256 checksum
How to use checksums
853ee356cc6b09064bff1c06d0b2413593e7c925726f0139bc7acef8a21e87a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp310-cp310-musllinux_1_2_ppc64le.whl

Download URL propcache-0.2.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Size 211.0 kB
Tags CPython 3.10 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
e63e3e1e0271f374ed489ff5ee73d4b6e7c60710e1f76af5f0e1a6117cd26394
BLAKE2b-256 checksum
How to use checksums
08310e299f650f73903da851f50f576ef09bfffc8e1519e6a2f1e5ed2d19c591
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp310-cp310-musllinux_1_2_i686.whl

Download URL propcache-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Size 201.3 kB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
9e0f07b42d2a50c7dd2d8675d50f7343d998c64008f1da5fef888396b7f84630
BLAKE2b-256 checksum
How to use checksums
a28f90ada38448ca2e9cf25adc2fe05d08358bda1b9446f54a606ea38f41798b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl

Download URL propcache-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Size 199.8 kB
Tags CPython 3.10 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
a3dc1a4b165283bd865e8f8cb5f0c64c05001e0718ed06250d8cac9bec115b48
BLAKE2b-256 checksum
How to use checksums
ee784acfc5544a5075d8e660af4d4e468d60c418bba93203d1363848444511ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl

Download URL propcache-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Size 202.3 kB
Tags CPython 3.10 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
d2f0d0f976985f85dfb5f3d685697ef769faa6b71993b46b295cdbbd6be8cc37
BLAKE2b-256 checksum
How to use checksums
d0988ac69f638358c5f2a0043809c917802f96f86026e86726b65006830f3dc6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL propcache-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 208.9 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3dfafb44f7bb35c0c06eda6b2ab4bfd58f02729e7c4045e179f9a861b07c9850
BLAKE2b-256 checksum
How to use checksums
8de722e76ae6fc5a1708bdce92bdb49de5ebe89a173db87e4ef597d6bbe9145a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL propcache-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 221.1 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
f571aea50ba5623c308aa146eb650eebf7dbe0fd8c5d946e28343cb3b5aad577
BLAKE2b-256 checksum
How to use checksums
5e1cfef251f79fd4971a413fa4b1ae369ee07727b4cc2c71e2d90dfcde664fbb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL propcache-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 222.6 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
388f3217649d6d59292b722d940d4d2e1e6a7003259eb835724092a1cca0203a
BLAKE2b-256 checksum
How to use checksums
bd2cef7371ff715e6cd19ea03fdd5637ecefbaa0752fee5b0f2fe8ea8407ee01
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL propcache-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 208.7 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
97e48e8875e6c13909c800fa344cd54cc4b2b0db1d5f911f840458a500fde2c2
BLAKE2b-256 checksum
How to use checksums
439555acc9adff8f997c7572f23d41993042290dfb29e404cdadb07039a4386f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL propcache-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 200.1 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
a3ebe9a75be7ab0b7da2464a77bb27febcb4fab46a34f9288f39d74833db7f61
BLAKE2b-256 checksum
How to use checksums
043ef10aa562781bcd8a1e0b37683a23bef32bdbe501d9cc7e76969becaac30d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp310-cp310-macosx_11_0_arm64.whl

Download URL propcache-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Size 45.6 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
33ac8f098df0585c0b53009f039dfd913b38c1d2edafed0cedcc0c32a05aa110
BLAKE2b-256 checksum
How to use checksums
33a26b1978c2e0d80a678e2c483f45e5443c15fe5d32c483902e92a073314ef1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl

Download URL propcache-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Size 46.3 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
952e0d9d07609d9c5be361f33b0d6d650cd2bae393aabb11d9b719364521984b
BLAKE2b-256 checksum
How to use checksums
e65949072aba9bf8a8ed958e576182d46f038e595b17ff7408bc7e8807e721e1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp310-cp310-macosx_10_9_universal2.whl

Download URL propcache-0.2.0-cp310-cp310-macosx_10_9_universal2.whl
Size 80.7 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
c5869b8fd70b81835a6f187c5fdbe67917a04d7e52b6e7cc4e5fe39d55c39d58
BLAKE2b-256 checksum
How to use checksums
3a081963dfb932b8d74d5b09098507b37e9b96c835ba89ab8aad35aa330f4ff3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp39-cp39-win_amd64.whl

Download URL propcache-0.2.0-cp39-cp39-win_amd64.whl
Size 45.6 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
9517d5e9e0731957468c29dbfd0f976736a0e55afaea843726e887f36fe017df
BLAKE2b-256 checksum
How to use checksums
af53a3e5b937f58e757a940716b88105ec4c211c42790c1ea17052b46dc16f16
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp39-cp39-win32.whl

Download URL propcache-0.2.0-cp39-cp39-win32.whl
Size 41.0 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
73e4b40ea0eda421b115248d7e79b59214411109a5bc47d0d48e4c73e3b8fcf9
BLAKE2b-256 checksum
How to use checksums
288c266898981b7883c1563c35954f9ce9ced06019fdcc487a9520150c48dc91
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL propcache-0.2.0-cp39-cp39-musllinux_1_2_x86_64.whl
Size 211.6 kB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
22aa8f2272d81d9317ff5756bb108021a056805ce63dd3630e27d042c8092798
BLAKE2b-256 checksum
How to use checksums
2e25280d0a3bdaee68db74c0acd9a472e59e64b516735b59cffd3a326ff9058a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp39-cp39-musllinux_1_2_s390x.whl

Download URL propcache-0.2.0-cp39-cp39-musllinux_1_2_s390x.whl
Size 220.1 kB
Tags CPython 3.9 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
f6d5749fdd33d90e34c2efb174c7e236829147a2713334d708746e94c4bde40d
BLAKE2b-256 checksum
How to use checksums
c91f4c44c133b08bc5f776afcb8f0833889c2636b8a83e07ea1d9096c1e401b0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl

Download URL propcache-0.2.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Size 215.5 kB
Tags CPython 3.9 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
b33d7a286c0dc1a15f5fc864cc48ae92a846df287ceac2dd499926c3801054a6
BLAKE2b-256 checksum
How to use checksums
842ac3d2f989fc571a5bad0fabcd970669ccb08c8f9b07b037ecddbdab16a040
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp39-cp39-musllinux_1_2_i686.whl

Download URL propcache-0.2.0-cp39-cp39-musllinux_1_2_i686.whl
Size 204.7 kB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
e70fac33e8b4ac63dfc4c956fd7d85a0b1139adcfc0d964ce288b7c527537fea
BLAKE2b-256 checksum
How to use checksums
db875748212a18beb8d4ab46315c55ade8960d1e2cdc190764985b2d229dd3f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl

Download URL propcache-0.2.0-cp39-cp39-musllinux_1_2_armv7l.whl
Size 203.3 kB
Tags CPython 3.9 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
140fbf08ab3588b3468932974a9331aff43c0ab8a2ec2c608b6d7d1756dbb6cb
BLAKE2b-256 checksum
How to use checksums
29d719a4d3b4c7e95d08f216da97035d0b103d0c90411c6f739d47088d2da1f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl

Download URL propcache-0.2.0-cp39-cp39-musllinux_1_2_aarch64.whl
Size 208.8 kB
Tags CPython 3.9 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
363ea8cd3c5cb6679f1c2f5f1f9669587361c062e4899fce56758efa928728f8
BLAKE2b-256 checksum
How to use checksums
5bcef3bff82c885dbd9ae9e43f134d5b02516c3daa52d46f7a50e4f52ef9121f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL propcache-0.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 211.8 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
682a7c79a2fbf40f5dbb1eb6bfe2cd865376deeac65acf9beb607505dced9e12
BLAKE2b-256 checksum
How to use checksums
ce4e97059dd24494d1c93d1efb98bb24825e1930265b41858dd59c15cb37a975
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL propcache-0.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 225.6 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
fa1076244f54bb76e65e22cb6910365779d5c3d71d1f18b275f1dfc7b0d71b4d
BLAKE2b-256 checksum
How to use checksums
deb6e078b5e9de58e20db12135eb6a206b4b43cb26c6b62ee0fe36ac40763a64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL propcache-0.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 226.6 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
bc092ba439d91df90aea38168e11f75c655880c12782facf5cf9c00f3d42b562
BLAKE2b-256 checksum
How to use checksums
bcc640eb0dd1de6f8e84f454615ab61f68eb4a58f9d63d6f6eaf04300ac0cc17
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL propcache-0.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 211.1 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
f45eec587dafd4b2d41ac189c2156461ebd0c1082d2fe7013571598abb8505d1
BLAKE2b-256 checksum
How to use checksums
e2dc60d444610bc5b1d7a758534f58362b1bcee736a785473f8a39c91f05aad1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL propcache-0.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 203.1 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
8e40876731f99b6f3c897b66b803c9e1c07a989b366c6b5b475fafd1f7ba3fb8
BLAKE2b-256 checksum
How to use checksums
fc234dbf726602a989d2280fe130a9b9dd71faa8d3bb8cd23d3261ff3c23f692
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp39-cp39-macosx_11_0_arm64.whl

Download URL propcache-0.2.0-cp39-cp39-macosx_11_0_arm64.whl
Size 46.1 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
1ec43d76b9677637a89d6ab86e1fef70d739217fefa208c65352ecf0282be957
BLAKE2b-256 checksum
How to use checksums
e777388697bedda984af0d12d68e536b98129b167282da3401965c8450de510e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl

Download URL propcache-0.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Size 47.0 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
375a12d7556d462dc64d70475a9ee5982465fbb3d2b364f16b86ba9135793638
BLAKE2b-256 checksum
How to use checksums
9f848d5edb9a73e1a56b24dd8f2adb6aac223109ff0e8002313d52e5518258ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp39-cp39-macosx_10_9_universal2.whl

Download URL propcache-0.2.0-cp39-cp39-macosx_10_9_universal2.whl
Size 81.9 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
25c8d773a62ce0451b020c7b29a35cfbc05de8b291163a7a0f3b7904f27253e6
BLAKE2b-256 checksum
How to use checksums
3805797e6738c9f44ab5039e3ff329540c934eabbe8ad7e63c305c75844bc86f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp38-cp38-win_amd64.whl

Download URL propcache-0.2.0-cp38-cp38-win_amd64.whl
Size 45.7 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
676135dcf3262c9c5081cc8f19ad55c8a64e3f7282a21266d05544450bffc3a5
BLAKE2b-256 checksum
How to use checksums
3723a30214b4c1f2bea24cc1197ef48d67824fbc41d5cf5472b17c37fef6002c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp38-cp38-win32.whl

Download URL propcache-0.2.0-cp38-cp38-win32.whl
Size 41.0 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
d9b6ddac6408194e934002a69bcaadbc88c10b5f38fb9307779d1c629181815d
BLAKE2b-256 checksum
How to use checksums
ff3e6103906a66d6713f32880cf6a5ba84a1406b4d66e1b9389bb9b8e1789f9e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL propcache-0.2.0-cp38-cp38-musllinux_1_2_x86_64.whl
Size 207.8 kB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
74acd6e291f885678631b7ebc85d2d4aec458dd849b8c841b57ef04047833bed
BLAKE2b-256 checksum
How to use checksums
ff3aa9f1a0c0e5b994b8f1a1c71bea56bb3e9eeec821cb4dd61e14051c4ba00b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp38-cp38-musllinux_1_2_s390x.whl

Download URL propcache-0.2.0-cp38-cp38-musllinux_1_2_s390x.whl
Size 229.3 kB
Tags CPython 3.8 Linux musl 1.2+ IBM System/390x
SHA-256 checksum
How to use checksums
f60f0ac7005b9f5a6091009b09a419ace1610e163fa5deaba5ce3484341840e7
BLAKE2b-256 checksum
How to use checksums
eb9915f998c502c214f6c7f51462937605d514a8943a9a6c1fa10f40d2710976
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp38-cp38-musllinux_1_2_ppc64le.whl

Download URL propcache-0.2.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Size 225.6 kB
Tags CPython 3.8 Linux musl 1.2+ PowerPC 64-le
SHA-256 checksum
How to use checksums
25a1f88b471b3bc911d18b935ecb7115dff3a192b6fef46f0bfaf71ff4f12418
BLAKE2b-256 checksum
How to use checksums
e481e8e96c97aa0b675a14e37b12ca9c9713b15cfacf0869e64bf3ab389fabf1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp38-cp38-musllinux_1_2_i686.whl

Download URL propcache-0.2.0-cp38-cp38-musllinux_1_2_i686.whl
Size 201.6 kB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
662dd62358bdeaca0aee5761de8727cfd6861432e3bb828dc2a693aa0471a563
BLAKE2b-256 checksum
How to use checksums
a939b9ea7b011521dd7cfd2f89bb6b8b304f3c789ea6285445bc145bebc83094
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl

Download URL propcache-0.2.0-cp38-cp38-musllinux_1_2_armv7l.whl
Size 200.5 kB
Tags CPython 3.8 Linux musl 1.2+ ARMv7l
SHA-256 checksum
How to use checksums
2a60ad3e2553a74168d275a0ef35e8c0a965448ffbc3b300ab3a5bb9956c2162
BLAKE2b-256 checksum
How to use checksums
0f4e79f665fa04839f30ffb2903211c718b9660fbb938ac7a4df79525af5aeb3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl

Download URL propcache-0.2.0-cp38-cp38-musllinux_1_2_aarch64.whl
Size 202.4 kB
Tags CPython 3.8 Linux musl 1.2+ ARM64
SHA-256 checksum
How to use checksums
db47514ffdbd91ccdc7e6f8407aac4ee94cc871b15b577c1c324236b013ddd04
BLAKE2b-256 checksum
How to use checksums
e1df80e2c5cd5ed56a7bfb1aa58cedb79617a152ae43de7c0a7e800944a6b2e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL propcache-0.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 213.6 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
67b69535c870670c9f9b14a75d28baa32221d06f6b6fa6f77a0a13c5a7b0a5b9
BLAKE2b-256 checksum
How to use checksums
c3f169a30ff0928d07f50bdc6f0147fd9a08e80904fd3fdb711785e518de1021
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL propcache-0.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 222.6 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
20a617c776f520c3875cf4511e0d1db847a076d720714ae35ffe0df3e440be68
BLAKE2b-256 checksum
How to use checksums
6627072be8ad434c9a3aa1b561f527984ea0ed4ac072fd18dfaaa2aa2d6e6a2b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL propcache-0.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 224.6 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
7735e82e3498c27bcb2d17cb65d62c14f1100b71723b68362872bca7d0913d90
BLAKE2b-256 checksum
How to use checksums
7c575d4d783ac594bd56434679b8643673ae12de1ce758116fd8912a7f2313ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL propcache-0.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 212.9 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
218db2a3c297a3768c11a34812e63b3ac1c3234c3a086def9c0fee50d35add1f
BLAKE2b-256 checksum
How to use checksums
fadf8dbd3e472baf73251c0fbb571a3f0a4e3a40c52a1c8c2a6c46ab08736ff9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL propcache-0.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 205.4 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
4569158070180c3855e9c0791c56be3ceeb192defa2cdf6a3f39e54319e56b89
BLAKE2b-256 checksum
How to use checksums
a82ec16716ae113fe0a3219978df3665a6fea049d81d50bd28c4ae72a4c77567
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp38-cp38-macosx_11_0_arm64.whl

Download URL propcache-0.2.0-cp38-cp38-macosx_11_0_arm64.whl
Size 46.3 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
77a86c261679ea5f3896ec060be9dc8e365788248cc1e049632a1be682442063
BLAKE2b-256 checksum
How to use checksums
80ef18af27caaae5589c08bb5a461cfa136b83b7e7983be604f2140d91f92b97
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl

Download URL propcache-0.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Size 47.2 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
83928404adf8fb3d26793665633ea79b7361efa0287dfbd372a7e74311d51ee6
BLAKE2b-256 checksum
How to use checksums
73b79e2a17d9a126f2012b22ddc5d0979c28ca75104e24945214790c1d787015
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release files / propcache-0.2.0-cp38-cp38-macosx_10_9_universal2.whl

Download URL propcache-0.2.0-cp38-cp38-macosx_10_9_universal2.whl
Size 82.3 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
53d1bd3f979ed529f0805dd35ddaca330f80a9a6d90bc0121d2ff398f8ed8861
BLAKE2b-256 checksum
How to use checksums
b4942c3d64420fd58ed462e2b416386d48e72dec027cf7bb572066cf3866e939
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/5.1.1 CPython/3.12.7

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Oct 7, 2024.

Transparency log

Release history Release notifications | RSS feed

0.3.1

98 release files

0.3.0

98 release files

This release

0.2.0 This release

98 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page