Skip to main content

Cachebox

The fastest caching Python library written in Rust

Documentation | Releases | Benchmarks | Issues

License Downloads


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

What does it do?

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

Key Features:

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

When do I need caching?

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

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

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

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

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

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

Why cachebox?

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

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

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

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

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

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

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

Installation

cachebox is installable via pip:

pip3 install -U cachebox

Examples

The simplest example of cachebox could look like this:

import cachebox

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

assert factorial(5) == 125

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

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

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

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

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

from cachebox import FIFOCache

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

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

Learn more

Read the documentation for full information and learn more: Documentation

License

This repository is licensed under the MIT License

Download files

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

Source Distribution

cachebox-6.2.1.tar.gz (154.3 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.1-pp311-pypy311_pp73-win_amd64.whl (351.5 kB view details)

Uploaded PyPyWindows x86-64

cachebox-6.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (702.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cachebox-6.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (743.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cachebox-6.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (511.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cachebox-6.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (467.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.15tWindows x86-64

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

Uploaded CPython 3.15tWindows x86

cachebox-6.2.1-cp315-cp315t-musllinux_1_2_x86_64.whl (677.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

cachebox-6.2.1-cp315-cp315t-musllinux_1_2_i686.whl (699.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

cachebox-6.2.1-cp315-cp315t-musllinux_1_2_armv7l.whl (736.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

cachebox-6.2.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (464.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.15tmanylinux: glibc 2.17+ s390x

cachebox-6.2.1-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (492.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.15tmacOS 11.0+ ARM64

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

Uploaded CPython 3.15tmacOS 10.12+ x86-64

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

Uploaded CPython 3.15Windows x86-64

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

Uploaded CPython 3.15Windows x86

cachebox-6.2.1-cp315-cp315-musllinux_1_2_x86_64.whl (689.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.15musllinux: musl 1.2+ i686

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

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

cachebox-6.2.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (476.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.15manylinux: glibc 2.17+ s390x

cachebox-6.2.1-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (501.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64le

cachebox-6.2.1-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (475.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.15macOS 11.0+ ARM64

cachebox-6.2.1-cp315-cp315-macosx_10_12_x86_64.whl (453.8 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

cachebox-6.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (677.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cachebox-6.2.1-cp314-cp314t-musllinux_1_2_i686.whl (699.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cachebox-6.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (460.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows x86-64

cachebox-6.2.1-cp314-cp314-win32.whl (335.1 kB view details)

Uploaded CPython 3.14Windows x86

cachebox-6.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (689.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cachebox-6.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (476.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

cachebox-6.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (501.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

cachebox-6.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (475.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (454.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cachebox-6.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (502.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

cachebox-6.2.1-cp314-cp314-macosx_10_12_x86_64.whl (454.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

cachebox-6.2.1-cp313-cp313-musllinux_1_2_aarch64.whl (629.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cachebox-6.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (478.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cachebox-6.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (500.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cachebox-6.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (472.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

cachebox-6.2.1-cp313-cp313-macosx_10_12_x86_64.whl (451.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

cachebox-6.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (690.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cachebox-6.2.1-cp312-cp312-musllinux_1_2_i686.whl (715.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cachebox-6.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (500.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cachebox-6.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (473.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cachebox-6.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (500.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

cachebox-6.2.1-cp311-cp311-win_amd64.whl (337.1 kB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

cachebox-6.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (684.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cachebox-6.2.1-cp311-cp311-musllinux_1_2_i686.whl (730.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cachebox-6.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (471.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cachebox-6.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (500.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

cachebox-6.2.1-cp311-cp311-macosx_11_0_arm64.whl (423.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cachebox-6.2.1-cp311-cp311-macosx_10_12_x86_64.whl (447.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

cachebox-6.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (684.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cachebox-6.2.1-cp310-cp310-musllinux_1_2_i686.whl (731.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

cachebox-6.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (629.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cachebox-6.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (500.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cachebox-6.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (518.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

cachebox-6.2.1-cp310-cp310-macosx_10_12_x86_64.whl (448.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.2.1.tar.gz
Algorithm Hash digest
SHA256 44a590cd09723f36a01c4cee862e633c6e15d15d059e14cd655e395560bebe1b
MD5 37447f146b3e97f1e8da19e16617de60
BLAKE2b-256 80331deba54ebdd38b121d1b3bf595aafb2dce5eb93688092e5284a402c91b2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c1c5ed281b5dc3221f8a531a3ee4ba9de7146c0218d2ab257c7746029cd95173
MD5 dd18e52666e44ab5a899d07ec22efcc3
BLAKE2b-256 46c17285c864a30d2771576893923508da77f5c613e5ae740a8d978e4ebf9ea9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbfed95dafa92cdda1c128ba0a4e564bee363ab44f4a90dd34a6f7f1accfe612
MD5 8b41f7f82091646eaebab47037f7dcd4
BLAKE2b-256 2ffa2210db8dcf5723f44944964d178e0e12f0e21c05661864d672102015d7be

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 56029fc57f7d8778862d72d82c5fe827d5a3d3b406cdf9e0df04a7d66a6add62
MD5 a6d8cf6a23fd34b18f99d51b11dc5ab5
BLAKE2b-256 ba595a4ed8f015c177793aa01f96c9dcd0011b2d8ab58d7a2da99ff7058aa995

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4bd4bcd0a0525605cf1f42011ec4bdccfca5016dcbf06a0ac36705cc2394fd1e
MD5 89b874369c8f82f3bd85891786d2913c
BLAKE2b-256 69cfb0399ca39decb27fb505e299e77bab9ebe22210358b05c2afc6f8b4ca66d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b230ff55f846b56ce79a7f69f8c8f92ac8c73819a23a54cd0cea93ec5643a499
MD5 2f0d28f81a71adf246789e7b12833286
BLAKE2b-256 7795ef4532fca9a2515e653feb7ddf6c3ad980f4b44139b2f71d9daf63dcddfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c36e8ede0281ad1967e3b1dbb3f90e6c44802ef42f496b9c19adcf7d068022cc
MD5 9e56dddeb7e4c5483f5fca9227b4db38
BLAKE2b-256 4deb8090cff411dd89bafbd4cc20e78173182b6186e5d3aad7c3219b9386a456

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56fea4b619e4b6f7e47f52c1d8204faa0bf380aa8b891e990182b39b4417794c
MD5 120bff342e2e9487ac02386ce440408b
BLAKE2b-256 6c3028d230e971b20756967dff3bc34123258f9bebea5153168b007dc3a3313b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4de8c283b6477220dd9c7ece2a3679ee0470b701d22786855bf9d20910425a98
MD5 05d92c01f4332d5bd85b3ad595ffb947
BLAKE2b-256 433796ebc45c529e52017f57ecf35f3ae849b7901798d4fc91eed98849ba8560

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8033a230f41285f646598c262bd86a7319a44191ff3457869896dc1ca25668d
MD5 8765e1c9dccd63fbe9700a82b740905f
BLAKE2b-256 ac9b62ddc6ca2ae2b01a4b4e70b317572951f777e7403c79d2f49c4b1b432bb8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ddc69b4eb7e7eb4b9da0f407f1b9d9d37db6b5ba3d3871b0f12304dd0084e99b
MD5 61a7aba75a488b0eec4118fb2a28a09a
BLAKE2b-256 f5ab3a79f4cd5367043f3e9ba7c2a7deb95f26eddcd05359624dfd51cf46ab04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 70ee6352ac3cdbc6ff3d5faed01f8ef2bdda3049475098fa86307979d1aa5db5
MD5 440ddb21ca5734a8c1f680ab343f87ad
BLAKE2b-256 b7233277ee3e1d2de52f828d469315ba9c31bd4c321bd0fc487a2b395ee212f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed318a5adcf81025a40d64d91eff5bdc22bdbf5c0d45429d30e50dce7d8438a2
MD5 a1adaaeb3945584abae309e5a5bf1b1d
BLAKE2b-256 3a98714b71bbd778cb55bf0cf5df80fb0f77f3db444ab595a1dd7b84ae1ae81f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7559f1141a617c89d6c51b8eb49c6017963612b4913ccff57c1a50dbeda77bde
MD5 c87741bea2baf1450b8f08c3fd5d4ce0
BLAKE2b-256 1423d02336a15e22ddc82da2da4a24783d4302312aaeac23a341cd0e54dd1c3b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.1-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 6a0de8f806a899a0f74f70b18194e10fd79bb7b70e876a1ab0f1928b6dd3ca2a
MD5 aa9ef64d561d20ff2d0e978f8dbc85da
BLAKE2b-256 ab4d89171eeffc69d8dd0b78cdefae7686eb4df222b8fa84482a73550364c4be

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.1-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 6c2c585b8f564f261018908d0bdfef1d7ef3bb5213e9a7ff8a574b2c9a830e09
MD5 524e18210a375685e6b47551d0fe16c1
BLAKE2b-256 fc071391924b5cfcd0c1a90eef26034d7c57560b852623de0e8c85fb1f447eeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bdbb05eeb284113dc47f6d3cc2d4b0bceedc7f90f7e4efe51ded850cd71ef8d3
MD5 3d7c13ba5fb31145bd5a57960a8c9f23
BLAKE2b-256 5fe6faba756bb7b51063e9e8b0afed603af4c70f1f8e023487bca52369eb5207

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b24fbb2494888aea22bd69c077cdb262a861ce028f5f550d63e7dda249a0311
MD5 3ba3ff0b569ed35b0c5d8d16b2075b94
BLAKE2b-256 030c97a42cfd7a7154c6377ccee5907f8530c085aaaea591f417a2c2aaf4a446

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e5fb67d9d6c9711a9862cc0fe13eb83025a758368ffffc518fc1891de8604d0d
MD5 d0831843b99dded38b86c92920911c09
BLAKE2b-256 f4945515fadc3ab894c68ace7c6d30fce3df29df2eda76d7e8da1eb8d3f3d4d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0359deec96287fc6443e06787df496eb2d3fc6a57a4427039ec2baf82127acc
MD5 9c08bb1f58a8ea2834e19367f7913152
BLAKE2b-256 ddb9a58185cd6cdd8c2f63745c73a3e5105a09983524259bd778f612bd745b99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1fc7b13ea9dc318b7121b94c2eded1702e1aec4b1a6aa8a2512df5889175d57
MD5 221a980154dce8ed152ea80c1b244760
BLAKE2b-256 e3cf2e4abb877eab7c1cd016f4ae52102cf02eebb7e05995593f7cc6cf995477

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e5e743ed582653228c80acf492927a80ad17a4ff0e125bff9b8ff2c5bbe12b02
MD5 2965c432f726c46f5ea01e90d8244c53
BLAKE2b-256 c62d3fffb1e9f80801660f431b2ba12dd1626e901c061dc9bf1e0774fde40550

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a137acc2c4fab9959c0c30fdea55da932de5fc1180ffb7d68c543c2a89356175
MD5 da41f7e5bbc49ef9765da22c56296fbe
BLAKE2b-256 e7f5c054f603b12602f7ba4817a76be253a2d651293cbd46e1112606cadc5bd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9cece84890db1deeee0176d733ae7643f6d898b89e2227da9f64d9b1b1bd6a83
MD5 59bbab1e352a7e5f8d36b0d57be81b7f
BLAKE2b-256 279aa616b62ad7011acc79e58f37455757440ccb6186fb7d979b3d1b10046fce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83cbe467ea40336747dfaf8df01ffc3cd11845757de73bce3a66811517aaa7eb
MD5 aca7a5f4924c9d60135b2ab9cbc870ab
BLAKE2b-256 1ef84c00719e3ca6ceb3730c1f3696036e22119f285949c49caf22494294d384

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9862977fa282a21e31be1b11fb5fba450af56d8570774a7c8b2d6013a356529f
MD5 e2383477b846dde86457ca3f14da9622
BLAKE2b-256 42a3fa79f82643034bf7f018d3ceb1542e50c8724dfaddf2ee7d782deb378757

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7563de8452f009f2bef3aa7d764019658fef5197ed4d76c0bf789fb3ec014595
MD5 4c26ff8de252ad43598fc21d6479e457
BLAKE2b-256 b22f33654e29cf6ec69e46903e5886b8bc77268a5be48ceac409f201e54e472c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9d16c0f40d374d6c20364e205f4aa99483a9abbeeefedf786f4731b90706e245
MD5 aad33fa9c8a0c76ae0ecc194e942099a
BLAKE2b-256 53bb113fda372e33dc25839884427babae20db7e4fa4f25388fe3e1f756828ba

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.1-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 40b6ca88d48b27933ea75260dd1b9566ffb528f9c3052f7f3a99a1de9c166752
MD5 209013132989b69e87c79c5b961430e8
BLAKE2b-256 7e13cb771bfc3d68fb46ec8e0287349a5a025ef02a919fae526eacf1dbf78a31

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.1-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 a11abcde59c8f4c9a725818b2ccd65360adcbc0c62ae5d9d9f4dc537c763eae6
MD5 c7057fdbd78294984475b00d2b9df26b
BLAKE2b-256 aadb8ea8b223263c4ea40ed5ed7ac4c274bead7db5677525906c1fcdba0f69bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3bbafb999ea67b82421bea49e09d465e4bf88ff86971f326dc0a6b7a4d0e1d08
MD5 f0b8f1449f4903fba10fb33e33b85495
BLAKE2b-256 9c3a9fdd308e7ac51dcb26c182b7c04dd64317ed6a9280639f974dd48631c56b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f3752f05b154f9f860e6197f1243fd120bb782dfa42eec13dc76df6eaad93ef5
MD5 9ed517691ab72ab3c43308181d16e9e4
BLAKE2b-256 0e1df0dc785a9c3a56cfc18440bb4b34747e22e0d24fb5eb257992afdbdcf438

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7fba119b5ba29f80657136cd12d1496684f33fb6b830eddc0f9cbe1cf6dc4ab9
MD5 2bd5ab71c3adc1aff0d7d4da9d713665
BLAKE2b-256 d8ecde345506750ffcb124e2b3c1d79806939cc90118768157a8af1d1db58fe2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 427f01158b0914c7bfce07b46f2ffaf0f95766d01b6a365111cb9e3389189f3a
MD5 11ae28496033936595eeb76c3e1c3fec
BLAKE2b-256 f287db2064f121b9056b5e17827887080679c0229d1e8e8bb90f545bf27be34e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47a0f10faca6a19d9503948e001f0057f34757b88dc7d4c40773e0d309d6d416
MD5 cd8f3977b2566b2739cd53c160a28e70
BLAKE2b-256 10457edecb98472f24273674fed91e06f9ddd3a7f4b267d8aba12fe3400a235c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b73fbc0986a0dec289664310f5aee1bb519ecb54e065c2be1b01daafb47e5950
MD5 c662a83f04a65fb5ecaeb3c7c1e5e835
BLAKE2b-256 b98e73a066cececee3818e9ffa1b6acc4fc683acf4b5d42f82747edb1882dda8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2ebb0324eccddbb679909eb6982111fbb47ccde9d97e02a533c838b4723da065
MD5 b958ddf659b17e0949f42d0b4ce7c83f
BLAKE2b-256 724246d606b70855a8a0d49cbcd60973d3dd6420f25d42f62dddb4cb3647f50c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a07500ed42284b491d6ac652bef30e3659d9bd873ae3f9935252098ebba80e3f
MD5 48dcb43138218dd143177184b737a6d1
BLAKE2b-256 10ada9da1f38b54475a0fc6a3ad806d449ba740e6af5cb6c5052d19ad440d65f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01226497b970f35228f5c4b068fe17c058af26a7fc5db0528aa015265840dd3b
MD5 944cd2fd96c533d7c2b051082f0c33e6
BLAKE2b-256 5d024f6cf5bca8ac4bf0985377bcb0f3b8f2011e7f12bd09d053627b51d6add0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 53dd276c51005803719c07234305890d819c42dc4e41c13ae8fbcfee3231b318
MD5 1f8a588f17eaf6f30ad37c69f5429daf
BLAKE2b-256 9c21fc613930c93000b62f7b5f169429188fcc8d1ee864e110a2928485097775

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f40416c02e3992310edc67bfa5a6bacbe6523ba97f7db9f0ed65e3ddca8d1a7a
MD5 85623f4822d268c12203c425a372af7c
BLAKE2b-256 6534154aeb1f2c73b46bdd58003aad4e7602522897c9702fa3a46332d3b938ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 82c41ad78f7f71fd77b51628844fbef5d7e0aeab517683f640b93d1cebb0f205
MD5 e72c8a44de43974b337aead174130f95
BLAKE2b-256 bbeb6fb1d8f0e845e31002980182df93636e7958a028c2c8e5e110ab1eeaf104

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 eb4b1939bc7a7a7fd2c24c0449857c44e5f82696a07f9de288b51b90569d77c9
MD5 30b8d75e7fd03b0ff3b3a32acea03aa6
BLAKE2b-256 efd9e58aa49100d98b66c82f099e748e199af3204d053c083d44a9623275bf18

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2549f43b0ad75a2d389ce2a54d60d137c779da19f048b64d8c00dcafd5b564ea
MD5 4cd6cad7b224d08fcb622b002f0fce1f
BLAKE2b-256 29c6d22b08d550a40767b6a972ff1154a9adc8d9c6ddd303c3b138c3c3453ed3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 352c866b5371f694f4fdc330c639d73cdf878b24ef730ff7f098a338e3294c39
MD5 f6ad21fbf648cdd12b60f58739d4b215
BLAKE2b-256 fdb395b79046500c065bd6e289a6d425c05d01333d7e6d6fb262ac28b8ece281

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f79fb1824f24f4dc967bafabb7a695955b99752fde54655fa107afd4181ae75f
MD5 c0364376c8ec54296400012b8cdba745
BLAKE2b-256 c0c4f49121b460d45c52120385f4ff3678f847a7d1208a224ba38d1271d7c70e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a71dd81a479c9edf5c5b0bbec8deb7efc38b84cd339e9425d2a79e867a94f68a
MD5 07198eaf2c4359b846c5c38f0d968a34
BLAKE2b-256 e5c49a2c35d62f3a6e6404aa078635ee228f7d11afcd521219e3915561012f97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50719f7a421566c2788107636de4c508f7c4a9868ecc5c5115f33d2480257240
MD5 e81e1ca22e9db868bc11e26708089747
BLAKE2b-256 70c5664bc465772d173463abff78e9ca52ed9fc7eed1303d29076d4445b85d4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f37ba087593adecd2c7ffa89736d699f4a13d2411003346b19634b87ece803f5
MD5 a40246cbb090f2c55eb64ac66b85c133
BLAKE2b-256 95ed09fa836ce0affb1b7b12704f2aa6257e2b7719e383d67699f468a050b0de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 12ef10408a0fb363104f4376e06472c83c9b3db8ed1974c124407aee0015ac0d
MD5 197c7704b07af3e15e26054b79f0fb6d
BLAKE2b-256 e51aa76d9ba74a1fd1dcd74897735b6347f2de434016bc3a04ea5e14f7774f45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b68245d0697c8e8dd7678bc20c5de47b938b555537f8d5a4f66941fc289ef312
MD5 4879c8015606126e4ed241de58688b93
BLAKE2b-256 091cea51442b2db1e1d95b2d2fad7a888cc356df60a2a765fa55ac13e38b7e0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f99a913cf2914d9e5079e38cefe80dd541fcbc99bb94d60053151b7830b877d6
MD5 c9fb5bb7e98a5de2780f7ffdf7acd225
BLAKE2b-256 8e518228a8e9f1afdcd805e7d636b7eb57bfc042e4fb193840f830427ebc14c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b8ede7a85255972c6315377572ca0287e5fbe65e8a8a19596f8e311e2f25bb7
MD5 04f207c40a2103cc69bfff567c4d8da1
BLAKE2b-256 8f881a7442640edf1928a8526e6b394878060683b44d3cd04014b43612a0a4d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 57b52136bd39ece63fd1e2487af6989e61f9bff85a7243a58cca622adef12c1f
MD5 e77ea2f6c4b192bdc57b06264d48d59d
BLAKE2b-256 ed70dae6d4633ca20aea7a224566f6594b322953116855a17a408a9e2f88aad7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 221e9373f7b4db002932eae315b8768548c811dcc87e10f189145686fe822c45
MD5 231d2a6d69a2efe6b555a6491c815118
BLAKE2b-256 4f85a452e6ff98d046558bac567face2fa9fccb46d5dd1cfad0938ba03c8760e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3e8b49c5ae69792bf40d2fa5f6ecaf10a6aede15247246941e9d5e4ad9892069
MD5 513f66037f8acba5949fbdfb02b3ae44
BLAKE2b-256 67df7bc0ac029a1a0b62c491b33b650abd29731225a3a49b4b01117ddb288b17

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 923e1a58673004a71c6880a3716d966227ded6598647d558dff8577b2bb72f0d
MD5 99cd5f9097c5f7357cc55b2696fa4a89
BLAKE2b-256 f44a39323aa749934064a602e949f752766d23f69a24fd23d013cad013177836

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ffdf4d6293d3882ce8fab89ebb1d857c277c060c45d6087f8b652ce04288a5ef
MD5 197b5b95d48fb5e831d062656646e41c
BLAKE2b-256 8a93ef4f98920ec1db7d6526e39a2dbef2fa9e6630df93f3d2c0bd2f409a5d60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf0ca8473b6cefa506a9c40b9aa4ad2c92744c41d2254a2b1ae5eef3817d3587
MD5 395867dc25a47ef6f98a72bc59389ad6
BLAKE2b-256 d3e579c78c68f832c3bb92f51d55decdf36c8984abf8177a50137dbe0b7a3130

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3ce61fef1db28fdaea6d51a6b9581f4ffbe78e4de05932fce14507be1377fa78
MD5 bf88876dec070f976148dc45e34cebc9
BLAKE2b-256 3b5079ad1efa29f4bf9da3eccdd1d6b5bb1a700e1898fb8cfe4a6fa2e1886396

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 056cfbf6b08d65259db052bc31d7e277a0f68b07ef1cc05f0772da23004ff87c
MD5 a529c3c1c08b45d8cac6ef59dd1096de
BLAKE2b-256 c14e3a8c688c28b87b867b524e908bd0270117322ad2fae66dd5cf2c9b6e5901

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ad64303a78625848d5d88666360358a941779ceaf247f0e567d918fdc452ea36
MD5 7df037a77e5219c438eb8c598f194550
BLAKE2b-256 eda7bfefaf5b81ecf8c535f308852b52baeecb14628c5aa37ba259dcf5da43fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcdcedeaf1c3d373a599b757d70a828aa4231b6d3c49bd861907e5deee526fd2
MD5 91a8957171cd970798559f2ab41f39d5
BLAKE2b-256 c848f7755432983cc04e80f7193dcc06b233ceffd6a83236165b35a12d1b5695

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3eb0d165dca997348cddf0cdec316880608a698f05563b370385a96220e58db0
MD5 11c3623f7517f6e65adf0053782bc1d9
BLAKE2b-256 02e01f90e73f2c42ac839aea49dfe43839ca727d17345413bfa39a6f37ad1d7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 585a336a58bbe326621fd84c2c92e28303ebde2c177e52649c4086efd0f80640
MD5 2e0955292ca97c26c6381eb4ed53ee4d
BLAKE2b-256 2b394cdc7ba059e28df6bad5a05c6af2b7469d61a61d423a909b0bdfd811121c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 153c43f5984197e17f355569ff7581f514612dd731e5f9ae822f072c10b1b5d0
MD5 70acf23bf2e5f3433e3a66c06c722627
BLAKE2b-256 43ee9540ca22cff2f4e61ee68fe326e9e52853c66a9de7d965a79ac5dab841f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3777645e34c90ffaf4790d48ade81721252438c7a6267a447e222fa7bf15748
MD5 97be6b8435b021a8f04db12d3fca7f4e
BLAKE2b-256 25a72b9432e3208d1f3d4433e22ae11053d549a78b70a6e2b098ac6a7ddc0d46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4bf1cb848fa9b424337cd859a4feda08254376d371c19cea862880124fa17330
MD5 2552f8dc7d30838cd3c6f1bdd4783774
BLAKE2b-256 270a98d692fc2d5bc6f8480f9cdefd3d152ab63f55503f30c054ed672b744aa6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96c3c0777ffc305dedb89eb4b6fb860c8c82756ff0960c669e1712888bf1eac8
MD5 70089284f473cf2c8915bfb5c7fc1845
BLAKE2b-256 41faacc1c378f80e1139f662b494f09a37fedc609c573962e49d75fa3ba51026

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 946836d4b6cf4fff1f25a3d85617444acfa7cc7ecdd87548224c33e8a63cafe3
MD5 018f275577bee632490e2a358bba4736
BLAKE2b-256 b8129830cf4d8dc8748a117f4a503d5b330e18c8c173c028c72c7485b7b77c27

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f1eb31866f886d4a2ff6acd7b304d083f25d1e982f7460b56f3dbd1b5d8fa570
MD5 75b5264ff0dbe83b03c51cbcccc3ba0b
BLAKE2b-256 b0fc17cd5dde221a67ec1eb211446475700a7fc4434e9394ecf5990af7f27b4c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 470154cb0bfbd6b3b23f4885cf257eb2049599b898588834c3cb046b38376a42
MD5 9e978d9ca55c165d956a8a594afcdf23
BLAKE2b-256 f1226090e3a23de21f782bd8c00e26220ab117c7d30a1189d4aa660124ae2ba1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b94ad07ce83d1c080b7485086504644b5beeec2d0a5f7abeafe0e28c2d3104c
MD5 25ee9d5fb279526e93736814e9e9064b
BLAKE2b-256 4510ed5be932836e0327d936072f11524831f9e33c8af86d93978df859905395

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5fc023dbc0877c1bb194fabba0bcf471aee63ff97aa43224f01ca9e4ab188070
MD5 0ab69be706996d729da4cd5a28b9e8ce
BLAKE2b-256 8fcf9b38853f378d0b1843d4a41cf78c1db3f58de113a1d55febe1d67cba3f5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 32674924b56e2f09de73fd4b04b79d6a649f33551e05845e0a1dd50b04885c71
MD5 eeb71f649da12c6d187b91129acbb82c
BLAKE2b-256 355a18128cbac1d9f741bf027302e0de6de1cd472da7d0c478f5231e7da965bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f454e37d800d14efb8b77008d772f2110a630347457f5e42b7a962daa16120b3
MD5 b20c52295d0af22a1343adca0b561ba6
BLAKE2b-256 9341b0ad3063eac569049d0ccf513ca94a847f9bde1f0e5f271c787a578efb18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d87fcf3559a5043eff2eb92a97d2eaa7ca554e1fecc8ff94578ac5a7efe9116
MD5 bf6a8bc0bcb3540b5854fea78b28ef64
BLAKE2b-256 285a9d6e8094d81ece4cc9defe33dfa7162901e237342b5e5dd1bcb8f421c4dc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d46d20e53b0d2ff4c4383dda707faa4ebf967d4a91c933db865ff24a9ab05070
MD5 2275aacbcff691eac255623e66f5416d
BLAKE2b-256 43c150470b39eba5059e11b9b698a99ea4027c55d282b8727f4fa7b43659adc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 91db98d6ef5c0fa9d4cae17b8fd519b2b8c879c9b7d5b9de9cea9bb26ed71acd
MD5 d5c25b4d668f4040fe852ef92a96e75d
BLAKE2b-256 9612285e2cecdba782ccf7a8d78bf0f7e0d8af678a708cb969dffee4ff0ba60b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eebc2421ab8b1bbb0d430725c50a120f6d5491eab58a5f82dd544031148bbec7
MD5 df294fa6b01fbc213375064ef945fdde
BLAKE2b-256 f50bef9418087881dd5c557d7c7a8031bd8b42b8fe68e36d99852dc9968b419b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2c2d5611133b56165d552a7e671fbcca86de40d783ff0f1a4873d63e3faf41b
MD5 ac4961c9246484c1160ff02966d97c35
BLAKE2b-256 e6ad1726bbe9fa0ebc7fc0466c2efe8e557bdca38e60066261e923d782423883

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a3fcb29b573a062cb8cc5415a674491d21b889ed1d20a2cc99ceeb9e561a5b53
MD5 724f654c5ab02fb3336db5b6d5a52263
BLAKE2b-256 b57dbd9739717d8541cb456f20e963662c04cc656fc3d99cc5edee95523d6311

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d7d663099f45e6a8a05adcc1a0f6be2497f49a7b55de01cfa6bc4b3391e9877
MD5 4198bada0ed1d049a58b84b2e59fba94
BLAKE2b-256 1b9d97229fa3e000e5be637fbfdca099e44e3c8f5cba78143069448586fca89a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d488e73661d28de97be0990436f961652c6280c6c460641f7c690d53284a2132
MD5 03f4ee6fde3b8fdb98e490c8c66f2692
BLAKE2b-256 e5cbed84cea782838795f701eabd77a2a72cb4620e50a0ab940d11c44bb37ac5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a71e1fbbd435434b4877d51aac8c41781540160773371a52583a6fb66d09d0e6
MD5 f3bb768987cb234ab9e5debc4c1668ce
BLAKE2b-256 bb5f80323d773e9550daf8a8546e255dac7b72f4ec0bd958c0d89ccd4da70734

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4337637aab8c71b9d2644cd5d6699f72e02cc55800c2128bed15e4bfbb60fc0f
MD5 37df7ed4e5125b3d61de86bd7cafefff
BLAKE2b-256 911a07044422e057a510b42897d110a45102b61e46e550662898a999eb97ac2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f173027f0240e961b77ff82dea1c2712eec2945f6456fc360e93dada039a245
MD5 ddda81c0eb4a3ec505b96be4f69b39da
BLAKE2b-256 4817262fd5444e3bc9aaaea7dfec10bceb04e499ba841591507821b14205631d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 649582f86192d5d083e742b45f887d28cb7518b86e98cd8ee48f007dcc6eba1f
MD5 92cd0bad5f42ff4f446421615d0f9e42
BLAKE2b-256 e1c0de75d621b0e475b438984d44e739af6ce7851a18653d24f2786bbe16108e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 35c731d90971e8ff729160ba4d2f65d28c32a35bce37dd67c40d99b76800e364
MD5 ae18b09b6dd4541a185258598f5a794e
BLAKE2b-256 d4c4ec6438bfb0db86ce208e9659ec6538ad24bc1144e004b5a57d9318ff3c41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 95b6d6ec338bdd2dc6bcbb52d0d20ae32ba59260df7e601337dcffeb4ffa59f8
MD5 d32665297034f9c9bbcb7443733e7cc1
BLAKE2b-256 d4334ee04ce2c1591c2c72fb5bf7ae5314b3d4b2cd5c5bb5d0779de6a9c9ced9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2679639f777de99bf04e5d72885ef20bb6d5756068d3a5d89b934d07aa7b14f7
MD5 e4ccc881cb7de2f37b4a7eb5c668074c
BLAKE2b-256 7d7a534f2277746e2e8679f4342b8436743520ac61cbf74f01dbac4bab0a5a78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6dcbd476ecece8d2831b018f21129878f6f7427804f53275c3313dbbf3893fd0
MD5 53432b1d99f86a0d9c7ace41be9f77e5
BLAKE2b-256 e7ac166683f81223ab10cdae0622be713ab2df1b5d7bb46fab92acce42feadba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 294a6c345685ea18a9e596dcf2aeaf3ea8ae5b04e495e016f92b07f0109ec5ce
MD5 c877515ede35eaeaa34f5b8bcb5212fc
BLAKE2b-256 4dd230d7a7a04cb4c194e8292f247f5d3c15da70695b0f31b6484b00b5d8b748

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 21b717afa1b94b97b65a4982c8520b83144ad8a24cd257ee4799211c440ac8a5
MD5 0d19590607a0bd38f638676b9902205a
BLAKE2b-256 04421b4b52b6d916425fd23d800b0c0709205308f26031a790ece48c0bd24e49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 994230c25fbda6db8a633721cf7822e0b7e5c5ea7fdd3b4b45c2d1e3ed8e41e3
MD5 c002d9b4f2eda237f64926a12065f2f0
BLAKE2b-256 33ed22cdfeae937c02d83b1b1d1386e33295146b489b92661a868d414041d357

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a28f60cbebedaafaa652bf216cad9b2bc2b1e7dac6b4dde7c781e9588b69cc76
MD5 9c76bb858cc419c908497991bb73751b
BLAKE2b-256 5d8fd3d0f7f6f51b5f09a9a63fa2396ed8a243c8fdea96306164f31ed4624d7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb5505fab5e213469d9daa56d948f0ec769d0ec2bfa87d1699604ee5f1e4275d
MD5 c9f40fc44de6b291ca87193cbf53bbb2
BLAKE2b-256 8a154b026e4a3cc27180fbbdd2eb72448eefd900435c08a03ec9505ec177afb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 369ad64dca2dc1a8371e56a457b565c65e063bf068ffe94e7efb643a95b69b30
MD5 6508d920287a025c1de3a1abec51715e
BLAKE2b-256 1bda6157cff2f057d132fd1260c07a36d2fbfae3dc1774ec852cb63afd32f765

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 01b2a7c2d00ec541cb9addaa62e02367872ee5e09f4d4adc488bbd35c60e4175
MD5 1e09f3ee82efe4a6bc85e85b3d0f2ca1
BLAKE2b-256 e29d4375fb770e303dea0eb8d34e8cc53acd6ac6ffc09d617d0837879855fdf1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 df689c3399c208af84ec8a5cfd5d8cd680c2df655e013399c08a3db2db9a76cc
MD5 2de080ea8a13d4b344514ccc343cb457
BLAKE2b-256 fe37e63468227e256b960ad5bca2ddde52585d696e99a0239ff53fe8cf756fa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 724ccf2143f755984143175941db1e041924fffd00ce3f761f8403a983679bf2
MD5 f34882d7772c2109500120d565f82366
BLAKE2b-256 8e38fb17c674cfffc5c6fd0fcac9d3576f56e42e9f5083708c788848f271bcc2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 421604d7e32976c30d80681acb113b857ef23392189c8b4d58e8587ae1fe8f2b
MD5 98df2df7209cd15486057f4c8358cf8e
BLAKE2b-256 7da7b8e5778a559339ce4fc52b77e10f646bb0bdb71e972e55efdcf0306baf1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 82e7e59d8bb1eb59d7c0859d818ff9ba08749f4ed017ee4c79ebf944f5196656
MD5 267ab062abc5b65a9fb1b9c7d05b31d1
BLAKE2b-256 e132350fb6d49f8cf6a2c2876db0ec0d64b5f5c7c61f6447c111e9bd10a3e6e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5959684acd16c5588fe059db5fe594fcb151e7c95175f045bc204f3d98a1b998
MD5 9f0fcd58dce8394a466fafce5f1789c2
BLAKE2b-256 1ad6d480b8d19f586bc1936c2561558d9a737cf8f8c0f619ced6181b42648f4e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d5614bf8599a748a153abd5c8845b349aa10776ab3ffea46ec4f35ab32701b0
MD5 4e602a8605aa0ea8bfe0376c7d0042d1
BLAKE2b-256 6028d14d2b99b8067d17b7f746ab38614f0fb8fc4227323b68365a39e23fcd55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8593b33fb7981e17e343514edcb5085e26be7649d6984b1c85beb6b9dda3b07d
MD5 0f3c1759a668213b555d128950877b30
BLAKE2b-256 e439dd030b0d27f3c3137768970fed9e1e5bafd681285def50986244e1be029e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1f1890d4e5c878353951abec963826a719c1a0500d5df59acaa5e51bc2c9f2fb
MD5 4b14dac577c382cb7b9e3fab416c3993
BLAKE2b-256 cacacf91f4e80b88018c901777d5f48ad86a41876ed6cf39e338a74a56a36739

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 877b797ff3218ba6a32b2acd7e6b579f44ed693e811a9f76fd2e2a5c08e195ba
MD5 f330fe9544e136c69e95abe5b79cbaaf
BLAKE2b-256 1d173d0f82ee65e0ce331396e23a9c15939256ab4142404c3b31a10343286e2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fef63bfdd2d5668a6b9c639930e87571dd276baff45c17bb4cdb1e78e3f81dd3
MD5 b723da4a3b818bb65aa078a213235c3f
BLAKE2b-256 e1f7f027a371ad9f850f1dd022e90c74d8228fc5624a69fe99b644c315a73a93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d4dfa197e0d3020fd652b245ca563144e86622cd71c8ef0c420e7c60ba306aaf
MD5 df6c1d9e45b178fdfdb21947e3a3f6d5
BLAKE2b-256 968b74a4e0c6773c46030647e638134db2e67be16c24b824c18828132b4c10b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db824757e1f4245e1548a456498da5fbc495f9ec4b096776f5d7839873fb60e9
MD5 4fd60c61f24cee9ce72b888bf3467113
BLAKE2b-256 f75f5a836fdc814b71635abd61642c118c36dd2c7f8c6c1c530712de0dfb4757

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce5d8b082982588e190580d2de9fb0d8a8e83f6d6099feb08f27b3c74f284106
MD5 a3a2ba5091bcf3df099d92ddd2f60449
BLAKE2b-256 6d4b72f7e2031b8d42b1f24810ec879b986ce35947199b6fff3eb2ef77dc7fa3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bffe41976c673754ae7c8ee03cba1ec86bbbdf46d32468234bc070e4cea522f6
MD5 c720737b55446205a73c96b4b87f9a84
BLAKE2b-256 ad7ceb4c69a22321866e2c021b8b0663cfda52862b1e8598989e0aa8a1e31476

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 afbb283c44981a42a06fe3f87d4f576467cfea4e55f5f61a074af4cc9d4e0376
MD5 6369872ec601a9a6a6b492eafc7ff37e
BLAKE2b-256 d14b83ab367584dd087c6d1f3696c1aaaa5cc9029be1f20ae9f3401b72e6040f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2cdd7c3d58211d0f3ed349f1b38b2347622527262193f92bca8803394d0f6b2
MD5 65a4a37c4fb6e81e4116152b025c54ca
BLAKE2b-256 29bbd291f71f8624e35e4e068e1b168e019e4ccc5def3c120a74b12cf4814e59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b1c08fa7976f44381258b95814ddcde13280695f689cc07d105173a3554e2f26
MD5 9484fc0e132771f33fd98019340554f0
BLAKE2b-256 aaa3d3d80869e9952be49a0d37d076d4205176a758b3deeba3a6aae4a4050f30

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 22992bdab8e45b006f5ba3de42f771f394a3e2fed133e2a618379bd8d11d6ee2
MD5 5e4af733b80889dffe8e9064f3e1d94e
BLAKE2b-256 bea6218305d7e970fba9f22699433fac72464aeecb9052ee4f3fc8639d787080

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 66d6355f09d231ce8b53bacd4073aafceb8d91f634c4590eb66c9a2c09bd7e6a
MD5 ed06bc65767050fa0ae7dbe90b93f189
BLAKE2b-256 e6219c2fabcbaaa99f30b91c89517b1f0d8be055171e273abbfd7fc124c4d3ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b02bb750e925deb93de79116be8943cd8a42b5cfaaaf301bc015740a61259c50
MD5 82e2e0cfd56e8271d1f7fd9384e1a7bb
BLAKE2b-256 429a1924222011fbfeec91e5d66bbf3705a511cf575415bd8ada3d24e8b70ae7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c99ea5f32ad98c9b01b741a9a95408ce4f70d8f6cb7cc7ac1fc210822d2d8cd4
MD5 533b145f548b607113fd9f57db2b2ec8
BLAKE2b-256 8bd355c2f24e69dad0e181b3a790cf3fb6d995c19b61db5392281b33aaca0546

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a345fa7c0a1de5203df57bfeb898210efad8a4b6c21666ada10aa0a92e6816f6
MD5 dcf89f638d3a2edc7d8cef0518b52f0d
BLAKE2b-256 c817f19c753fcb0425ea8d3e0762f1a47d8034d96320fbae6fc15d5f46f51dc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a60d0e8b8143502df70b44741e4429ccce5d2633fd4e070143ace58e95d31447
MD5 95247a81c794218538c9f88722b8e93d
BLAKE2b-256 51f387c99ad1223daba9b760094bfa539fad90b580dad0112cc4c8234a46102d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 983f1182977ba894139cf7a8554c12d261b0a936c241ba0b96e980efc886cd7e
MD5 04cb65b7d2df4c3b9ebccc387cac1c5e
BLAKE2b-256 6f8c8cdd99daadf82918af7cdb13588c29060b546dcf19a9cd644303e86c79fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9d2976c5de69b15fd4d1e25f4532af1bf989e44475f584de9f973647fef16528
MD5 1b1d88cb4d8e51e4f85be6325cf2e153
BLAKE2b-256 0e03ee6a833c16f4539debdede450b780e38d3829b388a0c9e5d3945e0a27ac2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24082ce5a42b611592248ea28753f5aff168e6976994a40fa59de8281ba340ae
MD5 481cfb99da601b9e35c26779ee692b0f
BLAKE2b-256 53bc0b8f792384fce78e0831a6da1fd4b84950654673b76439f990bd88a14fe1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bbbdb4e8d30b58070578738d23c6b0883846342036d3aafb6f1d5b696e37f63f
MD5 ed6e997dc6cd015f90a36c3746711e2c
BLAKE2b-256 ed368eb317c3c847111c4b06814de174008416c34c5d0b5b384c2997ad5af292

See more details on using hashes here.

Provenance

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