Skip to main content

Thread-safe Python caching decorator backed by a Rust extension

Project description

warp_cache

A thread-safe Python caching decorator backed by a Rust extension. Through a series of optimizations — eliminating serialization, moving the call wrapper into Rust, applying link-time optimization, and using direct C API calls — we achieve 0.55-0.66x of lru_cache's single-threaded throughput while providing native thread safety that delivers 1.3-1.4x higher throughput under concurrent load — and 18-24x faster than pure-Python cachetools.

Features

  • Drop-in replacement for functools.lru_cache — same decorator pattern and hashable-argument requirement, with added thread safety, TTL, eviction strategies, and async support
  • Thread-safe out of the box (parking_lot::RwLock in Rust)
  • Async support: works with async def functions — zero overhead on sync path
  • Shared memory backend: cross-process caching via mmap
  • Multiple eviction strategies: LRU, MRU, FIFO, LFU
  • TTL support: optional time-to-live expiration
  • Single FFI crossing: entire cache lookup happens in Rust, no Python wrapper overhead
  • 12-18M ops/s single-threaded, 16M ops/s under concurrent load, 18-24x faster than cachetools

Installation

Prebuilt wheels are available for Linux (x86_64, aarch64), macOS (x86_64, arm64), and Windows (x86_64):

pip install warp_cache

If no wheel is available for your platform, pip will fall back to the source distribution (requires a Rust toolchain).

Quick example

from warp_cache import cache

@cache()
def expensive(x, y):
    return x + y

expensive(1, 2)  # computes and caches
expensive(1, 2)  # returns cached result

If you're already using functools.lru_cache, switching is a one-line change:

-from functools import lru_cache
+from warp_cache import cache

-@lru_cache(maxsize=128)
+@cache(max_size=128)
 def expensive(x, y):
     return x + y

Like lru_cache, all arguments must be hashable. See the usage guide for details.

Performance at a glance

Metric warp_cache cachetools lru_cache
Single-threaded 12-18M ops/s 0.6-1.2M ops/s 21-40M ops/s
Multi-threaded (8T) 16M ops/s 770K ops/s (with Lock) 12M ops/s (with Lock)
Thread-safe Yes (RwLock) No (manual Lock) No
Async support Yes No No
Cross-process (shared) ~7.8M ops/s (mmap) No No
TTL support Yes Yes No
Eviction strategies LRU, MRU, FIFO, LFU LRU, LFU, FIFO, RR LRU only
Implementation Rust (PyO3) Pure Python C (CPython)

Under concurrent load, warp_cache delivers 1.3-1.4x higher throughput than lru_cache + Lock and 18-24x higher than cachetools. See full benchmarks for details.

Documentation

  • Usage guide — eviction strategies, async, TTL, shared memory, decorator parameters
  • Performance — benchmarks, architecture deep-dive, optimization journey
  • Alternatives — comparison with cachebox, moka-py, cachetools, lru_cache
  • Examples — runnable scripts for every feature (uv run examples/<name>.py)
  • llms.txt / llms-full.txt — project info for LLMs and AI agents (spec)

Contributing

Contributions are welcome! See CONTRIBUTING.md for setup instructions, coding standards, and PR guidelines.

For security issues, please see SECURITY.md.

License

MIT

Project details


Download files

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

Source Distribution

warp_cache-0.1.3.tar.gz (1.4 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

warp_cache-0.1.3-cp313-cp313-win_amd64.whl (167.4 kB view details)

Uploaded CPython 3.13Windows x86-64

warp_cache-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

warp_cache-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (261.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

warp_cache-0.1.3-cp313-cp313-macosx_11_0_arm64.whl (249.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

warp_cache-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl (264.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

warp_cache-0.1.3-cp312-cp312-win_amd64.whl (167.5 kB view details)

Uploaded CPython 3.12Windows x86-64

warp_cache-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (274.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

warp_cache-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (261.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

warp_cache-0.1.3-cp312-cp312-macosx_11_0_arm64.whl (249.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

warp_cache-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl (264.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

warp_cache-0.1.3-cp311-cp311-win_amd64.whl (169.8 kB view details)

Uploaded CPython 3.11Windows x86-64

warp_cache-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (273.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

warp_cache-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (261.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

warp_cache-0.1.3-cp311-cp311-macosx_11_0_arm64.whl (250.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

warp_cache-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (264.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

warp_cache-0.1.3-cp310-cp310-win_amd64.whl (169.9 kB view details)

Uploaded CPython 3.10Windows x86-64

warp_cache-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (273.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

warp_cache-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (261.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

warp_cache-0.1.3-cp310-cp310-macosx_11_0_arm64.whl (250.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

warp_cache-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl (265.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file warp_cache-0.1.3.tar.gz.

File metadata

  • Download URL: warp_cache-0.1.3.tar.gz
  • Upload date:
  • Size: 1.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for warp_cache-0.1.3.tar.gz
Algorithm Hash digest
SHA256 1be81a274eb5236daf2e26dbb7ad80a414571e61ba2a091a81693b03efaaf411
MD5 f5552a1d946ec5285f41f5d52bc41989
BLAKE2b-256 1c608dcd93b1511a02c78d240bd1aa06034c61d92a69630c3e12f5254af3ea47

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3.tar.gz:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: warp_cache-0.1.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 167.4 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for warp_cache-0.1.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4286ce6ea2bcd1a68954806012d33531683d457935d8b954505675f793d84270
MD5 f82285b87506e5265e700a8d07b01d97
BLAKE2b-256 ba7afa34507995a91e0bb0801edf0c10e7f6d9cdf40d7566e315f3e3526dc9c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp313-cp313-win_amd64.whl:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for warp_cache-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e761012199a9fcf1620fc6c532073aa8db9c93a42beeb35014ad3ee88fc01ee
MD5 6e983e9ff34ec9e4e3097c6490eac814
BLAKE2b-256 b5c58e54ca037913c44c3b8c54967dcaccc41ad9a45f3622758f800b0f1d1fd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for warp_cache-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed61ba773ac71232f3fa17bdc2bcec620e77ba2aae2a4c502749c6b139f05e92
MD5 c226ef90ba2521bb69abbd8108e073f9
BLAKE2b-256 2a2333e4f63d938dd01aeeddd656a78e79759b4df0fac7324e1ab697677906b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for warp_cache-0.1.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8051bce46cd88c193fdfa07876da7708a03d316a2aa86bda77a110f8ba254494
MD5 5b524f4cadbde32c51be2cc1bf0c4e15
BLAKE2b-256 7d4dad86879ddf84e747a904b28af7ad0f64d9e86009b6acb20b3dfa6dc6d7d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for warp_cache-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 30880e2b90e73a4e27d3650a5c132e97aa30c20d5543bbe3cc68ac59090f759e
MD5 a343e737d39b1dd9012fd96791380765
BLAKE2b-256 422e8433db822c15141339b393e8e9f86db6268356eaf1a4086470c0b52851ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: warp_cache-0.1.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 167.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for warp_cache-0.1.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 837ae46a944b5bbf4222f50b516b90ac4ae918071654a2fee2bee48c34ccbe72
MD5 517d4df26b4edd63fb0772fca80e7a20
BLAKE2b-256 49973fba89c033b44ad44ff32a71a7b3524b6addf490be92e6696184b51eb665

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp312-cp312-win_amd64.whl:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for warp_cache-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c1028d555d3a9e8bd47fb60734ab2dd01f46f49fb1f335f402d262ee5aa54f8
MD5 7d574cb8deb4adddefe29947e336d996
BLAKE2b-256 4cf376b3484b9ab4fb73771aa984f9ae2c24a2d74a583ee18098e0a7a99a669a

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for warp_cache-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 898a1f3da1a2460c5ca633b611ef3435f05bf931296940110f5b1544ab2bb8c5
MD5 711471b8fb9a8b5a615f936c240376f2
BLAKE2b-256 1467ca7106b6687f2250fc5132a326212304ea7db8a98226e24a84978adfd5fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for warp_cache-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cd6aa43d7c435ab08208826ba61aaae5db568312e46f4a4f3db14ae19fcd72a
MD5 79107419297ee2f65264c0e1366927e9
BLAKE2b-256 ad024bbb9f501a30a7d902b73bd523772e14681fe6a4846975987e414200467f

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for warp_cache-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 936dcc23ca033ffff894861da5303a67daf83860009dd8a3baa7b62753b56aa3
MD5 e3748ea0112a8feb55a980fc90f41397
BLAKE2b-256 95664ecf4df2c73a600e1696e3d77f4366883faac8c721aa1fb5cca2210c608b

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: warp_cache-0.1.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 169.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for warp_cache-0.1.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a9972ae0584faf10c752643009f4958e80abebe05bae1af8e4c2eda4a7d28647
MD5 5d2e56581ef5e97c1e385bf58c9d9c03
BLAKE2b-256 d0d9ababf2041dd63a3bb6a77b3199ed66f43098c890df69daa7d72f017b5313

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp311-cp311-win_amd64.whl:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for warp_cache-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ff8f9a6bd8f710be13bd0bc4b91a07f10de08ca93cb71fa94d089aed2ada56a
MD5 17f339e5d41ae669a162cbc52845e1a2
BLAKE2b-256 3a6265673733b5a1ab16371c182e9b3579c31b09a654f1cd8df626b28a604f5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for warp_cache-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b317a41fb52e7c9704cce32d11db7f61d6c37037f771f841b121d601b4928fe0
MD5 972e8684c090b9d3f4e48c46ba1ba476
BLAKE2b-256 0569d62894b8f341cdb195fbbb347b1b03c12ab78a1e588f7f14e2c0aaa2b2e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for warp_cache-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb84461851c2324d7df7b3b6d4095105e948f79726495a1eeddb77fa4d07f61f
MD5 42fdc38f2754553e9aa0b7e239d25843
BLAKE2b-256 b5ccbd8249751547722f5d69ad96536be9aa1b6d9d4700320c189ca010da744c

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for warp_cache-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c761e7840af4e569aa89e757a75b812b95e4c02fccf311e84b89b10bb7e89e59
MD5 e19110249bd1279dd0e4158dd318d7d0
BLAKE2b-256 f1e77515e634629c1f7e2c1dc0c4fa1792bf807788fbfe7d00ecfd5752e2c5e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: warp_cache-0.1.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 169.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for warp_cache-0.1.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 146b756ed773ce9888a833cdf345e992555ee308f4b5787af388e626197c2206
MD5 438de0cddeb854816a1cbb09fef1627d
BLAKE2b-256 12ef974773825ae6d30299d72c6cc9621a75896a651d562635b43d54ba136da8

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp310-cp310-win_amd64.whl:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for warp_cache-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e3bbf31c5f1aab223425fd1d29f295f1c56c2a565f8dcd58e0f5046f9d85bf6
MD5 8ef46ca48652b3254233f6f65410c02e
BLAKE2b-256 5b29f8a4e537cc153816beb9cd9b759dd0a84dce7fd59ab9fda98ccecefbb5f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for warp_cache-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee0d8a40a34f45e4f4e969eb064f68a8894abf09f95abb3a32d51636cc85c16e
MD5 22cd96fa65e235d70021cebc96ba019e
BLAKE2b-256 4a04aa963cad51a5b78a42da4739f58ca093ed17d1c7ee48e0030f8568e2c80b

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for warp_cache-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f63d91a2c6026f7ca032d747fd414162b37ccc71ab17282b2c7722436fcf8332
MD5 8e62c403fb582b4b151d5623aa2e84ad
BLAKE2b-256 29ee1412580cc5f240327c69eb8af39cadb3fad70050235a450054816a8c344d

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on toloco/warp_cache

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

File details

Details for the file warp_cache-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for warp_cache-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a54195f200f0f4dff1b0a7c7b5a35e2fe4493d66602c93884c781594f7767c5
MD5 f7a13945ba036fd4baecd31018adfd68
BLAKE2b-256 4e3445652f972af171260b24b0a11ee683de8d0e856206050b6ddac635dba7ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for warp_cache-0.1.3-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: publish.yml on toloco/warp_cache

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

Supported by

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