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.0.tar.gz (154.4 kB view details)

Uploaded Source

Built Distributions

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

cachebox-6.2.0-pp311-pypy311_pp73-win_amd64.whl (352.8 kB view details)

Uploaded PyPyWindows x86-64

cachebox-6.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (698.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cachebox-6.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (743.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cachebox-6.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (787.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cachebox-6.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (643.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

cachebox-6.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (485.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cachebox-6.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (526.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cachebox-6.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (514.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cachebox-6.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (511.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cachebox-6.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (465.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cachebox-6.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (530.3 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

cachebox-6.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (440.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

cachebox-6.2.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (463.5 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

cachebox-6.2.0-cp315-cp315t-win_amd64.whl (335.5 kB view details)

Uploaded CPython 3.15tWindows x86-64

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

Uploaded CPython 3.15tWindows x86

cachebox-6.2.0-cp315-cp315t-musllinux_1_2_x86_64.whl (674.9 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

cachebox-6.2.0-cp315-cp315t-musllinux_1_2_i686.whl (700.7 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

cachebox-6.2.0-cp315-cp315t-musllinux_1_2_armv7l.whl (738.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

cachebox-6.2.0-cp315-cp315t-musllinux_1_2_aarch64.whl (616.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

cachebox-6.2.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

cachebox-6.2.0-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl (501.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ s390x

cachebox-6.2.0-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (490.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64le

cachebox-6.2.0-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (461.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

cachebox-6.2.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (438.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

cachebox-6.2.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (487.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

cachebox-6.2.0-cp315-cp315t-macosx_11_0_arm64.whl (403.0 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

cachebox-6.2.0-cp315-cp315t-macosx_10_12_x86_64.whl (436.1 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

cachebox-6.2.0-cp315-cp315-win_amd64.whl (344.2 kB view details)

Uploaded CPython 3.15Windows x86-64

cachebox-6.2.0-cp315-cp315-win32.whl (335.6 kB view details)

Uploaded CPython 3.15Windows x86

cachebox-6.2.0-cp315-cp315-musllinux_1_2_x86_64.whl (686.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

cachebox-6.2.0-cp315-cp315-musllinux_1_2_i686.whl (717.0 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

cachebox-6.2.0-cp315-cp315-musllinux_1_2_armv7l.whl (751.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

cachebox-6.2.0-cp315-cp315-musllinux_1_2_aarch64.whl (628.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

cachebox-6.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (474.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

cachebox-6.2.0-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl (515.4 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ s390x

cachebox-6.2.0-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (499.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64le

cachebox-6.2.0-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (475.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (451.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

cachebox-6.2.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (502.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

cachebox-6.2.0-cp315-cp315-macosx_11_0_arm64.whl (415.7 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

cachebox-6.2.0-cp315-cp315-macosx_10_12_x86_64.whl (452.9 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

cachebox-6.2.0-cp314-cp314t-win_amd64.whl (335.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

cachebox-6.2.0-cp314-cp314t-win32.whl (320.7 kB view details)

Uploaded CPython 3.14tWindows x86

cachebox-6.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (675.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cachebox-6.2.0-cp314-cp314t-musllinux_1_2_i686.whl (700.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

cachebox-6.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl (738.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

cachebox-6.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (616.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cachebox-6.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (462.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cachebox-6.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (502.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

cachebox-6.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (491.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cachebox-6.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (461.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

cachebox-6.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (438.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

cachebox-6.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (487.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

cachebox-6.2.0-cp314-cp314t-macosx_11_0_arm64.whl (403.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cachebox-6.2.0-cp314-cp314t-macosx_10_12_x86_64.whl (436.2 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

cachebox-6.2.0-cp314-cp314-win_amd64.whl (344.2 kB view details)

Uploaded CPython 3.14Windows x86-64

cachebox-6.2.0-cp314-cp314-win32.whl (335.4 kB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cachebox-6.2.0-cp314-cp314-musllinux_1_2_i686.whl (716.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

cachebox-6.2.0-cp314-cp314-musllinux_1_2_armv7l.whl (751.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

cachebox-6.2.0-cp314-cp314-musllinux_1_2_aarch64.whl (629.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cachebox-6.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (474.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cachebox-6.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (515.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

cachebox-6.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (499.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

cachebox-6.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (475.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (451.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cachebox-6.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (502.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

cachebox-6.2.0-cp314-cp314-macosx_11_0_arm64.whl (415.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cachebox-6.2.0-cp314-cp314-macosx_10_12_x86_64.whl (453.0 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

cachebox-6.2.0-cp313-cp313-win_amd64.whl (347.0 kB view details)

Uploaded CPython 3.13Windows x86-64

cachebox-6.2.0-cp313-cp313-win32.whl (332.7 kB view details)

Uploaded CPython 3.13Windows x86

cachebox-6.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (689.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cachebox-6.2.0-cp313-cp313-musllinux_1_2_i686.whl (715.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cachebox-6.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (749.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

cachebox-6.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (628.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cachebox-6.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (476.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cachebox-6.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (515.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cachebox-6.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (498.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cachebox-6.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (473.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (451.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cachebox-6.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (500.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

cachebox-6.2.0-cp313-cp313-macosx_11_0_arm64.whl (413.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cachebox-6.2.0-cp313-cp313-macosx_10_12_x86_64.whl (450.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cachebox-6.2.0-cp312-cp312-win_amd64.whl (345.5 kB view details)

Uploaded CPython 3.12Windows x86-64

cachebox-6.2.0-cp312-cp312-win32.whl (333.7 kB view details)

Uploaded CPython 3.12Windows x86

cachebox-6.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (687.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cachebox-6.2.0-cp312-cp312-musllinux_1_2_i686.whl (715.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cachebox-6.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (750.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

cachebox-6.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (627.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cachebox-6.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (474.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cachebox-6.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (514.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cachebox-6.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (498.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cachebox-6.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (474.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (450.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cachebox-6.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (500.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

cachebox-6.2.0-cp312-cp312-macosx_11_0_arm64.whl (413.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cachebox-6.2.0-cp312-cp312-macosx_10_12_x86_64.whl (449.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cachebox-6.2.0-cp311-cp311-win_amd64.whl (337.9 kB view details)

Uploaded CPython 3.11Windows x86-64

cachebox-6.2.0-cp311-cp311-win32.whl (344.6 kB view details)

Uploaded CPython 3.11Windows x86

cachebox-6.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (680.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cachebox-6.2.0-cp311-cp311-musllinux_1_2_i686.whl (730.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cachebox-6.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (769.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

cachebox-6.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (627.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cachebox-6.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (468.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cachebox-6.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (508.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cachebox-6.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (499.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cachebox-6.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (492.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (450.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cachebox-6.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (517.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

cachebox-6.2.0-cp311-cp311-macosx_11_0_arm64.whl (421.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cachebox-6.2.0-cp311-cp311-macosx_10_12_x86_64.whl (446.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cachebox-6.2.0-cp310-cp310-win_amd64.whl (338.0 kB view details)

Uploaded CPython 3.10Windows x86-64

cachebox-6.2.0-cp310-cp310-win32.whl (344.7 kB view details)

Uploaded CPython 3.10Windows x86

cachebox-6.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (681.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cachebox-6.2.0-cp310-cp310-musllinux_1_2_i686.whl (731.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

cachebox-6.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (627.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cachebox-6.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (469.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cachebox-6.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (508.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cachebox-6.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (499.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cachebox-6.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (492.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (450.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cachebox-6.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (517.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

cachebox-6.2.0-cp310-cp310-macosx_11_0_arm64.whl (421.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cachebox-6.2.0-cp310-cp310-macosx_10_12_x86_64.whl (447.0 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: cachebox-6.2.0.tar.gz
  • Upload date:
  • Size: 154.4 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.0.tar.gz
Algorithm Hash digest
SHA256 a92f8ceb52706eeacd1a1c25ce0855483b164c24e58f954a0ca5deaa20c752e6
MD5 6571b3c4f273d664d177445f4b697e1e
BLAKE2b-256 ffc3785f8321d9d2f02e11f43b575ea7c0671c9d3e17c105b6fce8d030d55455

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5b68da235d705c49f3b31355a420b31fc47258b9013dfbda486687d20c09fff6
MD5 dc414cf754b9c6d30f1361ff23ccbac5
BLAKE2b-256 692b0d76d162f271d41f832b7355c84958d7a8210b4dc537076dbad438af6dff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37faff45ee0ccb49ba1671e372038306ec85076cdf41d5624f5e477653e727e1
MD5 3905f8290f33e2990ee5d67a1fb4005f
BLAKE2b-256 c59cae82a3e855e0cba641ae6824315b40fc8e81c00d4b34a3d0282e58cd60f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 78855a8b39d35de753b379b451e119d966cecaae58b409ca49484b2d4bfb1e03
MD5 dcd888cb75d6540d84ba987722066699
BLAKE2b-256 6c1dac7d65882aa121e5406db40f18264e01453f26751a95e80c448d865c3eb7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf66e82132e7649550a7bd2e13283ea55c2fe71acaed44e45583e6f1bfc8c9a5
MD5 7b4b72ed7c269d7e7a3e0511141332f4
BLAKE2b-256 d3c3a99c97779d4bf8bce792946faf052db3d4683bf60f4271defba61a6b8149

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3085b6583c90661659804adfd7f3017b5c8f0b60f46b4b215778eaa348e91568
MD5 b17b0b125cd64e18a82bc184a2aa31fe
BLAKE2b-256 79cb42dfb0bac2954e5479f895438ad405ab77f313a06fb8286e6a359b444f0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6bd6fe0d3184d6ab1a4be8795c01793927fd47ed904866d7feb7af83d265b56f
MD5 5f15f777309d4efaf20027302588239f
BLAKE2b-256 d0ebb50cd93fa37a725d13de8c49c5bc619dc0cf7357f3f0892857967b80ef90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 521d0140c336a5762d411611a63faa2c4be7ce1653ac479adc36cfb704ff4ae9
MD5 55e2e77cccda05083c39c35e403d2f8c
BLAKE2b-256 d2c5cb7148ab04aa8de3f92b3582c444dd789fe318aa0b35cef45f4711c7a14e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 69ae3dc428f4680d2318ecb2838998fdbb4e3e6b9956012c45dcc83f878ae10e
MD5 9bdc7e8ffd26503fc55a2f24f75491b9
BLAKE2b-256 6ddb71693dc2a3c56c42087c50fe12ef583270061b4468e56f904e618514f465

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4ebe8dcd5266f31252cd916ff87fec32f8b2be17063f44e0b45f0d150508d25a
MD5 73a9664fbf6f739f43ac78a7e9a2c127
BLAKE2b-256 d69d27ada38743649622e42d5cf532ce7b0e3dbcac74f4e6b47113f1cfc5a018

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab2ade6ea0e70b2845262acd0738478d17d97e8a57a85b09c394433611127710
MD5 efc3ea1982310b008177341b1a428f67
BLAKE2b-256 72c006ba579a57547d03e9eb56ba97d2e239515a9042614d8f2c5f0fc12de6ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ee214a22098ccf294c857d75ad06c1091d7c2d625e794b7e2f8584293c436c12
MD5 4333a3f60bbcadd98199bb84ac4f5d1d
BLAKE2b-256 49dad3b1d3fd946eac0de47b587c82ec98fe77235a115a52b2d387e682a49dca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e40e7a1697ca0cfb5756b6cccd475ac940644200b41fac1c848f60edd4c9b27
MD5 5c68574dc72ca30d7bb153421cd1f242
BLAKE2b-256 ce8e358bdaa8835f10dadf66b743d30ebb20bdbba26baccee419cb5ac4a01bba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ce3f24acc4e57a603665a3ca8c4c5e4dfc734850d9a5107d129238b808521165
MD5 af163a527df13c79e70a0274651e5355
BLAKE2b-256 a8de2ecb18f483f5035d3b7bf54a4c31431c0ee7ee929027fa7021db4cb23ebf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.2.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 335.5 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.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 1f2f11455b0132e7a623b276fc39fa34e2e691328af686a67f8a54ff195150e8
MD5 757b7753ff650f2ec2c1b44cbbc89cf3
BLAKE2b-256 710c1f74e11c222f0dfd9d1b390d003c76e3013339e0bd0b1a59a5681497964a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.2.0-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.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 a53ee416c12b5f6723884452c5d30fe3d3dfafa2bd94436cfbb235b14617be7c
MD5 1b12c3492714331ef3990931151c6985
BLAKE2b-256 600aa1db57e10b4a0f9447a910dcbbc5338675f4d972db77ce717360b48621c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 146e99ccc5618bf7a3eb02a3fbff16460d3814abb238552fd930e9b12c964828
MD5 61cb91acf3315d7edc72fd617d2b989b
BLAKE2b-256 71da85d5d0adabbc511d1e728c7297d1c03d2d4b985b23077636f730afd0fc0b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 65d1b4b26bfcfccceabc6c39270f4caf946c242e1a9ec778154db21e88394a86
MD5 aaf112b819f5c9fdbecb61fa24c314e0
BLAKE2b-256 478c7b7baf90f2d9451840283930e8047a7f3894957421ea6474883733a756f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e58eaf86065225b67eecda8179f8ab987572ccb0da88c51496094fa01986a597
MD5 ddd1d4aed32ba0d96c2936b2e4a912db
BLAKE2b-256 b00d5e3d2ee2ee9bc17869b18138948d02414d87d90bfa27c9fe7cec58bba463

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 51c7c3b234c1110e2b09eb3e9c8b3f62f32ee2dd81d06a0348bdd5ebc2b7f038
MD5 4d80bea7134854d09da59eeffd334a00
BLAKE2b-256 670cc00634f6e651ceacd36f41fd0751dad8802bd893a0ad59d8b4a95e5eefb2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f83cdcb10809a1590793d2a7c2992fa5bff77a841457a17ad3fae57f47a3e7b
MD5 65480344e9c26cf18537172e99c02e3f
BLAKE2b-256 0dc9d494b33b50177e96152b263e641e1db04c9ef98df03e771a1802489209a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6374f8471006bb5870e92d5bbdc9fda2e0215082f789265ab6da48c407cd1896
MD5 f46132f481974b5d9b0663c90110cca4
BLAKE2b-256 11b2e3db3f078c2b609876c210b2b749d19fc719dcbd60d55cf8e1c653d62ffa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cee76f2bdba8a4862da3c520f03691213ca48942f759b0eae20ea3d7ca1bd8ce
MD5 c4ec4d456abf07f810f385e591c325b9
BLAKE2b-256 bb710a388ab6992347a5f3ff0f57d464a4aec2dcac508188c5a6ffb1fa173673

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bc04b43c23ae168208662b9345563ee065deda3d340ac1b626710110c4a60d8f
MD5 b9c81e9af8030d5303650d87ddd9439e
BLAKE2b-256 ed37b89bdaff08d417ddf53c745c3387a2eb05baca2619f9b1eac13c8adda1a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14967de5b1845e091f8adbc73b3b9bf966b51d835bc3f997ba39f6c2a26534b9
MD5 6c4e2662428b6eae63b8b82562b27765
BLAKE2b-256 6a5e44b38fda15d6fd08a99f6c282ba32977034b3d1cdff9f1dfdbcaaefc7db3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b96f3cd55b9f907895ca087fca6cf2106369dc9bfcf7e109720faec044988122
MD5 876d0396fb748a688ebd142c90cc1ee7
BLAKE2b-256 0dad282d629809721e4401342958930a255a21927b208dd9895f2f6f3907b7ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aad7614827dc5cee105845caf09d7c4f92eb70576cbf1fecd8f6d15cbfb4fe33
MD5 42010a016420722caf09fad7eb3eba3c
BLAKE2b-256 88b5432b35b2bc30007f54eb5152c78f2ac0b2096f0cdf2ac39381f6f64c3c38

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3faf1c66102116c0192e41e30a13d09a6f4e1addc7596e2bff8538e526b9ecaf
MD5 80f521cd3a0944244032b2fad78c227a
BLAKE2b-256 a224f18289202b9a9433a088e9e52c0e8a0af6f17d1605e536af438c5d626d74

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.2.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 344.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.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 c47e75d4d5253c2bfc1c425c92c4aa358b7a0c8dd4006f9231ab3bda5beb77ad
MD5 ea2b8f033bc9cbe36f3c6fa0460b8d83
BLAKE2b-256 959d90c646aceb28f6978be9221fcfe07f7bfb2da11988109444f652a43995f8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.2.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 335.6 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.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 b42f5a9250c073762ec679472a369a10448fe8e1619abd6eca9497587955b094
MD5 a8269953e925aeb3ebe64250a9d15600
BLAKE2b-256 73c95f49b6ae1014eb5544985b5a39773dc24f0808185627aecbd60a144e8a9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0072190a2674745c6563d5ef76f1d657889a9b371b284632cefab762b3233bac
MD5 0dadf104d84df9a327253582a29d23d9
BLAKE2b-256 ae91f1a957a36ac7c41c32ad5c81a82e17470794fad1fc6b808108f55ad84983

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 23b5a65dca804c349eeaae70ca37c798d24107b2c8fc0366614c7b6a084a2d9e
MD5 afb8e8af047527f60bda03281de7c823
BLAKE2b-256 454fc4606f36d91ce0c52b5062132d077d3c335fc313d77cbdc69ec44460767b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3ee502eec7c728c271817cd8d64492e6580d639a07c5501d442f60e16b518fd2
MD5 2bab5349787f82fd9da4686e9019a4ef
BLAKE2b-256 c679aa2eefd3c886b327ff3fbef15c6db8bc9bbecbef6e154bf2543bf575ceba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98df712c8078024b5033fb7272c7fe01c34061e3a2d326095ec07de6acf5cf20
MD5 50da20968b9ffae6093bf7cd3f3b0f0c
BLAKE2b-256 e9649008faf841a0ee52ff7b046b711f6d68ff10323e89c8ad5575458e48be08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a91baf453e7e3380fceb70241249fd285c3e2773d480d536415bf9752e07cea2
MD5 8d88c5038c509260aa8116cfdb1c8aec
BLAKE2b-256 2fced683261ff999f61f84adcf13782336ec6a6f73c9827a98c79c56038e3bc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aededadaabd04d7bf00248e478a8b4b205f9763215e4947539869e56ae33e317
MD5 2339abc40da729af8d6b282a090874e7
BLAKE2b-256 8752fa913f75798f08d0d5cf18864325e83aa38cbd54ff506b71b26f7054ccb1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 037fc66927326355b2f2dbab3275e9ee38811e6ecac30fc06cfb37b780933b77
MD5 965d89c2f95689aaa9973aa5930facb2
BLAKE2b-256 7ff378911681d11fc347048c4a342c46a09f54bf0da02998eb211ede6072b690

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fce06b484f136e70f9d106aa746b091beee148b83f26b897baaf184da7f0f5ea
MD5 cb8d18ed53fbb2385b5f3d6e0b1c5611
BLAKE2b-256 918f36d3404c96224d35bbf90653b01a122fcf41256ed40477511a7dbd85544e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a36892029f3da3ad56535d18eddb664e9ca2469477ca252c30f40ca8d3e560f
MD5 c8de864a50a549db715a87793747aaa2
BLAKE2b-256 8e96f06e9745d4c4cf82d763e7e96ced1378f22c3c5c4bb52b90a324a2f438e9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a427dffcdd097028198011fe5c332c7d01c0d865237862470fd3dad454a209e7
MD5 e3af3839f189d88f57d0cebeab03a551
BLAKE2b-256 87389f3d4a71053ec1e18468091e08c9187437143cbafa333c3924f3fdee8452

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8741d7f1550507577db3f26a41adeb2e5b5e1c6d79a0657c2fa923d62b7c6e50
MD5 c3ecebd7802e4335be7fd8d56ffd7fdd
BLAKE2b-256 b3fc336d1e444a26de98c3b6488c91ca96b29d6e6428363596b4324a6bc5ac0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6c8ede907412d22e67aece8433a003f7603c9289edb465c514587244e35006c7
MD5 dcd7ed84c790f9cd7b5a67db80848d49
BLAKE2b-256 66ccd494fa1c9d9447c8ea1622f3bc3e228c27c2e516722489357128232a1ad1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.2.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 335.4 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.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0da80211887da19696e4d364091537dec2d208531f52a6d66740a16cf3569c32
MD5 e9b81f76c591526bc385637b724d07b9
BLAKE2b-256 73eb03b0167f603fbfe9e55b687be24a5cfba499a1784d77916029317845266a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.2.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 320.7 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.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 23a894f03e2dbf056edd4adaac2b209093178222954f684b40ab482eebb7ddd8
MD5 0dc5cfd4d84feef58122bfebf7c9d513
BLAKE2b-256 5ca8331b61099e72740f68e64df1c46cc05fedb2c5ef7b7644d0a7d7971de405

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf04d021df7e66b03452c6a7015d75ad48950369794239690228f961fba9e3a3
MD5 ce19da310e759d3ffbb78020e8a3d6e9
BLAKE2b-256 af04cd7b69720966c091dd33ae2ce89c7f4a8b90848555358fd01fbf57a21c60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 658ec05df4fbff960fff0e78efdc6799c0a875973460712eee1349d091751a61
MD5 67078d778dddbd0d58afe79757d30a1f
BLAKE2b-256 93eb7e842a09280603807a623df2cc1b4bd6f265882214f0c70a35ef3dc76cfe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e9a8ddd5823f0cf05e6cb6dbe302bc322f6cd4d4943c4aefcc3900bc90077e3f
MD5 49481a5a2baa21c3a89587ab75364bc9
BLAKE2b-256 335cea83443a5f1d93a148c2aeaa9fd519c50c699066b98074fa7936c65cba3c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae2335bb1e22c9522a9bda6b093bf679f192949a8e120ae1b15fecf8604f66ec
MD5 7a2c3cbd7f7b35be5161cee662a059bc
BLAKE2b-256 9b876471cdbc85db451d4db9f8fd3e0a61d532a26a503c21619580446c14e73f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1954e2a476e21d5eb3e5680cca96f35a4865b651835ca38b81236c7fbdcd5c8e
MD5 d109aa69c14a632bfe80736b5d6ad8a9
BLAKE2b-256 4a2101cae679345ef21746364b78af7bb5fd7a960d774375c702a5f3f4cb41b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18bfc2b6ccd056581e819ef8b25236f4612e4d35e0ffdec12c32ce201a9e1e0d
MD5 d8816f510f68aa2103b970ab2bbdea4a
BLAKE2b-256 43f0ec7af5d25c1b81c337f46054591b056bf1d42028a9c1e4940a5673201f3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c085a9cef51941330f317da456a4e5e9b79bd2caaa962cce9e2b84adc1438dfd
MD5 9a7e6ceba590e72d206d825537c039cc
BLAKE2b-256 98927f61a7f0a2fa2e9baac0161bfa7e747f8c23eb34734d674e62c9bc37800a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ae37133c544f4165c744f301ca8097c3525f6bebbfad30f48912b8acce824943
MD5 b8ed1ac54fab5df1b3a88e0594db226e
BLAKE2b-256 dbbc7e2371adbb5b4ebb47b5b2a426bfe0d77d14e0873ff450d3adb6ee10adc7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a049bacc081a2c1c091184b46b831bfe7d10a18570b84c16c096c081559c747
MD5 c6841af502845406ef755d055e7fb0f5
BLAKE2b-256 a99011f90558cdf1c46922d374ca40181a293f22b8817e52fb8e5880bbd30baf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cd1707b26757d2e3d373512669a93d40d6a49abacb865a4bd8ea4849a018bb10
MD5 b9b4e32ab7e7bda54aa7a62967ac5a47
BLAKE2b-256 2706e6ccb6f7d11273303759f43a308a7fadc5e29eb6066b81ad2c05bf2ba11f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8b5806f9de221a7a6cf440bbc3a07ec87823327c18f033bcf9c8c4af272e9b2
MD5 8674bc4866e852cff9a1ca777259d1df
BLAKE2b-256 ce63ec774125d34d72b5e683dcd9232b5e302852353bc6ebb01cab4befb4bbf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 62142733c944e2928f5e9933ee5d6b47ff4fd743cd9c08f46068656f77b350fd
MD5 9f0dabd0721870b1ef5c3fec6a05af3a
BLAKE2b-256 a198a18c563d1bff74d2e60c619962f95b0a1d71c6f3155e9e8eabc381af3605

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.2.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 344.2 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.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4dc30b5b9c4335e9fc21be7726c2518cb1b288336d78d6c58b09ae467c27294a
MD5 4d730d655ab749506a96771147005206
BLAKE2b-256 bff646199f06aafafd56ceb1a0748d4236be1068cbd23f3207e2e45f3625c2e9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.2.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 335.4 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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 db4f8459bb7e4d0b030838812e51b848aade0ffff54430fff92b89f13c850cc5
MD5 72be3ecfdcb5e87d90ba5a46b7e06d15
BLAKE2b-256 85ddb6ff9832360e0534cf66d7768dd94b975fc012c40fe92882f060abf0122b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d4086ed78de9f4d3facca42ac7473a159413d44e1c62dfd97e9ea82ff7760e9e
MD5 62e5edc43493cd1ca283afc178a77fbc
BLAKE2b-256 edfc242d86690361dc0742637b6a1206e56303af6bb6136be89d356a8db9d015

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b334d7285d54ea78abb73da555d81f270fed6769228baf811459aa8231ee861e
MD5 ce9bb327e601567189c288d7957a77a1
BLAKE2b-256 c7963735ed61e816d2476e8a79f98d4e7317a6a21b59f37e8a7431174dc60a1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2b5befc4a385c0739dd5c9f227ce8b41b7fbe88aff65f8b856d496f23e29fcbb
MD5 eb3b0854e567beb24e0d986f282719a9
BLAKE2b-256 9d432965bdac2e6bb00da01a0058998fadce3763d9baaecd8ab14ecc61ce0bb0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 604a848ede8cb63d552811ece5c99eaba9bad3a87f723c59e5af770259e46b83
MD5 46206fda801d3118c3e8b2e9e29b749d
BLAKE2b-256 62e0b9f19c857ff1250bb11a12874281c7e61e2e9ee33fe32f990d629e6052bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 660e705e5ef7a01a8b6bb67263da4d3a3bbe9eef94fc1f60dfec6b304a0f6951
MD5 43c3168a7e65db56fddbb70053104135
BLAKE2b-256 026f564d89bc7881a65e0415dc232de8bb7066a0d0c971f3e458ab0a245d2ec1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 28db1a177bb478246f872ce398b6a97a66670aa007f34800e696d5e914ca2de5
MD5 268fd87d847ccda69ddbe4c0531b1ca1
BLAKE2b-256 ec4858973eef27c22d80f5a4765fed2a183e3ec084fd5847789cbdf3a214adc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c64fa915d44f1423e237265ced8792ba3b8664363d396e106e2b892661fa34b
MD5 cbc7a99c01eb6b423db4a34c7d8c4e5b
BLAKE2b-256 420e74a99781da99d6ecd52ce388f7d58f3a08c6a91852d04ce43be62d55efa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0ddb617dc57ec5c34263c5c0de24a746fbca705d944ef6e3035feb9697bb453a
MD5 240e7af787bdca1f1f65fc20d7c4f8f1
BLAKE2b-256 de4353f390854b9985d2b60e89c47de5f6c68f39f833163f6e2c944fd163151b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90dce812aa49d32f42f16371299e85700db8cbd00a812aa3a737999fc4639335
MD5 eff1cd5be1b8291d49b25ee720ccd46b
BLAKE2b-256 2c242041aab63c969cbe35a51db20f594c2cc182b7d18846ebc9f26ad3e728fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c28227f8865ec867037fb3ff379fd41216b9f74ec3e51d136388509c11413cab
MD5 1ed366440ebf29d23194fd271b6acd3d
BLAKE2b-256 a02b6e978efa5e9cbffa6584e6bcf1c795a1567f40d18d84df5063285b435a50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb1fce475a9f0a3df0e41ba2af23f392dced84a42de4cc6e6c6a51eae62fa766
MD5 e3713e1121a063c2e3b9e0ed9e1aff85
BLAKE2b-256 3e737bc82dd0043e25f4aae032e0900880756a7dff5cb4838d195eef6c417e77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9fb5f1d9bee92dab93ad19c8f9ca79ace4fc00e836461ca06b25b491c39a9e44
MD5 aff57f7777559e6ee0b66ac9f1c8f54b
BLAKE2b-256 fcb5efcce33a803af1ccdb9eeae84f0b28c90d991a103c7e1208b029dc308448

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.2.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 347.0 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.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0e9547bd4b78444b73fe8d67dc68d9a6084a454aeb0e1d0f149e5e6fbad4768d
MD5 fe0ef4f83bc209498e6ddecaa11ec0fe
BLAKE2b-256 72e5c08e363f7cfdf3b4b46858514d093b80fa40eb5973ba0f52674c4e1eb16d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 332.7 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8438db69713bcf16261d7d0b5c2edb677ee6eb90e84610d41d097861a25ee4d2
MD5 b2cf15e56c96ee93370d5cd9d62a086a
BLAKE2b-256 5d9dc9a8e5c7ddd4e5c6d2eafe0d66ba619ef18ef07ef9ca213e66dfdc770a5f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfeee63bd323be0c59a6c1c9a8fbd49207a95650e1c8521fc7c7c486b2ce1f98
MD5 f8d26a06cdff9e308fb785c46efac6c7
BLAKE2b-256 15c09c5350ab84ba445b2ae247b223170184221711961b4dfd13ee1483c888f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4d1c4230a2f11861c7e5ceca857deb49c3bbde83773b3e787be4d10907de36fd
MD5 fb6c7b2667133778fea2cf8f6e4cc25a
BLAKE2b-256 97d406998aedda127fd7b64ac44bff2ebf79a9dda72a975f642406f55f412a36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4c205c7d4114032a02444dd53d4f440b334b8cd722443e5b9db31adb79209605
MD5 42c7098e9486e2cddb79ffdb5999d5c0
BLAKE2b-256 4444897d99664259c0b4db9bc4506e98dc47aaa67fa2a1bcfb70ab698b32be20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19a10e154c5286055bfb9f93af908d929684ad0c939b33536a85489f9d8f5dd4
MD5 74a835bb34be6c525c212d6217bd060c
BLAKE2b-256 79f963963d5f389eac5f1c84e52f5483ebb527e9e2f56be00ac459bee6c2b64e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03ee34bd3cbffbfee56bef87b4591b1f58900144066e4204aad114c9905ef1c8
MD5 276d3de6148cee258014ff9a2b7e9f7b
BLAKE2b-256 fbc297cb9e7079f7a6a5432aa361a942751beb59342e5ddf6d7913d487afbd88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 76182c22d0ece07fd6835223e6bb14f080ed3fc4114297668170d9a28f995752
MD5 8e3f78e08353d53b26a4997510fb59d3
BLAKE2b-256 c0e38b22792c7dfb02dd5b29e52b1442678194373199d4f11900484b593ee295

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b512fafc631db8405ffff1f46908dfffd904699b874958a175e66396328af1a9
MD5 316e548b4be681d929c7aef4e00a6301
BLAKE2b-256 e88ef30796d21c121973bfbddeca3a7b24fa426b66a3f185185c5ddb7ba48458

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 da622b31d7218ccb7982414c6e720412bfccf68cdbe03e726ee5322b668f26d1
MD5 68254f6bc12fb8d2fdde9d6ebe0d8de4
BLAKE2b-256 05aaaec632f724b6796a192ea9ea8ece57ca681e4d85ee04457f2b8e1e5ed450

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1048001911380fd72e5b007ed0be5ea062ef26e1877cf8fcd4f41b533f6c5385
MD5 8256e4926517a71155cb0bd0e3892e50
BLAKE2b-256 db7dd363645591a310eb1bbb7a56404df59ffee841337448585ffc1a5ffa18bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e3a77a40a8819b626dada145e861fa1ad1ef3b747ee98c070a818b17aefc4934
MD5 c1168672babf025439b8ceea51d6c044
BLAKE2b-256 eb0b16cc6419418e1ac566d259ff2f505d67d05007fb93a00ecd8b883b71acda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8217e38900587ac125c002e30f1e46868400a2b8e8a1940d111806db318d7b7
MD5 503b7a9d2bebaf54ba6b06306495fee7
BLAKE2b-256 8fe6124e1608dc672a08392e086b71bec617f57b035baab89ff721735c5a6719

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f29d4006e93dce0f474843f5a31db356e5fa5e1ef8a73f83cbd69be045e7aea
MD5 786d28a9add7dff8cc5f7e8c718f5f05
BLAKE2b-256 498db820fef5a444a369d71e8ac6dfab28eed7090815f1a25c3e04b2f559ec25

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.2.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 345.5 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1ca575cc1f948a60fc448cfd0215574030e089308728d95e12202ae93fb086b6
MD5 475f0c6f6862b585db34cffecd02008f
BLAKE2b-256 fcd3e433826d62943105a5a4f783f4fafe8c2eb909af9494caf0956fab244dd7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 333.7 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 84c8a4fde39966c7a3f27e3fb163e9ec9530356e1f9d9909375ebb3a842a55be
MD5 c5f8f97dc0616c00519de19f56df8e3e
BLAKE2b-256 f33e8275a5ef1dca73d567062a9fcd9b37980a74f81cc66b6a44f40e9bfd5e3d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ea1aa4de4b6c4a7befe49e5e4d8547df81746a1952bddadde56089bac66de03
MD5 7c5291c2c29499307d71dfdb9e1c5d9c
BLAKE2b-256 a66f465886b3e80106f255c9d646443529d14535a1f002eb10462894c10bfbd5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da4a38b36894425cb78d02af999cea806702b509fa1b8533327be48d18a01d2a
MD5 3286480f0269d2899cb3bc20232f4f52
BLAKE2b-256 15fb5ebf79781e8b5d143218a47fbdf24c23549c331a155ab8f5a98227926a69

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc317102a0db26928bc78c7c30fa564ed9b349dd81b747ef9172f2112c38b170
MD5 c9e2a3a7c9f791c4c759c1a2c2103ebf
BLAKE2b-256 44b846905537ce30ae85f993ea6f50863fbc8fb189dd5e8f0055d58754a09823

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6409a48735ba4c4036deda742337200853cc26d51e9193d7ff63fcca49fe629a
MD5 26cd8d7011aa32979d17858b2b645ffc
BLAKE2b-256 bb84baf649627bff243cddcfafaa23a3fcc0b03edf44cd1283d89977dad3fbc1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a023e1494822b930592118ca8e72e197ae045c44ee7841d98f1af4e128aa54d
MD5 70598dea8a3cb80cc62f595640581a8d
BLAKE2b-256 33f19616e5cd034bd297283ee7508f481eaee27f43e8b576847e5a209d2d7e9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56fcbd14cbb258d60a2c3e5e2a1bb3ec6152bcacc024e0b31dfbd8552a0dff48
MD5 c5d0461af7120f7ef67111372f890303
BLAKE2b-256 fd1f5c5e8feacd3660fa7e4ce4b7a2716342833900d5ddc34d0418dc4e027649

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed6f3dd5eb6ace3f7d189f74ba1d2ad7f2235b86b3c7bfaad50858498928699f
MD5 26ab4b72ab7e63ad1221793894ab0b10
BLAKE2b-256 8b276a922705be8410638a74c36804cfcd5cbdbbbc09d5206b4aee6aff1aa4eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6989c2d97653acb1587e17b9ff19e322423b1b30f8b91c5ddc66db1c80c41033
MD5 f927be2e744d2424d388cab6d6f13c1e
BLAKE2b-256 6ea2f8070255d728ac7ad7f0071b0f523a8c59b3e41607ea7f853e10b09fdaea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3b4b49e6ec655a616281168d2e2c4f609d113afdefac3f6610fb85422c7c5fc
MD5 010bed9cc8c2c23b1acf3fe9ccfc7a7d
BLAKE2b-256 315a65ef47c21b81e8d20c6f06afa853b56c3f3bbf21e4bf79d25aa52df40547

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 55021c32b9b91e00a5ae1ce4225d156a98be91a94663131d6335bc41d03db6aa
MD5 a7c8a41ebdf8a2e82eb751a0f60b42c9
BLAKE2b-256 118aed792e7de8535323683a6c9f67330becffefc8b6d1981315440890d1de56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08294bab17a72de448dbbdf3c9056334e825e7e083e3b3055713d2ba47d4b98a
MD5 f9de73f782018cc3934a5bd6a39de144
BLAKE2b-256 7de56099046a67f719b32e6106787afbb84b2e845dcda72c6c941b2925b51807

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b7bbc4c88a39a3a493dd0f14f4bb88c277f274404e5ee243206e0fff42cf54b9
MD5 b953610680218b388ed1c946ba3715d6
BLAKE2b-256 955bf695b32c59b47c930c60567ba9f7c9e18fa37913e2c4e58a2f019d31d5ae

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 337.9 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1bb2dc2909ba557c6833a7fb1a85570462b97c30144615d66c3b82db361f84d9
MD5 e3e3f34a6917c4361bce34430fec1918
BLAKE2b-256 448606a7c860a3aefaa85666e8bed6fe74d9c18199a55dfaafc6cd5e790b2e81

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 344.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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f5d3bdd5a79edfa481a878c0e8878a5e77491f213aa993532eb6f88f47323840
MD5 a4bd26f78622c28a06a88810ab56a22b
BLAKE2b-256 3a7975ec005c2d3d2ae560238f1d85f62e64a8380990660d38c345fde9e3abad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb2014d9d87a97d957187019d822cecf011e3f5a1ab07111386bb20a3cb88fe2
MD5 77ef668573135eea149707d5dfa79d2f
BLAKE2b-256 a7a23c203e54f451ff19da70ce4a67952549fa53de9935a4c929e4237ffeaf5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3584ade17159715380f4d40fef6d6342881e4a02f6dbb116e043a845763557f5
MD5 092ab9fa144e6302c7f1d0f4222584c8
BLAKE2b-256 99b51e88124129829f502366a1abe3d0ad64c43b5c979820cb51152bf374d5c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 edec85f84c6bcda4bb0a5fedceb3c3f12930fc7c925c69ee35a7faeaad86a003
MD5 9a6dc0fc7cfe0ecfa26cda58ef8c9c59
BLAKE2b-256 ad7021077cb551f8da0834f9955c541be378f1e3bf8204ae948e865435a93876

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 460747de8c911e7c95d6e67721e70bc0523c35701d58db878a3722ab1011ed79
MD5 9dab94a80f61b192c595a28972ccee18
BLAKE2b-256 f4df950acb2c2ab45e15137bef9304307cec9b12dcb7205ce9348a237edee3fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2c7e30698203512a846042016d0a5e43347b3b4e2c1252863a3af014aba39a2
MD5 20e42f3335d15babad35bc02b317fedf
BLAKE2b-256 6b1ebf14600ca1c810a5838fcda8440fc077ae0c98e0243f5d7dbea0970b1199

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 946b0729b38f199973e5421bce200cc094c46ee57e656bea7a59a0746d81770f
MD5 6b52187f9beaa9cd18cc8b902057eef1
BLAKE2b-256 4a97aa2900255a735aef76e23dc34d5bb2794e00d50cffb51b29feb6c003b807

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5b3a44dd5c6c48ceb8fccebb9902166cd0ebed7788f08726de905075193a94f1
MD5 b8c68b6cbe8bfdcad19f4fb7867ee7f4
BLAKE2b-256 0935b2ec57c159192736cffaf1a580be6c9dd126d480f921fe42897cc23a2023

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bfd2f7de2c5af060bf4da48e00382820335b8c71dd66bd4a4c8c541fa8f250e6
MD5 10d57a1cc4ee1bb073ee489c1b87d3ac
BLAKE2b-256 df65a440798f3f6dd80d0e86a257dd8ee0aea230e3cc29a46056d3db5f68a373

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 caeece5a57621edea8dd3c23cf56d181bed581dc7cd12099f5f36137013e176a
MD5 c9a087a3aad3046941a709c443824a51
BLAKE2b-256 a2511de98d080e9481818bad8af137a19501a1f39a3fe5921aba91ef5f53159f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6a467ee85e7889aa84232fc3b1c3b378dfd558fe6cdc8d7adcf0c9e40f64d844
MD5 87854bc6ddd98116da8e69d0f0808d8e
BLAKE2b-256 315ef664e29715e0d3e178a21b58b5aa92e1eabef72da0bc7b3d1c4aba725b95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b6752156a063e63fb6809051629670965632f1e2da5f4b1f6f128ae279a6a43
MD5 809c468da94cc5c91ce292cc397edd40
BLAKE2b-256 81a1fcd293a2e29b963af8c6a9782d2cc351615939c5561f0ea970cac1794a45

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e5e75060db587f9e1a7170ccccc450d9ca03ca5962249f82d900d81666df995
MD5 8f35c87b97c0781a5ca3992efbfc92dd
BLAKE2b-256 d08a79eede42dc50869060ccc509b523ca96e9759980decb308af4b0a8850261

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 338.0 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f48abe219105e0ee806f0ccbfca518e442a7d9b8e3e2ed3366fa17e44d43b02f
MD5 2ff23d2c795456dee78382eb8fcee9d0
BLAKE2b-256 f2f3cfd6cc63e67c718410c21514bbbc19cc08daa14bf0f08376569b13befdd0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 344.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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 25f9c1fa268f93236f5ef822df1dbf4a6ef4f9a24586df728970e355095da8bd
MD5 426d42bea270ba72042c233573ce0621
BLAKE2b-256 45a1929a8819d83b4772abba780ea29c82ad1d7665b787772e00f7f8ee66c8eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c03f0c05dff343a99dbd39d92596871bd4b780e96a1515740456fecee38413e8
MD5 dbabdcbac56831e6bdd9b7a22448fe38
BLAKE2b-256 ea06feb8eb2a800a7112a57609850218943ee821157d449513cba8f76ed57d52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d55accad650fc62ef2debe449c836519619e7c52adca824d0760f1b34d2a5cef
MD5 0e0a8eecc18ed6f94c28876ab05f9195
BLAKE2b-256 7d5d4479e5894c190058b30c21722d4e28bd1cccbccf1b5500c14880101f8573

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5307a118d1a9c1a3663e1798e4f7b52076f3acbc52441a14d955c9b949c4ccf1
MD5 926fb749e978b3a9dc8bb9124e22926d
BLAKE2b-256 f2fc5efb18880a76dfa90028633fe22a08cdbf50dc143ab105163fa52149f80f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 95ac1396256269fce623d91e0d1ffa0c247fe4bcc49c4f93ef8847d050c0eb81
MD5 ec3a05f67681e5044a66626fd360a26a
BLAKE2b-256 55b91a3e68363f3815891b2ce18f49d43695ba296ffbfedd29938ba5a8fd8401

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8b92ce3393d4137f813efd14750423234f282d4affd6f8efe3f76cb16c83cce
MD5 bd1e1d27b39588182a0cd3dcf80c3575
BLAKE2b-256 2710f4decb35d56b0d9fc0026a25ffad5cce82565aa4082dddf08ff932a06340

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab2cdff99bafb32bd4ddf9351eaa739cb97d4882eb4eb17a9c2b3a56b7e7e2a2
MD5 58226a37e7da427b3700d44f05556112
BLAKE2b-256 88b42cb0db296affad5a7f98f4531ad79b0681bad7ccaa856b2b38fb7e5d9190

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c8261853b8dc9100cb30e739d585ccd982e77a3d40132da6c81d0ea8dde1d1e2
MD5 b4fe157fe36ee4b5bfbb4d6ec9361de2
BLAKE2b-256 56f5c39698c46663d3308f4b091235640d7ab2011cf7ff47625f22fc4f964258

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 34a609116d0c654695311a33e4e13989334a48a58985beb6005ee5c699ccca3b
MD5 ee4bb4498f97c7e5989fcd7e10f284a9
BLAKE2b-256 1785cc8b307de553fac10b99c55205f73ea3befd9aff2f49b009c4af9bef0c8c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd0335b047003c7ad1bcc6dfb2cabd63367c556aa526de095247c77752d65e69
MD5 ab4cab2bf475cd9f7ece74cbe22cee5f
BLAKE2b-256 ab8ad5d2a7b3aa173d2cf41f7e35881729a6c96a90108a27a3ddbb3bd1b2c1ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 698fd10a817dd340e08b3f358be71deadbb5c9b0f84602bab883c0cfe19a3df4
MD5 9ce1b010062910195683f99664cd494a
BLAKE2b-256 babf4a3698330e8c2be7de600799a27a32c601c77b566b05eda6ee76f300fe1d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0be0d5a51199b6251ec9582d93b1c6c5e00553809db24cf457ff51dd30661f2d
MD5 dcf396c21c0bf66b862c1cc8ca23e159
BLAKE2b-256 479fdbd57df7e1db288a691e87bb31c539afa5c143c5e29f4bf64fcb8838c199

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 12d85b2a963575b82cd79343b052833a9d2e0056b5297fb30c9202689e730394
MD5 f1007ce1cd65b2d86f532a3911890d09
BLAKE2b-256 e0482fd0a205b677e948ab5e8837a0d7812b7e6a30e397a4b893ff76fef29e90

See more details on using hashes here.

Provenance

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