Skip to main content

Cachebox

The fastest caching Python library written in Rust

badge badge Buy Me A Coffee

PyPi Monthly Downloads Python Version

CI Last Commit License


[!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 dependencies.

  • 🧶 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 algorithms without the cached decorator -- just import the cache algorithm 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

Contributors

contributors

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.5.tar.gz (210.4 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.5-pp311-pypy311_pp73-win_amd64.whl (362.9 kB view details)

Uploaded PyPyWindows x86-64

cachebox-6.2.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (714.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cachebox-6.2.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl (755.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cachebox-6.2.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (800.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cachebox-6.2.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (658.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

cachebox-6.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (500.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cachebox-6.2.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (534.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cachebox-6.2.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (527.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cachebox-6.2.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (524.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cachebox-6.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (480.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cachebox-6.2.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (543.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

cachebox-6.2.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl (451.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

cachebox-6.2.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (476.1 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

cachebox-6.2.5-cp315-cp315t-win_amd64.whl (341.4 kB view details)

Uploaded CPython 3.15tWindows x86-64

cachebox-6.2.5-cp315-cp315t-win32.whl (326.1 kB view details)

Uploaded CPython 3.15tWindows x86

cachebox-6.2.5-cp315-cp315t-musllinux_1_2_x86_64.whl (686.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

cachebox-6.2.5-cp315-cp315t-musllinux_1_2_i686.whl (707.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

cachebox-6.2.5-cp315-cp315t-musllinux_1_2_armv7l.whl (745.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

cachebox-6.2.5-cp315-cp315t-musllinux_1_2_aarch64.whl (626.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

cachebox-6.2.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (472.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

cachebox-6.2.5-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl (506.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ s390x

cachebox-6.2.5-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (501.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64le

cachebox-6.2.5-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (468.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

cachebox-6.2.5-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

cachebox-6.2.5-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (494.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

cachebox-6.2.5-cp315-cp315t-macosx_11_0_arm64.whl (407.5 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

cachebox-6.2.5-cp315-cp315t-macosx_10_12_x86_64.whl (441.4 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

cachebox-6.2.5-cp315-cp315-win_amd64.whl (351.4 kB view details)

Uploaded CPython 3.15Windows x86-64

cachebox-6.2.5-cp315-cp315-win32.whl (339.1 kB view details)

Uploaded CPython 3.15Windows x86

cachebox-6.2.5-cp315-cp315-musllinux_1_2_x86_64.whl (698.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

cachebox-6.2.5-cp315-cp315-musllinux_1_2_i686.whl (723.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

cachebox-6.2.5-cp315-cp315-musllinux_1_2_armv7l.whl (758.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

cachebox-6.2.5-cp315-cp315-musllinux_1_2_aarch64.whl (640.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

cachebox-6.2.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (485.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

cachebox-6.2.5-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl (517.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ s390x

cachebox-6.2.5-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (508.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64le

cachebox-6.2.5-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (482.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.5-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (461.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

cachebox-6.2.5-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (509.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

cachebox-6.2.5-cp315-cp315-macosx_11_0_arm64.whl (420.6 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

cachebox-6.2.5-cp315-cp315-macosx_10_12_x86_64.whl (457.9 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

cachebox-6.2.5-cp314-cp314t-win_amd64.whl (341.3 kB view details)

Uploaded CPython 3.14tWindows x86-64

cachebox-6.2.5-cp314-cp314t-win32.whl (325.9 kB view details)

Uploaded CPython 3.14tWindows x86

cachebox-6.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl (686.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cachebox-6.2.5-cp314-cp314t-musllinux_1_2_i686.whl (706.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

cachebox-6.2.5-cp314-cp314t-musllinux_1_2_armv7l.whl (744.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

cachebox-6.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl (626.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cachebox-6.2.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (472.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cachebox-6.2.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (506.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

cachebox-6.2.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (501.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cachebox-6.2.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (468.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

cachebox-6.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

cachebox-6.2.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (494.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

cachebox-6.2.5-cp314-cp314t-macosx_11_0_arm64.whl (407.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cachebox-6.2.5-cp314-cp314t-macosx_10_12_x86_64.whl (441.5 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

cachebox-6.2.5-cp314-cp314-win_amd64.whl (351.1 kB view details)

Uploaded CPython 3.14Windows x86-64

cachebox-6.2.5-cp314-cp314-win32.whl (338.9 kB view details)

Uploaded CPython 3.14Windows x86

cachebox-6.2.5-cp314-cp314-musllinux_1_2_x86_64.whl (699.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cachebox-6.2.5-cp314-cp314-musllinux_1_2_i686.whl (723.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

cachebox-6.2.5-cp314-cp314-musllinux_1_2_armv7l.whl (758.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

cachebox-6.2.5-cp314-cp314-musllinux_1_2_aarch64.whl (640.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cachebox-6.2.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (485.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cachebox-6.2.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (518.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

cachebox-6.2.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (509.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

cachebox-6.2.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (482.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (461.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cachebox-6.2.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (508.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

cachebox-6.2.5-cp314-cp314-macosx_11_0_arm64.whl (420.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cachebox-6.2.5-cp314-cp314-macosx_10_12_x86_64.whl (458.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

cachebox-6.2.5-cp313-cp313-win_amd64.whl (349.2 kB view details)

Uploaded CPython 3.13Windows x86-64

cachebox-6.2.5-cp313-cp313-win32.whl (337.5 kB view details)

Uploaded CPython 3.13Windows x86

cachebox-6.2.5-cp313-cp313-musllinux_1_2_x86_64.whl (697.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cachebox-6.2.5-cp313-cp313-musllinux_1_2_i686.whl (721.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cachebox-6.2.5-cp313-cp313-musllinux_1_2_armv7l.whl (757.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

cachebox-6.2.5-cp313-cp313-musllinux_1_2_aarch64.whl (638.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cachebox-6.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (482.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cachebox-6.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (515.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cachebox-6.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (506.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cachebox-6.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (480.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (459.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cachebox-6.2.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (507.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

cachebox-6.2.5-cp313-cp313-macosx_11_0_arm64.whl (419.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cachebox-6.2.5-cp313-cp313-macosx_10_12_x86_64.whl (456.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cachebox-6.2.5-cp312-cp312-win_amd64.whl (349.5 kB view details)

Uploaded CPython 3.12Windows x86-64

cachebox-6.2.5-cp312-cp312-win32.whl (338.3 kB view details)

Uploaded CPython 3.12Windows x86

cachebox-6.2.5-cp312-cp312-musllinux_1_2_x86_64.whl (697.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cachebox-6.2.5-cp312-cp312-musllinux_1_2_i686.whl (722.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cachebox-6.2.5-cp312-cp312-musllinux_1_2_armv7l.whl (757.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

cachebox-6.2.5-cp312-cp312-musllinux_1_2_aarch64.whl (638.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cachebox-6.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (483.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cachebox-6.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (516.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cachebox-6.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (506.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cachebox-6.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (481.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (460.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cachebox-6.2.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (508.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

cachebox-6.2.5-cp312-cp312-macosx_11_0_arm64.whl (419.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cachebox-6.2.5-cp312-cp312-macosx_10_12_x86_64.whl (456.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cachebox-6.2.5-cp311-cp311-win_amd64.whl (342.2 kB view details)

Uploaded CPython 3.11Windows x86-64

cachebox-6.2.5-cp311-cp311-win32.whl (350.3 kB view details)

Uploaded CPython 3.11Windows x86

cachebox-6.2.5-cp311-cp311-musllinux_1_2_x86_64.whl (690.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cachebox-6.2.5-cp311-cp311-musllinux_1_2_i686.whl (738.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cachebox-6.2.5-cp311-cp311-musllinux_1_2_armv7l.whl (776.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

cachebox-6.2.5-cp311-cp311-musllinux_1_2_aarch64.whl (637.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cachebox-6.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (477.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cachebox-6.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (511.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cachebox-6.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (507.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cachebox-6.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (500.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (458.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cachebox-6.2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (526.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

cachebox-6.2.5-cp311-cp311-macosx_11_0_arm64.whl (427.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cachebox-6.2.5-cp311-cp311-macosx_10_12_x86_64.whl (454.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cachebox-6.2.5-cp310-cp310-win_amd64.whl (342.3 kB view details)

Uploaded CPython 3.10Windows x86-64

cachebox-6.2.5-cp310-cp310-win32.whl (350.5 kB view details)

Uploaded CPython 3.10Windows x86

cachebox-6.2.5-cp310-cp310-musllinux_1_2_x86_64.whl (691.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cachebox-6.2.5-cp310-cp310-musllinux_1_2_i686.whl (738.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cachebox-6.2.5-cp310-cp310-musllinux_1_2_armv7l.whl (777.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

cachebox-6.2.5-cp310-cp310-musllinux_1_2_aarch64.whl (637.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cachebox-6.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (477.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cachebox-6.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (511.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cachebox-6.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (507.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cachebox-6.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (501.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (459.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cachebox-6.2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (526.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

cachebox-6.2.5-cp310-cp310-macosx_11_0_arm64.whl (428.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cachebox-6.2.5-cp310-cp310-macosx_10_12_x86_64.whl (454.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: cachebox-6.2.5.tar.gz
  • Upload date:
  • Size: 210.4 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.5.tar.gz
Algorithm Hash digest
SHA256 44f43207c8cbdae0ebc4df26f8e4c1cd506181fb0b0923b5dfc975c699ae5d84
MD5 80593e0e80c8256d1835ab4586e30776
BLAKE2b-256 10de68c3bc02017168d3e7079be04fa545e1ab4bf4613bb29672914130cd673b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5.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.5-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 02b5fa2d84df071f36de12f6df53f951e6e040412e1d18a0a3d0aa990b17cb1a
MD5 5f074f68fb8030ec2118e04cdcdc10fb
BLAKE2b-256 d745b0b981eb3908941fea326c19faba52ae587ba78db633e8135a3e4e51432f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 387a07c1e59426b2a15f277afaf63a1ee44854f0110a21ce41b2bd5c0799f115
MD5 70edf477c43737d1d8a098ab77125229
BLAKE2b-256 8c999dd9e81ec69bb7a1f0986704f989a88204875bec90e3ef7be55d7431f32d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21a55ed774caa185b7ec75ee4b47b9914f17f84ebc4efe71109849cead063690
MD5 ff9a4cdbfb115f367273bbc5ed9b4433
BLAKE2b-256 4ff21e56f4a6673ad7cdd176d5ed8952efa85c9f72b378fa80e77cea2aab23e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 58bd5ed3ec6f3ab4273222795ff3edcb866d85c67428b754462c3e0947bdd12b
MD5 c3f25b6d767cbe0388bad41c6086cb61
BLAKE2b-256 f92fe33cd790370de338080f0b5f961815d0fbf19d710df262743f3c707cfd00

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbe43d553d6745d7eef56f73a6c820d8826b0502101ad1c15eb15f9facc781fa
MD5 1a842712c16ca787a62c338b1d0f7a23
BLAKE2b-256 17b69a497926c932e1347132e19783026be166da27927129c3a4498e2250eddb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8651de17401f3039b787f3f9f348c38d61303616d4a4a4b90e2c859a1e2b2955
MD5 17a26cef18a3b2a197f726f8361c5b9b
BLAKE2b-256 5e7ac9aeca05b644aa737b97b91913efb7b8f5261ab559aad3a29a4cf0cff256

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 08885e695aa7e9c5ea0821d0448809506bbe3923d6935610174d43eef6e7a9e9
MD5 09748e25e49f16118d2c7dbd19f6dafc
BLAKE2b-256 56d583759ec9fcde9d82d3f7094ffc1077ed77d77fb8869004e7357bfb1bc100

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aa14d45059e1b6711e7644b5a2c333bdd86102757cfe1c59a7d4fb65e8efe8db
MD5 6822b3bbfc99a26ee0600788ffa0d7d6
BLAKE2b-256 15d17c628e4ba91e1ebd26f16d3b126a1b6ce621c27dd523e11d828fe0847dce

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bb953e3d2278fac7784a700e4db3c73dac06662fb3d8c71f177863a2a8232bed
MD5 2e8a08d26c0e3795d427019563620efb
BLAKE2b-256 c77eee31abb5cb5bb1219b9b00858fcc90a92579c3cf5a3436b07135fe5f1128

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e036fba3252ea1ddfb44542bce426e5165e81c4a8aa2fd687072f70cbca394a5
MD5 9b587c75a65a59cd6e8dab23c4993a40
BLAKE2b-256 dd66ddd77d6c0eee92c7fa8cc442bdf2a7872486301369199ab6965acadcd21a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 010f7ea878c3e55bbf2dd993653de62d8e304ed75263a3ed101fb12f8087ef6f
MD5 35711ba6817733f24e1ed6a92154a855
BLAKE2b-256 b6f7bd86fc9f644524bc587c66a9fb911c1851ff26b66915ac29891119465871

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2eef9134b44b5be3437f7836fe687e71ac5850165593c683c50e3bbc0bf8c1e
MD5 a6ba9d6637e812502f66437d61d275ef
BLAKE2b-256 645ad0dd74674bb1cf4fc852a69fb57b5a2545d849fffed7aa7bdec4dd2b95c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a02f0f086cdb85dd13308fa559cf487f7e64daa7bd38b644510e2d09961a1aef
MD5 dcb9ff630adb8911be20f97b619ab612
BLAKE2b-256 1bf31b87ea7b46ba2bfc6407b6b1c7e0b6c836f30dc375cb593661fa206f403f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: cachebox-6.2.5-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 341.4 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.5-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 915177a2909fd55d285f7a062515a4e3112fa21a02c16e4bc74340deb960b9be
MD5 71355edb02fc7a5e3e1c9b3eb840ba5a
BLAKE2b-256 5d426629cf9c82cd462083f0ba51db71e57de8fb62644133b23f4b48e0f27ae4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315t-win32.whl.

File metadata

  • Download URL: cachebox-6.2.5-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 326.1 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.5-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 20b0469fad660f60fc528d3fe2a1c965a07b636d4f53effd0914fd0a6febb8e6
MD5 fd63cf5f51d50f6493023b4bd5f40ccc
BLAKE2b-256 de5386a97046ae568012e773857c7b1184e8674335bf5a3b023d27bf3d6c17e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b23c1ef9ddccd1434edf40b9afd5039b74f0226e0747884edbb93938c0dcff19
MD5 d94149676f34fd79c08d4ecc7304fcc6
BLAKE2b-256 d983857c3cc245b9566e30de3f68fb736078560a76ad2becb91e11e8daf5348d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 15a762a83b09c4cb1a9e9984d1aaa1f07b71070259552f258cce3a3956d7a059
MD5 b4df71b5b48c7333dee61aa3b35aa11d
BLAKE2b-256 e123b19399b0d058e1c0103b097e4a9dfa668cfb1dc7906150b29a37329efa43

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d01eb155972a1a591579ac02806a819a78c6a09b89fcb0fd7b15b23e941ab232
MD5 ea3546c29d11e182fc6af945c15385a5
BLAKE2b-256 7a174efbaf4e73bd54207184785661db7ad0713cbb8e5e5dc97806469a38b2ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dddd1a4972d5b225e96df522c42dedd8da1d060998c98680614763fc3d0ec18a
MD5 9f61679e83c2183e1ee4a688c8b16dc5
BLAKE2b-256 aa61be3f2f08715c6eb1dd694ee2356ba30c8517af3422b3b5dfa795fb04993a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcdb893ea836503a9cb9bd529803733408a5f633951626f1db49ddca0e5685db
MD5 a9e221ddee3d8b012f4aca7b6430504a
BLAKE2b-256 c522c23837f0af5fa8c4df5b2550317648258c4ce760f54ca883fc42324dfb29

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a15e45b2eab7e35ca909ebe299c46857151c218698fae26080e347ec2fd9fc3
MD5 154d853805d706a753a66bea534f6629
BLAKE2b-256 e1e32ae94a7197c428a03c1957fd138018bad2af74ab1c1a82857f1c7d5248ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a7ec0fcda06f14a21a2a7bb7031130e44b255ba156b32f21f0e2f7ebedeeb653
MD5 68da18d845735ef5b8eed7b3bdc39569
BLAKE2b-256 04124ecd2b324a93f65a7b4c9a94865523d88c82ebdcd061c9e700255aea3666

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 40da7ec2391bcd0e5bfdad555d6fae90c38d7fc5b46409d43d2d71fad92a3028
MD5 a6524784d1391cfb5aef40ac9766d3b4
BLAKE2b-256 5db5e8d04d233c35da7145bb3a9fae908ed1e085329680e42abf4e56a7f96b7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5128c38acd79e12f99a93b37f74b3d1cf289a6e70070ec06ea92b474a17b6af5
MD5 1fbe972f328861b0628ead4aaceb5172
BLAKE2b-256 6f23b7131ef8bc81e36b3ba13cf01d3e12d404904c7d807d2ae424586d361a18

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2589f1a491cdaecef3a2c7e51f160ffa232a39b8d693de47f67c9613525322fc
MD5 e5eeedf3a1a676fc00e8ca8ce669f835
BLAKE2b-256 199827dc8fb0bde17ddafe133d88d7d2333223e3e78e4cd35f7ef5a804171731

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01f440844aab4f5470cf5b368739fa17cfef6d47ab77a45f0f1d8102044c0378
MD5 05935ad1615e527b4fc7703bea3bb291
BLAKE2b-256 48a4fe4337199b584fb5b8e52096801406551167fa5257dfa21303708ccecdef

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1213a0431a2c67e032cadcf2bb389dd3b7cdda68e16b8f838f9c97fe8bdf9282
MD5 b49912096528ca0f9b00933f10fcb82e
BLAKE2b-256 6054027162751c1b6f4fcd18cfeb7b609ca7b28f10cb66c9cd1e37457d962129

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: cachebox-6.2.5-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 351.4 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.5-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 0f68b16f416a04ed517b0b02b8d6a3ff0ec84d71d1ff1f1e93853ca3174dbfe1
MD5 fd1ebd7b1e1499d8731bfa3081e66828
BLAKE2b-256 2bccbeaaf37669a27910229948d4f8ab4ee30cde64173946fb3f2a937d28da89

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315-win32.whl.

File metadata

  • Download URL: cachebox-6.2.5-cp315-cp315-win32.whl
  • Upload date:
  • Size: 339.1 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.5-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 e3d0468bde502a0f8040859cbeb8955c037d2397849692d280d05b9b85fde040
MD5 fb5ab091a59b0daa2d33c1a431175b1f
BLAKE2b-256 fb8dc53f6caf8e12ce1400c784f845a32c2d1951b02d6b555d206328eb9f5bbb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d78f299717fe8155e4830dc47564b9faf9426a1d9f0496ba6f7ec584b654f759
MD5 ae573221ed0ebd99e3418002cdadd138
BLAKE2b-256 3097244d8c7dab2f84af27d81fc8e46deae11cc7e7eb4aecf72d3778258c8871

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 641e796c25d39cc6967e2869eee3a400d6c317b4bc53f335ffb1f7b176049545
MD5 2a07f735e12d4cbf4fc4fdffd57f1996
BLAKE2b-256 753aba4ad3bea35bf3a7e79a788ef6157acef007dac393522a9a506470e89a2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 23f075dfe8b7b2944419386b18c678c3bd9851f17b5d33582db85ddb676e7b4e
MD5 398b929c8dc332424354194e1634a31a
BLAKE2b-256 0e96736f024a7b638d8ab94d7eedeb61683c6892a7232c8cc98e1198150bb2cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f0698112a1885e68da4936c7385195e059a018a3b1054b38f11f55a2a67b5c39
MD5 98620c8e778867559ebdc0a610cd79aa
BLAKE2b-256 eb75d813ef31e8d143bbba696143e468f14f252c6088e03ff73f617bee8624cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6f6ca2a30c014bda5ea102ea08e2234bc962e9165f7317e4aa253e941b6561e
MD5 a511614719b62b9f6537ef5be17cea0f
BLAKE2b-256 bf3573c17ca9326edb5f15e05b887c14de56ad8e2e40972cee0169794d9b531c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a09cd8256ecf5db30b2e1f0e468f9a99d37d859be798053ac01fb97aea44708
MD5 6cf9dfabfecb42e2396039b1e0a504c9
BLAKE2b-256 cfc6ab8d8e76c1425f9d15be66418607e714fba51487b516efd33cc122341ea5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e01c21496bee1f742e129a81bd48a7a4522df956fa8d85aeedaca2839fcbbfa1
MD5 dfe31a1b11f9e3b73e8845a5a5431943
BLAKE2b-256 a69c5745dbc2b9a2e2f7595cb4e9d24f02bae8457d972a062b824c68bc34e071

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c37fc2c30950aa662505d35e3b6463059f56ff306b26fbc410efd5d88afb00a
MD5 244f9c081a64a8a6ccd8c8cb5a4fa444
BLAKE2b-256 0871ac4f22dac31fdc54858500c0a230ce2311900c2ef8ac310630a03dc95f97

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 244d228e490f583b7c0bc4e0fc1899e4be98f62f71d7f3481d35b5b93f9f3022
MD5 d012145c6b57af0e73c0499f3fd61dc1
BLAKE2b-256 249ecd4f9821b07473b9c2a3c52f8d4c55d050df7a7a0728dfef4257c8fdddba

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 124b0710fc33a5523ebb3649d1babbe1b9543204803d85f80ced099e40cfe159
MD5 629a9cf2facf91ac070a90d58f275b7a
BLAKE2b-256 cccdd3d3cb1ec5ced12a41f878bd470c3e60ee4d8f89461766d0382cabf82e02

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d416de7e17f05e756dea735978cd0dcb5225ea741a5568ad72d6f0aba4100ee5
MD5 414c765d068a511af46f8a5a26c30789
BLAKE2b-256 0a77b5dcfa143f4621c8e103e12e1abc7b2a3640125b9bd6a0386ef2a7f365ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp315-cp315-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 174fc30cf9c5f721f20b8b9a6a4181653ec5a1ff41666ed3ff07ca258ea92a73
MD5 74a4a5c92860e94ccc838d0fff65f8e8
BLAKE2b-256 07eda1d3887bf874d55b7d3ffd0082915c86bad91c03a3fae96a7ec9eaa2c6fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: cachebox-6.2.5-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 341.3 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.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 68be9ebd4d1e2b9a43e9a64eb5d1a78eda610db4c2b3e89d7bc4405776aa9285
MD5 d9534e72f456696c43c1feb11736c400
BLAKE2b-256 c86a8457dc3406ec6261e3730328c6979cbe902d89a0427a41ad8b1f4c929737

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314t-win32.whl.

File metadata

  • Download URL: cachebox-6.2.5-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 325.9 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.5-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 83d9e4404141da55ff515abba3893221ee68685d2ea7a2027c4b43d449c40585
MD5 99a4b810bad70ff41b45196e1d6d365a
BLAKE2b-256 146d5abfb628c46f017384b6ade3555b4579b05f40e1c6b39dd23a0c69095aed

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 403df8428efa42239aaa25367686a616e0eeb1f7cb0504b54053f0b97e91be9a
MD5 0f1f22559b499bd35f4096016913abdc
BLAKE2b-256 1bf3ebe54382127ac63477e461b71d2b4b6b88a125b57cf71ee0f8e17d48671a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 dc0400272da54ad804bc8ff1522170ecb473724245ab537bec94e864fb292e20
MD5 4766e5b60d5992d2eaa4f13489a602e3
BLAKE2b-256 b39bc2bd1538026a51fecef21a77083cef43f9f3ef8d79946f1cb71aca1bebc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 37c0916026dff833b52a646baba136be6ad8686d3da3e34248d21173b9192b2f
MD5 bc47d257334c157e47d8bbc46ed69e05
BLAKE2b-256 b85aabc8953cfa926f046c8b8750ff135f7e76dbbffa3b5d2e17b34ff81f0404

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f66408be8ec42c0426ddb401d5298bdfedb57f4b6177f6900836840e503ae429
MD5 17bc349584eb4635fdf916f623c3ff31
BLAKE2b-256 7ca0e1dfeca4db06017e8986c5a00e277f6ba27121b2069559d5da2070487700

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 980bf2f46d0be62a95175202771345201bbd9aa11da6bc712b4fff5f431359b7
MD5 894cdee7aeb86c93020dfba3250f6ec0
BLAKE2b-256 06925ff4589f884029ff3cb0fef4dd69fe9a338d044574596f8df0cf1edbda67

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d12932690cc83e0d4175956840dc67b1a0759a065d69c21fb0b743128ce8b45
MD5 b78d45a28ec7b8b99b6f0abc27039038
BLAKE2b-256 317a1af2ce32b33830fc50ab547f9f2566a93ccdcde7e3a4a30e4b6051232dff

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d24f8f0257fa7ba80f6e80d59e868f57a77fa03ef979ac0a2183b734d2200c1a
MD5 50f4f5999e72f700eaccb28f6f919892
BLAKE2b-256 e7d6bf9622399342ba7e95bf77be5a8fdb66e132d184e624c744b9268267197f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f87c86f7af23aef9c5a2cfb83572886bfd76b735070bb8d0419f57605ced754
MD5 923d9663df92824085a2b1e9ec8c8024
BLAKE2b-256 e17469c82c3b96ca1b9892cbbe53ea94ccdbaea2b107ebd7469bad06c334708b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c6960b53ad9f872068856e144d7cae21f27658f70bf35ce3a6c872e325c7c0d
MD5 c446e19e513637640baa3cdc8233d5ce
BLAKE2b-256 e5eb47b97b8067740bd44073cff904982fe887cf0e5a6c8088540bc4c1bc2f2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ce24ef7189eab9e73e150eeb798c634ac702cab3016aa2745bc863473259348d
MD5 d54fd914f9cab6360bc5e760b4db1a03
BLAKE2b-256 a6141c46f590746e9f4e07dbf0c567eeab9f2e75ad3e2e013f5d5dab47c08e13

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 380493ecb63e877fd2a021db80731c534eb76a51828e7d177a3483563cd385e5
MD5 38ba772f0a3497eddc2392455071d5c3
BLAKE2b-256 f3ed1175bdb9934fbcda794ef0a20fb52a6b81d23885500e1e21112f8483a365

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2323ceb9fbebbb6e7a3e37987bd8b8d870deabe480c4b1355564bc03c7ecfb61
MD5 bd39d5652f840c3f305cb1e154a0580e
BLAKE2b-256 af054e7accea18e06eb191cde22e2d1d761e0594676c6bea3ef27d83b96c1b1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: cachebox-6.2.5-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 351.1 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.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 51316873518f182cc4095d8cf5c3dced2a8e6b287647955f23e80254b9505ccc
MD5 babe1eca0a7c409d87414666139810de
BLAKE2b-256 0f3b636620857dab2ca4084e0acf875b507c53c7871eb455537f5e3a5cac5934

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314-win32.whl.

File metadata

  • Download URL: cachebox-6.2.5-cp314-cp314-win32.whl
  • Upload date:
  • Size: 338.9 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.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 bc217701c11c615d39fcd18918c4f79a76ffb6fef32a521e68170e11b33c504b
MD5 31e0bfe39936ff6000198bd89f3e6480
BLAKE2b-256 edcb464690f26cd5621728a931b09f473ba24e51f7366c05e97e88c7301033b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea0162a51cf5542f5b1c87085afc216b0d9d9210d43ba88e8396c31ad7b4f3dd
MD5 0e0e2ae124a75c3dcee275d99b263b17
BLAKE2b-256 b0d11e022e7435a473e9615bdc8e6de09fd94a643540e3edf7bdf6402252e8e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1ec41d15e03c91681a8b52a342996f897675b568925625cc7fb026239df128a7
MD5 dd03b4bf60e7b0682d5d7582b245538e
BLAKE2b-256 40314e31245d6df20f15216559e49c90460c1d3fbcdb05ba01729412887203eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 240546813fe2abca2a140a788263c479abd1cbb23c8ca23cc1f4c6d2cb13ae4b
MD5 f2b9b0e7ea9587e22b8c93ab8ef95c24
BLAKE2b-256 ffe4ceaa0579ed338d17ff79aaa0c9929589f7c9b29f0d137749c8a2dca01639

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7152226bd4a2c54a63ecee1899b4d21bc6eec1b3dcfb8dd97a934b9602036dca
MD5 b6ccb8a409f4b61ece760b5f57f183f9
BLAKE2b-256 313d9aa92e3e8fa8cdb1f5006a1662899f300088c24ab64a60dd3710b74215fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea70beaa98eb46b2a5aeddea646973324bfd0a6d8a037b82acbc3cf75a7a2f58
MD5 2372fed9868785c9d36fe5f77513103f
BLAKE2b-256 69c85d6f409ee91a34bafae04cfe2dc04f58ca4d8f91a56d88bbd168ffdca9bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9304dda71ac79eaff82e2bd7cdc2a94894924acdcab853bcaae2d3dbfa8624af
MD5 7330eeaed2eedf9f49bd32b4b6640af7
BLAKE2b-256 2fdd077dc7e987c728e452a7e1adc8c46fa2e2695ae8abc74fa82640a69d184b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bf1ab5a4c90a7b9e4419432830426e2d40437c4b677a3c14e9df12ac35efb0fb
MD5 c68d82c1ebe915d246aa994838991351
BLAKE2b-256 2cfe6a8e52dce804e15594f42fe62080b15d3e46331ec5ab9817b32c1a86d368

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e0005df847514f26d6345dc1697e850338631934ecca823226f9c5b924430045
MD5 011dbf959843ff364901af7a87b092e2
BLAKE2b-256 cdf2c01dd05acc5391742ad689bfbdbc9eeca42204ad2e93ebd52a4c71f28aab

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fdb0a5d5a7e0947d8ccc4b9192465568064435dd009139b9d208ab97a9c6d15e
MD5 0a724c2343374c1ae7328c19b9144059
BLAKE2b-256 670212703fa2ce64ff76f8cf9408f18e077203f64153779c3e8696bbbce7687c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 23025c584357ae98921018cfaf78dc0997767867df1dc4c20389797b71af269c
MD5 513cc734f22ea96ccfcedd16f811cfbc
BLAKE2b-256 4d14bf4daefef9e04460cb51bfc56d74351693bdfc05c0c3ba0cb2dc95435166

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4874407aa3d2e4bc9bbf019eaa610670d92a2ef8a48f3fc5bae858b372e8ce4c
MD5 c07ce9913e2ff68e7a3c4b4aa82928bb
BLAKE2b-256 e4334e702786cc3685f0e26886317433850718566bf340eac85c5ed954f30adb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 91362e3a6dff8ae9fe0f7518e7814e7b4f7e229d313afe6fbdf587251e433412
MD5 cdcd88be186f4f3d0e76a783c929e413
BLAKE2b-256 328fc3f0b1e6def10807c42ea320429e5a9a83f3a5c41f7bcb6129c8b021300d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cachebox-6.2.5-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 349.2 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.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 05776cf383686ba727f8487a5b1726501955759f2e6d6685a999a63fab9e2572
MD5 863542ac112e332c47b6045d6a443bbc
BLAKE2b-256 1f7ee330d75726bd67ee8519e7ce90e171c844087ef497d85194d47d15a633bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp313-cp313-win32.whl.

File metadata

  • Download URL: cachebox-6.2.5-cp313-cp313-win32.whl
  • Upload date:
  • Size: 337.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.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 35ade314c2704346c5696f5f780ce3d312fbeae29c9afa6510ef315846d14b96
MD5 c20f5762c9be9f32959f4bff53b1b0b1
BLAKE2b-256 a9647bf4fd9479888f272c0884b1907de6df63f230af9e17c8aa92d2c400aa4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfe4a322ce1400a772e2fad2c81aaf60c5bf425f5c9b9b1b281b68f08ebf40d5
MD5 58aa00a687cb60a6f6fa6cac1a631e50
BLAKE2b-256 49d403d4f5f9bb317b17a7ce969c4f0ceb045c1e5cce75169d89fc87db9b08af

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3ca8f92c188f85357119642f02620b3672a4230643042c35f7c431cf993b3275
MD5 2c4d9f6fe538120b00313b97247572cb
BLAKE2b-256 5190c8d4f37371323e16c9340d9db480b8f79d7a75ae4a0d8eb4436c3279ec7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f286c6962e67ca0962147026526ef454a238c949028bd4e49e4f95a9fbcf4a59
MD5 64a20cf45e210fdd6ebf2c3902325217
BLAKE2b-256 034321e191b756a80f7456b2c65e658196d88a61aa532738d6225671476c879d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 07f0ca30f6508f3506631967673a2220a82df59fea7db4115385366d8346805a
MD5 f309eba776d428d6e1a684b5e9a78e19
BLAKE2b-256 8485135588b42c2a71892eddaf54bbb03ac439bda8f1d55142e1a983ee61db20

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a296797fab5a6a160a49bb010950b9db01906a297f05bd43189caf5deca00ec
MD5 3b3461160057ea7fee94561bb8c25e82
BLAKE2b-256 5837593b87e745e38527c624501d47f9935a7f41c39c2c32fea5fcba92843389

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce67a1dcae994f3ef5ea8f8b3aa261a82b5a7c8532f867d403ecba8eb6a99a56
MD5 c6b7080c6836430573f4e9b495d9ad3d
BLAKE2b-256 8785328d39750d9276ebaa33cfbe6e74dcd7eeebab8e331fa0eced2400a4d96c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8d6320e2c19fbe3c6e345da269fb115572e0262286e406c49ecec809dd547f8f
MD5 7f645a0bf8b81b525e8bcf29cc77cced
BLAKE2b-256 218179eb167a870ca0a3d959d4c6f039db3b7d83d48caf41f4cd7fafece7b1aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ac9d301b41a0c76c8b474a845ba9204d316e5523643abec5d16e05bc02660b5
MD5 8c209d6f7cae7d292e8bab77a840ac52
BLAKE2b-256 6573b4a09867a2f97ef58bbc48b34e7d8715d277061f81aa38c961cf3a34d10b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 747fe765b17fb72fd844c7af0eed66b630ada8b0c654d1159308453291d5192f
MD5 8d24f74c5b77869cd4b886dcfc9bf64e
BLAKE2b-256 5854c78c6cd598ffe87125b69834e20f0f11c2f362503bfb927c029b12ff5939

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 89ac63cd704344703a88c7c15037b724f62cabc6bda0b67c197e336ba9b2f514
MD5 ad451d87847dffd40347281f13bebc37
BLAKE2b-256 46400d548fa130c7975b5c25def7b56a5d327ae8ddf422cf20f7c37b660826e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbdc3ff5f51e79763a8f6b235894e17497208e8544c4f6b0c462463aa7d9c771
MD5 3bd537d90fbe59b64fdf9331dc44e2c5
BLAKE2b-256 f695d2896e1d3b9ea932ceb2b5e9e239f438e558cc2b5728da463eec21b917bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 41ec7792a3f0683726f15c6ddcff8ecaa8c7f22214779fa321fa5137e763c43f
MD5 d58182c53ca56cb938827b45b77eb2d8
BLAKE2b-256 1ffcac01f395f8afa0a97e1a347919ba929fa10441c107a8afb2dd3464faa6e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cachebox-6.2.5-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 349.5 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.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bf87924a5ce2ecebdbe0e1e1c5519e40179cd1481ea660787f4f054728b72bb5
MD5 447dfbc575be28f49eda2dd7bd5ed5e7
BLAKE2b-256 1f20aa1d711cf63f74481e84b07202988e66dc0438941ebc4d8cab53d4c97112

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp312-cp312-win32.whl.

File metadata

  • Download URL: cachebox-6.2.5-cp312-cp312-win32.whl
  • Upload date:
  • Size: 338.3 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.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0637035f8eb43e0f2cdcb7001cf9a1005a69fd4a6d872c5ae2f7a7635c2f4125
MD5 bed12cbeb24f98a0397d035bd11a652e
BLAKE2b-256 307bdb4ca0915e94813be003fac5dc14063043eee3aaea37581724d531a0e76b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad679e36d8e74de9cbab32d7f6c713fd9d1639eeaabb7f70847ea26ff9576dc5
MD5 428711aa74f8d425d650709c77ef433f
BLAKE2b-256 143c1d5a7debc54673f00acf3fbcf1b4d534f9851cde27b062228efae77d966e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c1deda2b47e4b4ded672e53d18c976a5366e3f8b189cc7169d3d5add116cd58f
MD5 d37c4a3d1315434a27c9dfe2b774c3f1
BLAKE2b-256 ec3048334defb4bf62bce5bac77bb912d3e98931c7bd4c2b359cf69b66025cef

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 88509b9762d48b2a5a22c6f82e580366b856fa2863323b527852ff06fcb839ce
MD5 a9c584cd563d9a8700a9b1fe037add30
BLAKE2b-256 38d05c00ef74258d722ad463219c05d939f77f6d4c1c7e029f1ec44ae6b5e809

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1bfc3b29a1ca55478270a6f5334ba8f4b2f79c279ad016d5b581959ec1590466
MD5 ffa2e01da80726280e50a31c280020a7
BLAKE2b-256 0733b4dfa4352f3904b3df3467f85c83717ff2200907721e8913cd7710f8ac1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6657226d152f4ce08d9e66fb6a913fb9d853cf42ce1c2f78f0315ae6609fe8de
MD5 2925af9b8da7cc7bcb4bd6c647d8dddc
BLAKE2b-256 ca8b83f808ed9c1907dfcf01b4d7e97cea865e18f7f57eaffeb482beabb4e02f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0867c1a85c31b2e6b0d5c29d9455948b7203f54f44da0ed6aa848fe09f10aa89
MD5 ea5d7ecc69204fedfa5d7f372d7c6d5f
BLAKE2b-256 87fb95a948594ce3633c9d6f31aa8769d732883895897c918ad95f18a8a1c171

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f57c5bb3aeaaac4753117db307bb4d29458fcbee679d51ec620ee8ee09ad3acd
MD5 d43a6867a63a63ba86c691a71d31a368
BLAKE2b-256 60f9d8a70a171cff1cb1fc98eb72a52c287eb0d52b7d87ec8b790fb1c7b71e2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8556fa1aa043ec94bfc84af86a7654114367bf1080955ddaa55b8129cdf1adac
MD5 3024d1a1e6501e6bcc1e5e1fba8548b6
BLAKE2b-256 c2663a8b08cc326dde0e34f4737115d62b11501ef73f33d7c781adbe885c960e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6e4b6b1e7ba67df9391de26f24b8c5b43ca411403145f132123719c4313e952
MD5 c6edeb978fa961f0445b83956876e314
BLAKE2b-256 292b847d525f0c3a64c01ef7cbfa7fff0d026312d8654310e7e7b7328f6b330d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 66b36d6eb24bb64e8d55008871f2cf500d14f39307925bef7c10413c8ccea046
MD5 2667302560b96e65a1b2a7a47b4ed435
BLAKE2b-256 a548ba0a3837f727209fdb2e525b1fe9617fe536aa5ab510beba3f9c59942f5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7c7099494a6b33f58179f47bf75004b1798d35ee935cb6e5ee633b12d3e80638
MD5 104d88dfae8451fe76533ee2c6590e95
BLAKE2b-256 c6e2d21e4231db510132e5fe9ba027a8fa726c1ebb1958612a666c8b75d84269

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 165fae3f3c9a2d2db762d898ca2f5fffeab830d141b84685cbc1be41ca594bfe
MD5 2eccdddad8c7fc87a670274ac2d22dc2
BLAKE2b-256 72d089a7a8e6ec017a54e0bf806e61d995f7b68f20242e9a1cc2e8d8ed054b02

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cachebox-6.2.5-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 342.2 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.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e7e92d7a0e6720a440555d93e3de506dc9383a4893bbc19a2e744c2bb89e096e
MD5 eaf6073c964344369dd06b08095c7de9
BLAKE2b-256 bc390263bb821b0d17d6bbe6f541da26e8e07d8034096cf65f0e98fe5f95be21

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp311-cp311-win32.whl.

File metadata

  • Download URL: cachebox-6.2.5-cp311-cp311-win32.whl
  • Upload date:
  • Size: 350.3 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.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c30fbe03fd3035a58a122c8e13ced86100def2bd5397d974823cf836ef24140c
MD5 de8373a30466427d7f9a161758e7d691
BLAKE2b-256 aa9cad921dce49d136d107d64b1abf85464ce35aabba4c9ea2852281cab4aa49

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e91ed782cd0c27b2c353d25bffb0e87bf5a3a80d030333519449556ce555fb9d
MD5 ba74f3491e9e80d31514fcc43f855ccb
BLAKE2b-256 0a4672fa876a8beb368903d0144bbc3a0ce39308cfea8a1abc7c951fa3e525fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf8fa9195506e9cae160e1332412ad48db7b0371373f6a820549ee67e04787bc
MD5 3c915efc7f078297a6e78c98e4341168
BLAKE2b-256 81e64aaed05820ae63b833af4618423041a4991d42c05eb76864769c790acd3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d38beda7bcc55f21b35b914ab77ec711107d31ea19277d8c48322c0c7e1b48b
MD5 d5f58d373f4bd55078e72edd76fcb0ce
BLAKE2b-256 fb7d13311ee8802ecb8330a8bf04455ff90b0ddc72b2b1ff56c3f92b172981db

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea65f2e726018bcb332edc0a7b874345653fee1296d0e819d9d8f9a3a9aa889b
MD5 9b89569e1b9176599b2ca848c0328f05
BLAKE2b-256 173118762be8f251c84696fe694cd42203ea39467e5740664d6c8663f2576a11

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a39ecff5b419c1fa431dd7fe3f812f144013ba38fc0437a3189f91ff8f9748af
MD5 c11d052029f21109ca991d768274f4b7
BLAKE2b-256 eca848580096374b0f7d0029d1aeca4b468bf4a125838d50e6b4b9937b1ec5ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b3c0f293f4b0bf3819411a0b06060491040ea8bc27965ee79828f936c500297
MD5 5ec2950432662486a2ac4da72b84be9a
BLAKE2b-256 a55eb3de4c31f2625831fba86e6215ad6dedfa531e280a877f28b9be4a2c65c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 30a972f5df2b017dc61aa3d685e7d23625f4293ad7d732ef99e726ccf9ed53f3
MD5 09b575f989afbf5fd3fade4f3c26b7e7
BLAKE2b-256 29b5b097c6163f170fac49cdf7cd3ce3d78685f705fe256079c44d19dd1c0a1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 31b85864ad0131d39414a1199b90873660de707ee61a02075ee7fb721ed0b0b5
MD5 d132264c6e91d17377310b3bbd7eef3b
BLAKE2b-256 d2edea92b6177cf1cd5412eab909d77cd8ff3d266b72fd4ed0cb4a8a7cf44fa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9dcdb147cd2ebfa5ac87b6162e166f5852bea91fd7520c6860e85bc43648e92b
MD5 0baff3a7676fddd8ef3d35842661b0a5
BLAKE2b-256 d529fed6d73a49939f1dd01cb0215c82fe94dfe5db49c3bb39212a87941f3305

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d1f0154ae6d51ac6850d51777d0bc9c935f0c15bf9b91bc18fc649d381e78c3d
MD5 88a25a5e3488cb0feaee2eb315c17a6e
BLAKE2b-256 a503cb2e886e27c6dfe8f53ec6eedaf9538c5a1942aea94b5e61cb809c69f0b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e093f10ea0c579beba96b515a9aa364f7627e4084d590ab78a0a39d911deb869
MD5 817ac427fdd26516b52082c30baed7ea
BLAKE2b-256 f02bf238cac85a42afd800e1f6b869e1697bbb863e2bcaff4a3f96bdd379b992

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5d298e0427b4bb64460fb4032bd8d79caf46fe1975feb17bd1b1774ebc1cc25d
MD5 9055af90c7cd1ea74b8472985cbe9fc2
BLAKE2b-256 753fe2a0731055050193aefedeb0afd2860ca3ee572777081fc8bd13e18d1283

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cachebox-6.2.5-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 342.3 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.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fec06475360e0fdcac44cb095d853812d7eaf708cfa77de4d985785289870d51
MD5 0fad97cda49d088ad1acf78c7acd0248
BLAKE2b-256 8cf01766e82fd95b4374bfbeb76096c09516eba67bc40ea33d315f6e597fa4b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp310-cp310-win32.whl.

File metadata

  • Download URL: cachebox-6.2.5-cp310-cp310-win32.whl
  • Upload date:
  • Size: 350.5 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.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 53e0f9f940105ccdc85cb0ee0fff4c09c2ceb207cb89a110e8ad43a7a133e97f
MD5 e6fc71ed624fef30b1e8a06e4896a935
BLAKE2b-256 fc10d0896d96f140a8633beaa530f494bbc9437f2487c901d120b3506ea7366f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ff4b8cc8226253f7fded60c134346e0c8691f503afc99a2cfd4e8ca3c899bf2
MD5 b3d037dd1a53c459dbf53b25d24666b0
BLAKE2b-256 9007b226a968743eef4e5761102be69f0f13fd962ab50dff9778519ca84bdf6f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d9a09925a575bbacd874593e6a6bdab71b553f1bbb77ea18cb81902240345529
MD5 ebaaaed6fe5247c608bbdeffeb401827
BLAKE2b-256 10ef66266be93fc5f85e138ddf15f223a9cba02346822017d9412e5e58c40497

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 837cf47ce0603bb0e4b0ac577aec87bebb6378c8c794bf14e9648b4a904fd897
MD5 0e5f2a6ba1c122d68d54d0e8a00c08c3
BLAKE2b-256 1596473cbdf78e2a3c06ffbd1ca8fac0e4085d948eff22e4b4f910f3195ba5d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de88b5b204a8634f636001116fb6e6e80576d8e037b3403ae9d58d095b7011a8
MD5 7336302394545a6f3d53dce9c9d49a72
BLAKE2b-256 4cb3d8cd838e7d5905a5cc1a443cedfe3d3ee1e8b98acef3f53d232c03e4a21b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb804df409c620c9cd77004dcea9a2538531fd7d4f2528dd98dbaa3d67085929
MD5 fe25b522bad54434a5ee3028df30a9d4
BLAKE2b-256 df881ea0da1d70778146b3d88d912bea412fef35b502e4e35ba506eeb7d312ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 36a8f543ef94f551659952b658a62abe5d9d166488566639f230440ff672c1c0
MD5 f58936a9229fd67218eb4adf0575a71d
BLAKE2b-256 ea48ce979a4a1f3d2643119b1ec0e0f8d4145920f200c14e6942282e8134b47b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dc94fd51bf43545d8303f776a7314983cb7fafac829321adf719ede7f6cb1f3f
MD5 000da6221ed8b143add603031be7defd
BLAKE2b-256 bb5ea029a4e4ac310588d3de91bd1c93e9f1ce9352d77698cd5a518f4a3584e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 13bf1a1659f0235acdbc3b71031f55fcdfe18782fee77f1b4204cb7c7dfecfb3
MD5 723e7b489d6879037de630043dba3e4b
BLAKE2b-256 92c554a1f7a8e2e3822fc234507d583ab5c7c21e861bee72b240e590413d2caa

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ab00d999100ad3423066badbe3535b70c61576bd36fe8ea23f035b199beeff2
MD5 24962349a052faaa55c4d85e5cf14653
BLAKE2b-256 770bc981971466ff766358fc9b097df835d0159e0f520d21bf7d1445a4988143

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 40abbab146744db461088ce2911db539050686f98e3842e3022a62a02d43c846
MD5 c9cea27fae45b18ef0d8fdc517622e66
BLAKE2b-256 62f8fe1c54bad7b88c9d720ac36a5587ecf137b984b584c6cf4a4f06dff5e881

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8213208b6793c82f56fe6cce2c9d1d228912300c91ecffd5342c79f424222b21
MD5 ef8ad3f322e3c0c73871c1d8db6d7397
BLAKE2b-256 5b9608832130a0657da6cabbf945bb7246c791eb3b5a04c7fe3c4480979eba9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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.5-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.2.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bd310779e7084b5b9159b1f32fb9c2a1f6abaf62848f1752e7b2d07df8be5473
MD5 a5ea4e67545b9ebc271d622d5d719fff
BLAKE2b-256 08f78e7b1e119e8f4265f539eb7b0632bbcf99d1f645a66beb066e5ab575dc4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.2.5-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