Skip to main content

Cachebox

The fastest caching Python library written in Rust

Documentation | Releases | Benchmarks | Issues

License Downloads Donate


[!WARNING]
The new version v6 has incompatibilities with v5. For more info see Migration Guide.

What does it do?

You can easily perform powerful caching operations in Python as fast as possible. This can make your application a lot faster and it can be a good choice in complex applications. Ideal for optimizing large-scale applications with efficient, low-overhead caching.

Key Features:

  • 🚀 Extremely fast (10-50x faster than other caching libraries - benchmarks)
  • 📊 Minimal memory footprint
  • 🔥 Full-featured and user-friendly
  • 🧶 Completely thread-safe
  • 🔧 Tested and correct
  • [R] written in Rust for maximum performance
  • 🤝 Compatible with Python 3.10+ (PyPy and CPython)
  • 📦 Supports 7 advanced caching algorithms

When do I need caching?

  • 📈 Frequent Data Access
    If you need to access the same data multiple times, caching can help reduce the number of database queries or API calls, improving performance.

  • 💎 Expensive Operations
    If you have operations that are computationally expensive, caching can help reduce the number of times these operations need to be performed.

  • 🚗 High Traffic Scenarios
    If your application handles high traffic, caching can help reduce the load on your server by reducing the number of requests that need to be processed.

  • #️⃣ Web Page Rendering
    If you are rendering web pages, caching can help reduce the time it takes to generate the page by caching the results of expensive rendering operations. Caching HTML pages can speed up the delivery of static content.

  • 🚧 Rate Limiting
    If you have a rate limiting system in place, caching can help reduce the number of requests that need to be processed by the rate limiter. Also, caching can help you to manage rate limits imposed by third-party APIs by reducing the number of requests sent.

  • 🤖 Machine Learning Models
    If your application frequently makes predictions using the same input data, caching the results can save computation time.

Why cachebox?

  • ⚡ Rust
    It uses the Rust language for high-performance.

  • 🧮 SwissTable
    It uses Google's high-performance SwissTable hash map. Thanks to hashbrown.

  • ✨ Low memory usage
    It has very low memory usage.

  • ⭐ Zero Dependency
    As we said, cachebox is written in Rust so you don't have to install any other dependecies.

  • 🧶 Thread safe
    It's completely thread-safe and uses Rust mutex to prevent problems.

  • 👌 Easy To Use
    You only need to import it and choose a cache implementation to use.

  • 🚫 Avoids Cache Stampede
    It avoids cache stampede by using a distributed lock system.

Installation

cachebox is installable via pip:

pip3 install -U cachebox

Examples

The simplest example of cachebox could look like this:

import cachebox

@cachebox.cached(cachebox.FIFOCache(maxsize=128))
def factorial(number: int) -> int:
    fact = 1
    for num in range(2, number + 1):
        fact *= num
    return fact

assert factorial(5) == 125

# coroutines are also supported
@cachebox.cached(cachebox.LRUCache(maxsize=128))
async def make_request(method: str, url: str) -> dict:
    response = await client.request(method, url)
    return response.json()

Unlike functools.lru_cache and other caching libraries, cachebox can copy dict, list, and set objects.

@cachebox.cached(cachebox.LRUCache(maxsize=128))
def make_dict(name: str, age: int) -> dict:
   return {"name": name, "age": age}
>
d = make_dict("cachebox", 10)
assert d == {"name": "cachebox", "age": 10}
d["new-key"] = "new-value"

d2 = make_dict("cachebox", 10)
# `d2` will be `{"name": "cachebox", "age": 10, "new-key": "new-value"}` if you use other libraries
assert d2 == {"name": "cachebox", "age": 10}

You can use cache alghoritms without the cached decorator -- just import the cache alghoritm you want and use it like a dictionary.

from cachebox import FIFOCache

cache = FIFOCache(maxsize=128)
cache["key"] = "value"
assert cache["key"] == "value"

# You can also use `cache.get(key, default)`
assert cache.get("key") == "value"

Learn more

Read the documentation for full information and learn more: Documentation

License

This repository is licensed under the MIT License

Download files

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

Source Distribution

cachebox-6.2.2.tar.gz (155.0 kB view details)

Uploaded Source

Built Distributions

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

cachebox-6.2.2-pp311-pypy311_pp73-win_amd64.whl (351.5 kB view details)

Uploaded PyPyWindows x86-64

cachebox-6.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (702.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cachebox-6.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (743.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cachebox-6.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (787.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cachebox-6.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (644.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (487.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (520.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (516.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (511.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (467.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (530.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

cachebox-6.2.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (441.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

cachebox-6.2.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (464.4 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

cachebox-6.2.2-cp315-cp315t-win_amd64.whl (333.8 kB view details)

Uploaded CPython 3.15tWindows x86-64

cachebox-6.2.2-cp315-cp315t-win32.whl (320.9 kB view details)

Uploaded CPython 3.15tWindows x86

cachebox-6.2.2-cp315-cp315t-musllinux_1_2_x86_64.whl (677.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

cachebox-6.2.2-cp315-cp315t-musllinux_1_2_i686.whl (700.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

cachebox-6.2.2-cp315-cp315t-musllinux_1_2_armv7l.whl (736.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

cachebox-6.2.2-cp315-cp315t-musllinux_1_2_aarch64.whl (617.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

cachebox-6.2.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (464.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

cachebox-6.2.2-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl (496.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ s390x

cachebox-6.2.2-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (492.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64le

cachebox-6.2.2-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (460.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

cachebox-6.2.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (440.0 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

cachebox-6.2.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (488.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

cachebox-6.2.2-cp315-cp315t-macosx_11_0_arm64.whl (404.2 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

cachebox-6.2.2-cp315-cp315t-macosx_10_12_x86_64.whl (437.3 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

cachebox-6.2.2-cp315-cp315-win_amd64.whl (343.2 kB view details)

Uploaded CPython 3.15Windows x86-64

cachebox-6.2.2-cp315-cp315-win32.whl (335.2 kB view details)

Uploaded CPython 3.15Windows x86

cachebox-6.2.2-cp315-cp315-musllinux_1_2_x86_64.whl (689.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

cachebox-6.2.2-cp315-cp315-musllinux_1_2_i686.whl (716.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

cachebox-6.2.2-cp315-cp315-musllinux_1_2_armv7l.whl (751.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

cachebox-6.2.2-cp315-cp315-musllinux_1_2_aarch64.whl (630.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

cachebox-6.2.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (475.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

cachebox-6.2.2-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl (509.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ s390x

cachebox-6.2.2-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (502.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64le

cachebox-6.2.2-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (475.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

cachebox-6.2.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (502.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

cachebox-6.2.2-cp315-cp315-macosx_11_0_arm64.whl (417.0 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

cachebox-6.2.2-cp315-cp315-macosx_10_12_x86_64.whl (453.6 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

cachebox-6.2.2-cp314-cp314t-win_amd64.whl (333.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

cachebox-6.2.2-cp314-cp314t-win32.whl (320.8 kB view details)

Uploaded CPython 3.14tWindows x86

cachebox-6.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl (677.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cachebox-6.2.2-cp314-cp314t-musllinux_1_2_i686.whl (699.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

cachebox-6.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl (736.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

cachebox-6.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl (617.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cachebox-6.2.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (464.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cachebox-6.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (497.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

cachebox-6.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (493.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cachebox-6.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (460.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

cachebox-6.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (440.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

cachebox-6.2.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (487.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

cachebox-6.2.2-cp314-cp314t-macosx_11_0_arm64.whl (404.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cachebox-6.2.2-cp314-cp314t-macosx_10_12_x86_64.whl (437.4 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

cachebox-6.2.2-cp314-cp314-win_amd64.whl (343.0 kB view details)

Uploaded CPython 3.14Windows x86-64

cachebox-6.2.2-cp314-cp314-win32.whl (335.0 kB view details)

Uploaded CPython 3.14Windows x86

cachebox-6.2.2-cp314-cp314-musllinux_1_2_x86_64.whl (689.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cachebox-6.2.2-cp314-cp314-musllinux_1_2_i686.whl (716.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

cachebox-6.2.2-cp314-cp314-musllinux_1_2_armv7l.whl (751.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

cachebox-6.2.2-cp314-cp314-musllinux_1_2_aarch64.whl (630.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cachebox-6.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (476.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cachebox-6.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (509.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

cachebox-6.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (501.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

cachebox-6.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (475.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cachebox-6.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (502.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

cachebox-6.2.2-cp314-cp314-macosx_11_0_arm64.whl (417.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cachebox-6.2.2-cp314-cp314-macosx_10_12_x86_64.whl (453.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

cachebox-6.2.2-cp313-cp313-win_amd64.whl (345.1 kB view details)

Uploaded CPython 3.13Windows x86-64

cachebox-6.2.2-cp313-cp313-win32.whl (332.5 kB view details)

Uploaded CPython 3.13Windows x86

cachebox-6.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (692.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cachebox-6.2.2-cp313-cp313-musllinux_1_2_i686.whl (714.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cachebox-6.2.2-cp313-cp313-musllinux_1_2_armv7l.whl (748.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

cachebox-6.2.2-cp313-cp313-musllinux_1_2_aarch64.whl (629.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cachebox-6.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (478.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cachebox-6.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (509.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cachebox-6.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (500.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cachebox-6.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (472.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cachebox-6.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (500.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

cachebox-6.2.2-cp313-cp313-macosx_11_0_arm64.whl (414.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cachebox-6.2.2-cp313-cp313-macosx_10_12_x86_64.whl (451.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cachebox-6.2.2-cp312-cp312-win_amd64.whl (343.8 kB view details)

Uploaded CPython 3.12Windows x86-64

cachebox-6.2.2-cp312-cp312-win32.whl (333.4 kB view details)

Uploaded CPython 3.12Windows x86

cachebox-6.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (690.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cachebox-6.2.2-cp312-cp312-musllinux_1_2_i686.whl (715.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cachebox-6.2.2-cp312-cp312-musllinux_1_2_armv7l.whl (749.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

cachebox-6.2.2-cp312-cp312-musllinux_1_2_aarch64.whl (628.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cachebox-6.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (476.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cachebox-6.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (508.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cachebox-6.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (500.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cachebox-6.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (473.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (451.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cachebox-6.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (501.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

cachebox-6.2.2-cp312-cp312-macosx_11_0_arm64.whl (414.0 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cachebox-6.2.2-cp312-cp312-macosx_10_12_x86_64.whl (450.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cachebox-6.2.2-cp311-cp311-win_amd64.whl (337.0 kB view details)

Uploaded CPython 3.11Windows x86-64

cachebox-6.2.2-cp311-cp311-win32.whl (345.6 kB view details)

Uploaded CPython 3.11Windows x86

cachebox-6.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (684.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cachebox-6.2.2-cp311-cp311-musllinux_1_2_i686.whl (730.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cachebox-6.2.2-cp311-cp311-musllinux_1_2_armv7l.whl (768.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

cachebox-6.2.2-cp311-cp311-musllinux_1_2_aarch64.whl (629.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cachebox-6.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (471.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cachebox-6.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (503.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cachebox-6.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (500.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cachebox-6.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (491.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cachebox-6.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (518.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

cachebox-6.2.2-cp311-cp311-macosx_11_0_arm64.whl (422.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cachebox-6.2.2-cp311-cp311-macosx_10_12_x86_64.whl (447.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cachebox-6.2.2-cp310-cp310-win_amd64.whl (337.2 kB view details)

Uploaded CPython 3.10Windows x86-64

cachebox-6.2.2-cp310-cp310-win32.whl (345.7 kB view details)

Uploaded CPython 3.10Windows x86

cachebox-6.2.2-cp310-cp310-musllinux_1_2_x86_64.whl (684.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cachebox-6.2.2-cp310-cp310-musllinux_1_2_i686.whl (731.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cachebox-6.2.2-cp310-cp310-musllinux_1_2_armv7l.whl (769.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

cachebox-6.2.2-cp310-cp310-musllinux_1_2_aarch64.whl (629.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cachebox-6.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (471.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cachebox-6.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (503.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cachebox-6.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (500.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cachebox-6.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (492.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cachebox-6.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (518.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

cachebox-6.2.2-cp310-cp310-macosx_11_0_arm64.whl (423.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cachebox-6.2.2-cp310-cp310-macosx_10_12_x86_64.whl (447.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file cachebox-6.2.2.tar.gz.

File metadata

  • Download URL: cachebox-6.2.2.tar.gz
  • Upload date:
  • Size: 155.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cachebox-6.2.2.tar.gz
Algorithm Hash digest
SHA256 b0f111f1ee6d0a1ddf5ed22d9c127546eaa2be54e5109ce42b3e9b6a11419d49
MD5 211cebe30a2157387f448e5a35548797
BLAKE2b-256 13c85b0e67ecd655d80adb6ea5eb319468812ce9236132bddc13d9128ce20e5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2.tar.gz:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 aab1ba660e689d227f3180c70fb54248a45b8b36a482388779efe7cf8f866ab9
MD5 2684abc1962f9d2249153ec92f07727a
BLAKE2b-256 3904c90819ecda465a60aa0c414e1fa55e4d673ff7cdb58c1862464bf4c64297

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-pp311-pypy311_pp73-win_amd64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a8e496c6db7ea637cd2749a65c72e728b8f752aada3ea5445a05121d7b3938d
MD5 2c62fb0f9e53d7df417998b0b018355d
BLAKE2b-256 a66736db528e40f114095610c455875c2d4f9f7adaa9390e6688da165a15cc7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d5763db87445bf81af6e3b7549fc73523bbab4c182ad0fd0c65f458b601f10e6
MD5 853b955a1b4e006bdada0d86d23c6755
BLAKE2b-256 7dbf088212e08ffce2cbc12a8803a367bcff8d208479d65145799a2175f32179

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1226648c2ec118d9eacb6da4a395fbcde7736e222ab3093ffada4e7b275a3447
MD5 2c3d6a1f7201f9db05e945d7698196eb
BLAKE2b-256 fc827beb557e7aae27f94d91626cac61f79e216aaf61fd2f6b850d0bc68032c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 74793e70e8f206e36b7aba5fb2911d3485d8358f40eac8b2ba5a3a2e7a270ccd
MD5 16f4c42972d61ec09dd97ab0056e7e51
BLAKE2b-256 76ef7449ef08fd8310571a1d424c47a054c04475a634aa8a341510946c47bd85

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a87980510f66a61f5fa772f42590f65f74ae1fd7a5ce772cdffe23ce714b7fa2
MD5 16e34f8248c97f28e2f6171247c0178c
BLAKE2b-256 036c98b81c20dfc6377753663974a382a1c4d123e71e2ed382cb6d002a90f71d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ab8fdce6c4854dc5fa675c5424d4367f3f2ddc11f94488274afb0d9857742fa
MD5 7e31fe17e42ff44ce1bf7b991bf1de63
BLAKE2b-256 d5e8ab27764e985ab04e298e64b04bba18c885609935866ddde879954daa93a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a5d95436a220c7a12e001959cfad92e6cf69f74b14e084a876b4c11b746df035
MD5 c7149e67314cefca54d6e2fbc54a47d8
BLAKE2b-256 43db3401ed540b2c5af23a4399da722e7112c0bd4588c32f220d97e939b8174f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a966dba19b185ba1048b2609d2f7814b3919b788e6ffe0f975e92f48341676b
MD5 ec543dcf89cad34ea4159e9cc005f430
BLAKE2b-256 89cabac69ac2eaf8cfaf5fba1a8ae6f5bbe1a0ee8933431bbb99b7ab84dac6f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 067ba3ab2303a4f68d9ab15442b156b1c5acdc0ff975370d690bd550af355c35
MD5 aff494822d7209fbf9506fb5ebc51b82
BLAKE2b-256 833d70181d5b16790e102b8a732567644c740ec07a5e82669c3e69114771ba27

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 81795612178b3dd3b9aa0746477300fbddfa7c12878f9fd678cec85500257c49
MD5 59cc2e4918bf770cc67430acabd16c73
BLAKE2b-256 d7bbb0834250100b9f306b4015050748573c325ef34c1427b4d20891168baf83

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a1021e9785ef6ae567ba301da61fff7cb23d7410d80d448a6236c6fa1cf344f6
MD5 6cc32078e9966325554ee68cd442807d
BLAKE2b-256 2ed11c194dd5fb3774da9c70abaa7eec33e7f67b0673a45e2d844459192fb486

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cbc5bdf885fbf1673704020b574da16f9620e56e0ecdfd9fdb8476db9cb44a0a
MD5 c949228e4cd5cdb8bd189687ea8ced4d
BLAKE2b-256 a76c3bf1efb4a8ff59adc2f5fa5e515a74950f8a3c3c29cc683b198b7674018e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: cachebox-6.2.2-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 333.8 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cachebox-6.2.2-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 56485f2ce66616ac17f4f132671860f417fc70bbb54ccef3904a48a630de47ba
MD5 954bdeb13eaf6bffa318d908e0800aa6
BLAKE2b-256 270cddfebe9ff7c3c3f242b7c6e852cc1a33b2a57ed7168b135ef09278ae33e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315t-win_amd64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315t-win32.whl.

File metadata

  • Download URL: cachebox-6.2.2-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 320.9 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cachebox-6.2.2-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 b4921fcb35b5c63052a633ed66ba08c1a8eff4774e645895b09de7a1413ee5bf
MD5 eb271f0b2e9a8f6c70483971b68abc2e
BLAKE2b-256 1235fe22b26750f39b66ceb1a6fc8959e956eb3008fc05b77935509fadf1c074

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315t-win32.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a4596289420153ea30198a6f48a3c85dd61691f4c0134420b2aba516f13afb1
MD5 70dd669d7a585303dac1e1095df27f1f
BLAKE2b-256 367252ed14f06cd3eb69353bc2decd3bad653a6bed8d49d0980d86aecd3d6a24

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 073a51d592f43cfac8c9ed4766a8094ef30c6295884a3dd5a9f66a35903d0afd
MD5 2dfb6faceb89f82bdd3a94dff5e09b4d
BLAKE2b-256 e5ff1f60ca3db4299fb99a455fbb0dc4f144c4e2c7360bf1f01e286b8570bb10

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315t-musllinux_1_2_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2e03e9af9b123d2cab902d931d7c3c2c24b4e1bc1b62ac79ef52b836d124527f
MD5 020052dab9ed3a056c4bb63ac128d712
BLAKE2b-256 24b51e82349d7a7ec073a80dbd3e2301099732ace30d7ab64ec2019768cbf791

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315t-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82fb077a51c9d689816088f6bc135432fa536f7a52082be91386dcc2b97dff9f
MD5 751b6bc0145ec0256fbddfac493a02bd
BLAKE2b-256 77a5c44b3cac0cd1a69c95668856221287208f2d073eab3dafb0da87ec25b6e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 96b900968c8228c1fe733747ccaf2aadf78f43448a658f8b7ed3bc99fd3fc1cd
MD5 860634278ff2b80caf4ecb5fc5a4d492
BLAKE2b-256 8e067604bc2e17d8c008efdc0d32470965dbc018d36f78d55ffbae63e2e31987

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ed6227ae4b8c2facbaa8d3e2dd507eb4883b9ad6c3d03f7d958a73b725ece27
MD5 582604699bde3ec664fd33de2c3ddd37
BLAKE2b-256 b576b1ee8029598f06a3541dd227181a9013c0120ece4d51462717a1f1664237

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 419a07a1e4db50b72bf423473bcd0580c30fbc048b8319131dfe43ecb78e8693
MD5 0eddb77185f54c680ff679ea4dcb8b24
BLAKE2b-256 2a88f9812cf1fbc843e20725871341247d522a7794caa9e66f4ff6fcf6342e38

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d6dd52c1cddc62f4d1681d7c020040b075049359ac7404850c69a9d79367d3a6
MD5 8ea3af96276896cbfa344453273fdf49
BLAKE2b-256 7acd07666eff1a184da9db1dc8e47ee2c535344e635165268a2b4674960bb471

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed01e69119195da84ad093640368823ee4eb1966cd53e15198094a6200202cc1
MD5 e00635d6425eefcf9377b8e2e47bf006
BLAKE2b-256 9f672707f94627a190ae702c53119bf90f98796214773fd3d770e18b9b3bf1d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5bcd99b41a0d6e21db647092bf235924eeb9f758cafbb3b536eec7f5016fcd8c
MD5 53a1abf36859f90901862f58dc5c6450
BLAKE2b-256 d7b1b15b3c5c192b453f4256ed61a452c706263cdd9b6425ebe1a44c4225c91f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00d03b7f05aa8edd316836c57cfc5d9903314f16f97492b1d324e01705efb1a8
MD5 4bb47754bb023da2de743331290142cd
BLAKE2b-256 bbf20a48d70b6b5761e8ebd7770db394db6dd4d1c574462ea02759e27554fba6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 51369710aa434104d48bbd6daf1663800e9e1d0089e8607e44038a473c382275
MD5 0ebd376f854d8716b59a2777c3c6f6dd
BLAKE2b-256 f2e7d192616921cf13d57c0e82e77a022ca7e8326938acb40af73322e911c083

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315t-macosx_10_12_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: cachebox-6.2.2-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 343.2 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cachebox-6.2.2-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 18e1665ed9c2b778e5e87281f776da6087519b8924875b316b70c5a6a2d5a808
MD5 63878e527a2310978e083e34825bf060
BLAKE2b-256 d76b8e554c2c13e19fe45122c1492b95a14bdbcddca9adcf50a1b3c919b3cab1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315-win_amd64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315-win32.whl.

File metadata

  • Download URL: cachebox-6.2.2-cp315-cp315-win32.whl
  • Upload date:
  • Size: 335.2 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cachebox-6.2.2-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 c8a1cafcf9922c08165cd644fd75d1d2bdf1e9297b312d8842ec85167ee359b7
MD5 0b462952aed8aae27c257669cbeafe61
BLAKE2b-256 a7868ba0b721d915c2777a1e15c2c6f1ca84fe0353d6d34f155092e848b3c530

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315-win32.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ce22d2bbdd621903c4ee30138dbd8d998efb8a81faf4438822783c997a13862
MD5 6631e0feaaea87c5bea3dbeb890ee863
BLAKE2b-256 dc61cc0d93bb394d80fb1b5214e1a91d6722a19dcab9a70a6ed381a438134b70

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 415fc5e58bf0ccd6cecd4e69607055f57bc129745dd80c9a336d0f06c2fef8a3
MD5 c9562d5e317532582dee92be22389852
BLAKE2b-256 62384eba68e9d1679afabeddf9fbc4e7638e3dd02c95f4158944589b5040f744

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315-musllinux_1_2_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 62f39c5426e2a9f9f9ff9b77a62efd275e2ee401f5fe35222c7da1d7047d9511
MD5 23023cf79d368cb02cb55d3e2a782181
BLAKE2b-256 c96a58305b8f5d8dc7e87fdc93542d094aa048128beed62fde5c15590c9da444

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c603df8fc58efc0f2dbbc7395bd9b474152b1eda1f95745a8dc4de36a804ee6
MD5 00704c1081859ad5acb5d956d280b64f
BLAKE2b-256 e34d67807f38f1053b979f4c140dd1ee5ed30fbadb19255943338c2853808ad7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c462cb2a86cadcd5138089a9dfa4b6cc661dfee7c54288883cda0ebb3872f76f
MD5 132bbe26306bfc2a3b45b26a53dfd47b
BLAKE2b-256 d4d1c4106b6e93dc0d769cf07fd850552b644c05b3ddfef0853a811e9a28f4aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9687c9a01aa06f3fd8136a03ae6bf2703218827718bddf77335436f1e9367a14
MD5 3b13bb5c042b068107d2965ec3d3e068
BLAKE2b-256 edb69d798d84166a34757da7577177b00ebba7ce85b56390c068788184bb4e9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 df65cdecb9b2136a01e5a796dee9673444e3ddc9d5f8666450c666e4e3de42b7
MD5 8b6dc798dfe318e22d92f17dddf04727
BLAKE2b-256 95619478784774471da644645d2cecc4cd1ada36ef30eb6d78279bf99686d906

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 feceba2c9262e24ff0e7c2b7469cf3fd299518752aa9ec53fd9435b986882da5
MD5 2574a0f9ca0ee55ef52e306663e76622
BLAKE2b-256 d4025f40dd315a2044257c08a47be74349c8813ccfe3289885f0b23b7a78201b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dcb00d5380d608748865a760b6b3f9d0729c0c38c76b7bb858da400e6bdd26e2
MD5 de084554212583c7c09c53717fc9ee76
BLAKE2b-256 67c5db013da6ce3ab75c2f41a7c2aa27b28fbf92ca80af9478cb0dd500438713

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 479305d9c22a9040f140ad57784461cb7a084b796c7d3a32db6ebd3747859569
MD5 7aa7a65a754493e367cce009b97f891b
BLAKE2b-256 241da7cbebddb1c4cbdb163e8c3f569a386e20d46532936a905633fe68bfef68

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a0002e7000a01dce4040e27117ffe4761efb0786ffd3d5f0ef4075e621f93d9
MD5 48cce0594461df224b519f926e317cf8
BLAKE2b-256 02f019dfc0836723295afc2e66ca6f8ab32255acdbd1aa26030d9cd24bf285c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp315-cp315-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c09e9cf20a9f2a8fd3c3937ccaf56c7583d965c15d76d3e10fda2804f183a8f
MD5 ced18a908b6ecab830438e1dab963a08
BLAKE2b-256 20108d682f19ab9c86e143f2e56d37c813015f3c6e5140db82ca3bb86745f5ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp315-cp315-macosx_10_12_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: cachebox-6.2.2-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 333.8 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cachebox-6.2.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 51747dfbe8b51527ec80eacf5a755b1106f9b55b6fd71682e2fe2f5ecc9cae9a
MD5 de832a29416ff1851832f81a8416d079
BLAKE2b-256 e78f3719973ab86dd8d9d9529a3b53de5bf7e8ea5e4112aa7cb95e2ca66d0a9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314t-win_amd64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: cachebox-6.2.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 320.8 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cachebox-6.2.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 fd77bcf98a40c02a9127707552d72144d48a278cb2517d978703882ad2eea1e8
MD5 916907bc5e1286c390c10aebda7fbc1a
BLAKE2b-256 c7efe76cd1444e93ceb3fa2c55af78cb66520e96baabb0093271ac678361f477

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314t-win32.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ec760b5580fd7bd44ed84f0571a2f85183c8071141c605ff211a7adef6fe308
MD5 a75ba4a0b8251a03996dd8da3d0c01c0
BLAKE2b-256 465b7e58fcad7594557e98b91086d52c7bc7ab85eebb22f4e9817c1fad97569d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cbf7a40b0f286fa08225f5adfc6f084a18bb6ddcc82a1d924d71b80cc8840340
MD5 42b9fd9cce61e316c911e4b4572d042a
BLAKE2b-256 d9b7f2cd5e5b6f7a1cb8a015f6d34e3ff30de844595340caaf11aeb391d542a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a776d9c8c850c3e24ea71abf02ae68a81293e5b071698122ac07975d90916fb2
MD5 6df4658bc91acc59ee3c019623b3cb3b
BLAKE2b-256 d7639b0128c4ba79d04ae68c3991607d6adff195af073fdc58622bb9cc828f91

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 090d80521b50ed45e7c63c89be69ad7110cf87f8b09fb564626785721a113191
MD5 e86bd213de6292e5afb27509dd29023d
BLAKE2b-256 ed46ad7468b4bdd460a188c46c2f4281b865805abb5e4ed923148edd571b6c39

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 686c2efa22b47e942f2aafc2938901132a02ab7efa9091aa5bc258948c028e24
MD5 f3ccad6867fe4ce8a7bdf59501963022
BLAKE2b-256 714b1d8b5eaa5c50d81b365515175f0d21498356f7dfc15df9f5136b6f217d89

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4677ee92fbdd545972fb3da9ddb50b084d813ab15a4e50cca08a2abcc5d0116e
MD5 9a4a74eeea3beb0c04a4ccbb7497179e
BLAKE2b-256 ea04b1c62aed6076891235169bfb2ffd034942c742e4ec36aa148911bf676023

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 03dbdeebd956f6541ed5c1c00b8863b52fe252146010d38e1baaa365a9d7ad79
MD5 cbabd255157fdf435ef3b9511f3f8e78
BLAKE2b-256 789bb9e8a543a2dae725cac89854fffbfeba9f7ba3331c06f758852111d164e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40fc29c9e983ad7b54de140570bc4ffd5ac8d6ba88494f9d112ba76098c89e22
MD5 4ac714efb71410e9e5833c65723cb75e
BLAKE2b-256 1bb1efe0347ea43f98561eba65797ed6c66b742393b713120560c075587080ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 26d053e427a132f16edaedfdab9b40379327303ad4aed81ca60381214a3292c6
MD5 6521e6a99f4245a9f77df3b9af2499d0
BLAKE2b-256 6d89b7915d61a2f639a03570f1cf2b09dcc81c81c0f68e8c19cb99c6aee173b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 729118aeb912ceeba84de8e29a2501bfbdcb9772d2db5183effb884e4f1a9db8
MD5 ee0bfd3569762a3c93b9edb3b4e56165
BLAKE2b-256 6ca1fa45ff9c2fd9076c0d9c13abd00ebc6fbdeb84e9781d08d3296ce05ed38a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c91fb4259c48fc3a9563c4eb172d0fca631c268c594f77f022a4d24bfee7b79
MD5 bf9f26a417a6b21049c396649259f641
BLAKE2b-256 182f3629381dc44a73509195bd74b477c522316ea4251507ba37a2a3779775a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 61f9147710f58afe043f87f7760fa2641808791ce499319eff945df7c4e96470
MD5 01c07827bb0b5a5f6b1e5faf072a4936
BLAKE2b-256 4019a8dff63c2cdcda49cc8acc65bfb3936d6622bb163d33c60ff09efb8e5d63

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: cachebox-6.2.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 343.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cachebox-6.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 00eeed3d5ab174ac4cc85b2f91447e1140c50186204fc1b29dac2a2c7ae0a816
MD5 93a4f3f0ec04b5684f16762e966abfe1
BLAKE2b-256 68b8077cdecde42babf92689bb8cdf42a9766e857ec1651ea334e532dc76d37c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314-win_amd64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: cachebox-6.2.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 335.0 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cachebox-6.2.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 08c3982912c5a2c3c537bd3282714e9129d444a729af0aa893185ed84309422f
MD5 aa6352c48acf04e4f63faed181fbb67c
BLAKE2b-256 788155b53ad1a8319e3c18730cd8f41cbd41e2fca6a3043239beaef8d706dc97

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314-win32.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 70aa2da8c266955405b7291092a35835fa646854a4dce5c0c21e54246158fea7
MD5 3d0f5efed8e4393aa1b72a7ecb761908
BLAKE2b-256 3dda63ab4f13ca597b15da7ac9dc1f654d1e275cdb33e2f34dd5a0d00ee30acc

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5fdcbbb92b965971919aeb50b503d4e87a3f16cd8df923ddb2cf5bbafbb2148d
MD5 8eec2daed1c0dcf167e0c0fd558f1679
BLAKE2b-256 7d8650aa87c595e1c4291753d5fce2ed38f8e8bba187d064c2d7e85c88e7f1f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e9200f73b05036054132e3d294dde5606d9414cb411a8c622c44df916922eb24
MD5 1faf7c08af4d9b0a30632807c06da864
BLAKE2b-256 12362e70be738650fbe16c43c94896181b0ac536f6db43239c7bc22af2066acf

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b06da2c79bfa18c4a8b1b6462cffbc10256f3b623316d954976969b19b35abc
MD5 6a92a33d5ff245bddb4a42af9c8647b2
BLAKE2b-256 24bdf0f14980104795b4b527eb2f47820b021a68408f05dceefdf06df4c9eaa3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebc80e201c9058aa5dd7aec40f21ff09e3008cf8fe980a2d4b3283763af5f345
MD5 eedbacd22e36c698dbd372ef1574a695
BLAKE2b-256 c0ba6655068ab2c310ba3515d626fa9429cd1926466cdc28efbf708fa9de2a57

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bb17e3fa921570ee944075b772a0ae426f26de3cf2a2ba2fa0f8a51bdf3382cc
MD5 e1f0b28cce033557959fbe7880bb3a22
BLAKE2b-256 6a08fd892d1254569f30d63eec0649a99c5a3f9cb513f0de80dd7b0f6874bd89

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a4af4b82d0825e2f2411d71073c07d5db8469f31d71ed9ee15eb003efc1553e
MD5 9e3f9c044f7f3d9b498cb304b6a5331e
BLAKE2b-256 a093e124833387b81c673beedf964e8c876fd24dcb47b7a93a9d95ceecbf89c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 500b1ef86a0d0991facbddf2b71583b668ef22ea3cb6dff74ace0ce15d53c010
MD5 d4b7d75998e0e92ed5148de5de4e39d3
BLAKE2b-256 823e5cd29f6b8dab9b23910b47f90bb95da5bfeacaac59eb421f8f695a4696bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a1799d5706185e86239171bbe4e1f3ef566aa4cf26f29ae7ab352c3ce0fc90cf
MD5 060df79c0b1f28f0d05eac84a224829c
BLAKE2b-256 0e45e57a276407a51dd2360082ea6d35036b1f35efd6d0398f3891c44ba7a105

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f07415848024152a1846dc8b30e7aa7f548eb5e035ed58a3dd558cc698f52455
MD5 b90b47a3c669ab29aeab9f73f7f9ca8c
BLAKE2b-256 b0e9356111c2e49aee9c3804eea782df3c8bc6dd5d56ff73d5f098d818d358bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4245bef316a0b6af3452f227cff82dab1cf9b8332c8edf8b466130787122365
MD5 5ad63c619af48170cbcb78939757aff7
BLAKE2b-256 f2efd4a398be5e407a112946420d354854ab8eae0679da4df0e9d672b56ba934

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1d7ed58d89a978df63839bdf0369e06a2661e93cd170692370f5529d0f4c55da
MD5 e158ac141b9cc14f3de52a39bdaba9ba
BLAKE2b-256 beb0529e6cd1c9990ebe33cd5fe3ec0b3e589a8cab9e2bfeb03815866fb85993

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cachebox-6.2.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 345.1 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cachebox-6.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 72af83d2f4e8e13873b04a7b9919e2b6ab22b79723d8ffa964411945d6aef2f3
MD5 ee933b9e6ec775112ebe3fd314b08b7d
BLAKE2b-256 8b6ebc7276f65887b00a14ddfd11ebe0115ef1bc81ef0119c186e9f790b18df2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp313-cp313-win_amd64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: cachebox-6.2.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 332.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cachebox-6.2.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4cc4766a145289fd38cb3f8427c8df3c156a8e5995095e1fe8e7630b56208ea2
MD5 120ea76c8726005d0307b69b5264a741
BLAKE2b-256 af64918b74afbac7b2aa1e3f295b97f687ea9c096c238733fa515770686a7482

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp313-cp313-win32.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e6663316074ba21e43aa8509d54d0edaa3064f39df2538d33175f7e62612d3a
MD5 57db0d07fad78ba85bee91ce1bad3b50
BLAKE2b-256 6008c7a05fcf6bfa49567f1a58bd0e9639a88880eda98edf4b3478273b9f8376

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f065c1c7968ae08061954bb4b621f34dc9f26fc96f0bfa1cf1aa7fedb90653f1
MD5 c839fe6e5fec28f1bd00387cf329db0a
BLAKE2b-256 29e04822554c99bf1ead9eb9d5e5232d287f43e1a5dc9d83eb488431fb01b612

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 53334c25226af304c218421a57ded8c31406cdf3c8bb4e3bc5a69cb21ee30cdc
MD5 ff9782369578805e35219cfc7a3c8152
BLAKE2b-256 98b9880fe44fa10daeca498a04b3308e9420b4ba66b9f0a760b1b8655a87420b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 00daee098098cb21e2c0ab5042e31e104da61af5e9527dbd76ff87ead276f55a
MD5 d17f2363724556a953eba1c90f73b604
BLAKE2b-256 87304cb774f3030dad8014e2a7049783198302283a5f4d4863ed1707902881ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a2720e80d12ab447076dfd5b5bf4312556324e4ebced737acf2a5d7e737baca
MD5 722ea91712ce7fc559f8e72cf84845ee
BLAKE2b-256 c0811976fc22eec208e95a2347dcadad8b9c51b4d63b558a0994d013d172b1ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f5864eaf7a608bfe547b92a93b208717a1f19a1eb9984c89be45ab99e1f7f654
MD5 25c5cd6afa50d2066e41e92482493c93
BLAKE2b-256 61eddb7c469040ca6c4b314a05f62840a9af545fdef865da13dbc7efcac3b0e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5101169f0266ebdcecab8b569e97ec2f8873dc5fae9da0b6de3b56414ed18231
MD5 e1f8ea6757f5e1499496a492eac0b163
BLAKE2b-256 32cddbba050d321d1eeddbdbf9f50f483dbebe844d6ee63c4b0f50e60a588414

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 99a86d5d32c3718005f7d199d5708ec17a6c20fe03b68bbc3dea5b5e3ca1ae3d
MD5 b91b00ab40218d1a7539dacd2f8c8a2e
BLAKE2b-256 a67679a82ac304f3db39adfdd66645fba2a6e556e0652a61d3f9b15849315503

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7dd6c867c55276ea974a1b90fd4a382669b711de87001d868a2498b1d70aadd
MD5 87a8f0c1437d64622c2d5023ab9edf4a
BLAKE2b-256 0c46d13049744b9185b068759c9a1d5a21fae0cbfbd9ae975e0e36272a0a20cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 17781a76b72fa5e8702b7c092143ff6ee7fb9539c610fb162081e7d114499ebf
MD5 3844f11a9f148150fa6aa6a5082cec81
BLAKE2b-256 1af6b526056ba18d81edab7bd4018b47fd08bf50b15731f3f26c32f1b3b382e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0fa11b98930ef39b57faa1e90fa49a6426a2dd8884d276683f7dd01e538e409
MD5 868d2e2bdc1fbfa59b0f0c6363c1b5c5
BLAKE2b-256 fcff788d914ec44f9352dc7f0db2deaf98e7e97ac33db82e54cf1e76f75e3d8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 657e526f21b0580821e9bee23455d7e5766ec073d36ff292cbf79ede730fcaf9
MD5 1f0ff224d2f7fc7bcff4e8ae87103000
BLAKE2b-256 04c7eb941707a075b84a9dfe90d746dd77dbd5494a58e7799e6c6a4d9eab7350

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cachebox-6.2.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 343.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cachebox-6.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6e7b4d31d53619058356c1fb71e1eaf3f129410bb95bc8ba361292fbc5f2d731
MD5 6557c3eb8d69b33a471daa888bc71d36
BLAKE2b-256 93d62363d7e66cb696b45bdcd66f638c329946031551dbf3db04811d9421c71c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp312-cp312-win_amd64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: cachebox-6.2.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 333.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cachebox-6.2.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0fa5000399e74564e4491dd04ada0afd8ceb92e767a2bdfc519a530e5d15fda8
MD5 ef0ca87f2c66e0187521c50555dc3803
BLAKE2b-256 12dff786b72a8ecd040de905a953e12b09d1edaf7ae27f373f44a5ca883490b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp312-cp312-win32.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04160d5e1ed4882c2f47708fb290feec8f89731157c5bf90a68ccc464fa4645d
MD5 9348e57c9fd822bd5d0e954475fe788e
BLAKE2b-256 5bbe4f002f11b879e8f9de502674fc77240330649b12acb5b97f44d6bdba489b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c37f33735b2ea669617897699e573062b44e567b637c66d613e3d5b5d8393ac8
MD5 fdd5ba78ca7607a80d2153d1df0afe8c
BLAKE2b-256 0849db3a6e63e36925c034095b2420cafc10b47c3f7f953bed2d13b7da89b3ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b01e22ed021e3a89236ed003176f19d241ac5ba75b0086860c4fea9d34e8a002
MD5 a659d72792458aef7c28d254325ddda8
BLAKE2b-256 8d47c92c2fffa5da25365d846ef4d8c0daaf31e11e78ce99be2f65baa879da96

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 65d16883aff5d5cd3b4c151efd7d7eeba579d941f225c212336946833adf9efe
MD5 eaac8b2558b686f7f97fcf7e6f021993
BLAKE2b-256 a2a1ae8b7023c721d6924b2d5ef242fa252dc79d1f52ef626ba09ec90478c7fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 569253b36682b421ab0fdf382998ea57dd74b1bcbdc4b4f42de247c6ffdb2fb2
MD5 c426d4a9eca45c539671f43ec7d2c01b
BLAKE2b-256 351a00d5ffa1ca1f74667a6116f41157c09429903a86b49cc9eed477172366c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98daae6f8b9d2797c26b6803aaadf9fe9a6765032b9773e3c806d63126e0d63b
MD5 9a1435e8c77c4bdac72a1949c87a3db6
BLAKE2b-256 9d0b1094980bcaa7726fe5c0aa7dd2931fe6dcf0c4aee7788cf1e2cf244031f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b13aa4cea5a036322dff21048d7a96ebd5321f674f6f55c67c5e5427ed53af23
MD5 8ace9459bd3bab1793f75fb297fa59a4
BLAKE2b-256 f4c5f43d16823c97d848a0614d920290e68dca8a135d0e8bfa61c6907d635944

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 624e7cfbb505fda35665106c8ae1f428284cfdeec66f347c2b438c1c8507f196
MD5 d77ff62a2364fe0ac7952c86c9242782
BLAKE2b-256 6fd008090821c325615d3589b70b0e1bb02d81a1b37bc5d8e7754c98600c1dcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 038367291f9a8d7d41e8d51090913f5a630bd1e3a467dce1c37f90b1906f3891
MD5 648442e2301467e9863d30977e13426b
BLAKE2b-256 d955c8b4426fdf0b8cef77712c95f683379856d3a55c69b988b3b2d3464bcfa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2e6b2d9e586ed13fad837c5485245a89ec518aaba6a1903358736f26262c0298
MD5 c845f35236144fb5310983fd4c19e380
BLAKE2b-256 f3b5f543a1f0f1838e46b906b08a325cfd7b9af18a3b47334c3dadefb77f6775

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25da99d4be7401884e264987a2a5e03a46d14a851dfa5fced0f3ad4a98ceac10
MD5 7946f7b94f277f952d2d98d534f00a9a
BLAKE2b-256 99f55d43c4fca7219c67648d38accecaf08234ac02df8a958c68330c9099ff72

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 19e811fd61a3eef4a4fd8304037a8276fa8854d5227c7d64bd3527f93f773256
MD5 cd5f515f1f93909f61d9df6ac5911d36
BLAKE2b-256 c365952f790ed3709ba5208a55ec7dffff4835458952f6519f0bc8c556a5778a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cachebox-6.2.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 337.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cachebox-6.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8e394b70a496dfdf0c94952b5c3d028231700f119c4e58faf470b0564d8353d3
MD5 ef948139c456c9b25aad325a1cfe6e7e
BLAKE2b-256 aaf19be8721eaef4f62be99052daf530eb3eae8dc3fc58ff7a317bf22e686639

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp311-cp311-win_amd64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: cachebox-6.2.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 345.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cachebox-6.2.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 9d04000e343268bb400e534e919fbc053bbec6d906240c1557dc0e6b21360432
MD5 a0ca49e1387f6a00f178d51cbd8a56ff
BLAKE2b-256 09d3867f74823b413fba24328642252d6e007600274ac0d389abc327026dbaa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp311-cp311-win32.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 368917ce8334c8817b3db4098d9689c8c403fc09d736ebe7a021e85ea7cded53
MD5 c1196ef3f7f1fbb7b2d3f4e353f3b8a4
BLAKE2b-256 a52153bb0711262dbb404a7467ad804b6a58da10d1b5930bf058069e5f205c20

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 71236eaefee8edac3a0e4d002c1958fcdc3698487f03b0452d66a52127108894
MD5 311cc0c5cdf64c26c0a30e8ed5e7c46d
BLAKE2b-256 7f0d11a92979b3e99511de694b6c0ef1f0bd94f9b46786f73fac888f7a303c38

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 de47086fc72f52b0daaf67fb6de9bddaf7b1d43a2fe1a5b2ff00af16f886acc1
MD5 77c943beb8b588e34d88226dec2bfa68
BLAKE2b-256 97bbc4aaddf2ab6d58cb22e4a9f8adf68f146b228abbf729332f1371f5019774

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8840f15203735baeb3abccb0e1df0ba9e0cc619be3db75b157d54aa018cc8a12
MD5 98e07ee88cc1d7e71aaebd8a2e7574a5
BLAKE2b-256 85d023cc6970a8343952cc8a7e4ad3d60b821f40261b1a92a74a9ea86a5a7088

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6b05f7f348be3c20f22a131471845e7fc2519511fb741c09bb795e3df37fa5d
MD5 99fd6461b2f27a4d2178219982d3e348
BLAKE2b-256 b618f92b4c51dbf98578bf0985a944e5fc34636667b8bcfe71cff0e160e49312

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 382c5c221426150273250926bf03735ef85ed273e8d264bfdec44a280f345904
MD5 7e91bcd01d62a534534aeb11a206e23e
BLAKE2b-256 d3c21a2f8a3488d1851f6fdec683b60e0d8dcf3a486879e8524bc67a782da9db

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be16c581de56dc07e9354a66bb75888dfa4e97fc519120893d420f44c24ba6be
MD5 6db30b3366030fc5d609131f906db420
BLAKE2b-256 f01b6fee94c85afd63e674ed43db719a6e89e28dfc351eb831f72701c8665143

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f2929f386282ebb284ad4a7b988cf643f2f2c38024343b6b5212532a91a8d21
MD5 0b7d3e3e009251524646c16c036c004f
BLAKE2b-256 1dd6a6955aa8a7a569240fba2bef68baa3633e2c455b678d2cf17cbfc607977a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 666f8b33805baec668eb84da1998d0de6b18d00e62fddfc6cbf6ba56e77bb9a9
MD5 f43a9281de4dc463a09780f8174614dd
BLAKE2b-256 cfe11ae43be696d0d0dc59df5c750624a8cbd90b80f782f94ff7df5409495d93

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2cff5c8cf8b777bbcfa4f22b47a177cefc2ced7223c55af913f30dd5930e5241
MD5 965a7243329e0754b29805cd24d9b4e7
BLAKE2b-256 dc0fb462a716c157f6db1535064cf6a0d7cc36666480f7f2d821564f7114acba

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c698c2c54b60bfb56a51e57897476e5f85d699256d5370803d1b6aabb0ab87f
MD5 f5fd759d017a2b6ec1fcb2aee5b6fc6d
BLAKE2b-256 1c0e69f8ff03ae3e837c8a76ea92ddf85b7bc318537025276d6f1559de5bd518

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9fab5453a7b973d6c29a707c2266f14544987957ff7105222d13ef4ecefc9dae
MD5 d570645f147acffe318998b6a12ea581
BLAKE2b-256 577361d03f7bff1ee1f8e2535185df207f98d6d49c4ecdb95c36cb07cd91be0a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cachebox-6.2.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 337.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cachebox-6.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8345f7df25c7ec646aa068e34a5435388dd8f7b6518a76cb2f29284d977ad126
MD5 027a6fe474340181e01cf241dbd72eab
BLAKE2b-256 168f0fc186163a171d6c324c226aa7e0b3c825409dc48707446b84a3990c286a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp310-cp310-win_amd64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: cachebox-6.2.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 345.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cachebox-6.2.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9174173a9b00dd7170a3fea9ef0508d96933276a02e8cd918b2fe1e3b4ff13a7
MD5 e3082c89f8718ff1c5bfc8ffb548f0c2
BLAKE2b-256 0820d48e08cac6a1afc7e723c7728acc8a42acfa4127d6d658e580a8b1ca060b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp310-cp310-win32.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e440ef3ca16e3d875667b297a8e6676119131a2bf12883b959e1ebba1a802dc
MD5 91f8e2c5daa14232ab989695549e0541
BLAKE2b-256 6ac70a805c0745c43c22c7546eb8bcd8547b5ffff99f78794227fa25d8418d7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f945666f4317437cd3b791fbdfadef9216a086edb023eb60f0ba55a30d1d1193
MD5 12852353775e2ca46348a7f0ad1895c2
BLAKE2b-256 a0e01bf9fc48b5e885d492d72f6f1d98884772ec7c58f0a5adfde2f0658a318a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 85a45d02de86ba91496d717f68646fcba7a35e81ad767e3065276a3be513794b
MD5 42fd487b28edda6aa8544fe2b5d5b7d2
BLAKE2b-256 b67f7a56ff897c8f42a26aa145b159fe3dfd2c77e9900021ee93669368376b9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4be15dc905adc464dc5190da4d0cb12ced2311c9cd413f3081e775b67f5af662
MD5 3a1c1895e4d18dd10236b73b1e798969
BLAKE2b-256 5358ba042879eb80c3d1385e6126e50e3d0ec1436fbfbbcae6ce0cafc8dbb48b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d988055760ef2f5b23b9d38253d4894e7306f4c2a6a24634a178b1f4e6ef9039
MD5 e6d5544cf81c1536e05b533b590e1968
BLAKE2b-256 6879357858c2a72da963cd041915bfffb193af9f8ec26ff53d934d586df9f413

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b07178979f4b55308657c92acb62f0c092f68b79071e40dc11d52872a92fbffe
MD5 3b2eb1a3a3536418f554827989e51159
BLAKE2b-256 70b25fb840b274c4a0d90a1ef1bd6818c8d62ce7151c776b2f47967300aa5baf

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 549b83aadc55573830ed8ee4b967327a989fdc47c964db575fe8f663c1c659c9
MD5 cf9b2b468b407f65235b305ada40c9db
BLAKE2b-256 aded0854af4c0fe71d76301399c88d5227457059c3ccc8a68287231a00f6e0b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 613ab6fd5f77a8c7654bca87fc43114f75ccc4d1405474f7345c9697a4f180ca
MD5 1ec7ff8b23c6b49add200039fbe5d252
BLAKE2b-256 e9039fe6721eee832c4ee7ff3906b707bc15e2c2288c09b6af81226ba90ba7e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62f7f46b662b44d601bd5c2b7b2e8593183b4d1c14ce075fa546c683c44c49f2
MD5 7d7345151aa456c6bdf84b2fe9f774c3
BLAKE2b-256 a08af56aa2ae3ee2bcf3be3fda019183d4d993d54325fbcb0fc4a8503af699f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1b7105f6fcd9e6670c899f5790d3f42d5d0252febe26a04252cab63a48875a0b
MD5 a3cfe7411d530f602613920bbc45810d
BLAKE2b-256 2a8b164f707129aa2bdfc206ca66aaa0e4a717e73ea12780d71b93a69858721a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f02fac634fefb1c37413cbcf3d240bebcfe76d0a2647e32b0f1eec779a7a380f
MD5 88d340ed5c9c7b74f29a4e12610d7989
BLAKE2b-256 02dcc42953c735121ed885a79552d20532f41badec872c8f229048a71986eef1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.2.2-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e000d0f5107c83bf4bf0e0a556e3e83c6115c100aff7700e2b50237498949f45
MD5 cc36f0d807dc3e6f723e3151be740404
BLAKE2b-256 96d8758f4b91ec71ec628493672e5ee12e82cfaea2cba475985185b1d1db4d26

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.2-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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 Sentry Error logging StatusPage Status page