Skip to main content

Cachebox

The fastest caching Python library written in Rust

badge badge Buy Me A Coffee

PyPi Monthly Downloads Python Version

CI Last Commit License


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

What does it do?

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

Key Features:

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

When do I need caching?

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

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

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

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

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

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

Why cachebox?

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

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

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

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

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

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

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

Installation

cachebox is installable via pip:

pip3 install -U cachebox

Examples

The simplest example of cachebox could look like this:

import cachebox

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

assert factorial(5) == 125

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

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

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

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

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

from cachebox import FIFOCache

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

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

Learn more

Read the documentation for full information and learn more: Documentation

Contributors

Contributers

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

Uploaded Source

Built Distributions

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

cachebox-6.2.4-pp311-pypy311_pp73-win_amd64.whl (355.4 kB view details)

Uploaded PyPyWindows x86-64

cachebox-6.2.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (706.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cachebox-6.2.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl (748.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cachebox-6.2.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (794.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cachebox-6.2.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (651.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

cachebox-6.2.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (492.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cachebox-6.2.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (525.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cachebox-6.2.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (520.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cachebox-6.2.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (517.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cachebox-6.2.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (473.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cachebox-6.2.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (536.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

cachebox-6.2.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl (445.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

cachebox-6.2.4-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (469.1 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

cachebox-6.2.4-cp315-cp315t-win_amd64.whl (338.6 kB view details)

Uploaded CPython 3.15tWindows x86-64

cachebox-6.2.4-cp315-cp315t-win32.whl (323.8 kB view details)

Uploaded CPython 3.15tWindows x86

cachebox-6.2.4-cp315-cp315t-musllinux_1_2_x86_64.whl (684.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

cachebox-6.2.4-cp315-cp315t-musllinux_1_2_i686.whl (704.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

cachebox-6.2.4-cp315-cp315t-musllinux_1_2_armv7l.whl (742.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

cachebox-6.2.4-cp315-cp315t-musllinux_1_2_aarch64.whl (623.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

cachebox-6.2.4-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (470.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

cachebox-6.2.4-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl (503.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ s390x

cachebox-6.2.4-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (498.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64le

cachebox-6.2.4-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (465.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

cachebox-6.2.4-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

cachebox-6.2.4-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (492.0 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

cachebox-6.2.4-cp315-cp315t-macosx_11_0_arm64.whl (405.4 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

cachebox-6.2.4-cp315-cp315t-macosx_10_12_x86_64.whl (439.0 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

cachebox-6.2.4-cp315-cp315-win_amd64.whl (348.2 kB view details)

Uploaded CPython 3.15Windows x86-64

cachebox-6.2.4-cp315-cp315-win32.whl (337.2 kB view details)

Uploaded CPython 3.15Windows x86

cachebox-6.2.4-cp315-cp315-musllinux_1_2_x86_64.whl (696.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

cachebox-6.2.4-cp315-cp315-musllinux_1_2_i686.whl (720.6 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

cachebox-6.2.4-cp315-cp315-musllinux_1_2_armv7l.whl (756.0 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

cachebox-6.2.4-cp315-cp315-musllinux_1_2_aarch64.whl (636.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

cachebox-6.2.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (482.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

cachebox-6.2.4-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl (514.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ s390x

cachebox-6.2.4-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (505.1 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64le

cachebox-6.2.4-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (479.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.4-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (458.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

cachebox-6.2.4-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (506.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

cachebox-6.2.4-cp315-cp315-macosx_11_0_arm64.whl (418.0 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

cachebox-6.2.4-cp315-cp315-macosx_10_12_x86_64.whl (455.0 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

cachebox-6.2.4-cp314-cp314t-win_amd64.whl (338.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

cachebox-6.2.4-cp314-cp314t-win32.whl (323.8 kB view details)

Uploaded CPython 3.14tWindows x86

cachebox-6.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl (684.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cachebox-6.2.4-cp314-cp314t-musllinux_1_2_i686.whl (703.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

cachebox-6.2.4-cp314-cp314t-musllinux_1_2_armv7l.whl (742.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

cachebox-6.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl (623.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cachebox-6.2.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (470.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cachebox-6.2.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (503.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

cachebox-6.2.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (498.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cachebox-6.2.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (465.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

cachebox-6.2.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

cachebox-6.2.4-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (491.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

cachebox-6.2.4-cp314-cp314t-macosx_11_0_arm64.whl (405.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cachebox-6.2.4-cp314-cp314t-macosx_10_12_x86_64.whl (439.1 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

cachebox-6.2.4-cp314-cp314-win_amd64.whl (348.1 kB view details)

Uploaded CPython 3.14Windows x86-64

cachebox-6.2.4-cp314-cp314-win32.whl (336.9 kB view details)

Uploaded CPython 3.14Windows x86

cachebox-6.2.4-cp314-cp314-musllinux_1_2_x86_64.whl (696.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cachebox-6.2.4-cp314-cp314-musllinux_1_2_i686.whl (720.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

cachebox-6.2.4-cp314-cp314-musllinux_1_2_armv7l.whl (755.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

cachebox-6.2.4-cp314-cp314-musllinux_1_2_aarch64.whl (636.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cachebox-6.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (482.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cachebox-6.2.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (514.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

cachebox-6.2.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (505.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

cachebox-6.2.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (479.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (458.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cachebox-6.2.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (506.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

cachebox-6.2.4-cp314-cp314-macosx_11_0_arm64.whl (418.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cachebox-6.2.4-cp314-cp314-macosx_10_12_x86_64.whl (455.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

cachebox-6.2.4-cp313-cp313-win_amd64.whl (346.1 kB view details)

Uploaded CPython 3.13Windows x86-64

cachebox-6.2.4-cp313-cp313-win32.whl (335.3 kB view details)

Uploaded CPython 3.13Windows x86

cachebox-6.2.4-cp313-cp313-musllinux_1_2_x86_64.whl (694.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cachebox-6.2.4-cp313-cp313-musllinux_1_2_i686.whl (718.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cachebox-6.2.4-cp313-cp313-musllinux_1_2_armv7l.whl (754.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

cachebox-6.2.4-cp313-cp313-musllinux_1_2_aarch64.whl (634.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cachebox-6.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (479.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cachebox-6.2.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (511.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cachebox-6.2.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (502.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cachebox-6.2.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (477.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (456.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cachebox-6.2.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (504.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

cachebox-6.2.4-cp313-cp313-macosx_11_0_arm64.whl (416.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cachebox-6.2.4-cp313-cp313-macosx_10_12_x86_64.whl (453.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cachebox-6.2.4-cp312-cp312-win_amd64.whl (346.3 kB view details)

Uploaded CPython 3.12Windows x86-64

cachebox-6.2.4-cp312-cp312-win32.whl (336.2 kB view details)

Uploaded CPython 3.12Windows x86

cachebox-6.2.4-cp312-cp312-musllinux_1_2_x86_64.whl (694.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cachebox-6.2.4-cp312-cp312-musllinux_1_2_i686.whl (718.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cachebox-6.2.4-cp312-cp312-musllinux_1_2_armv7l.whl (754.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

cachebox-6.2.4-cp312-cp312-musllinux_1_2_aarch64.whl (634.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cachebox-6.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (480.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cachebox-6.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (511.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cachebox-6.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (503.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cachebox-6.2.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (478.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (456.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cachebox-6.2.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (505.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

cachebox-6.2.4-cp312-cp312-macosx_11_0_arm64.whl (417.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cachebox-6.2.4-cp312-cp312-macosx_10_12_x86_64.whl (454.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cachebox-6.2.4-cp311-cp311-win_amd64.whl (339.7 kB view details)

Uploaded CPython 3.11Windows x86-64

cachebox-6.2.4-cp311-cp311-win32.whl (347.8 kB view details)

Uploaded CPython 3.11Windows x86

cachebox-6.2.4-cp311-cp311-musllinux_1_2_x86_64.whl (688.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cachebox-6.2.4-cp311-cp311-musllinux_1_2_i686.whl (734.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cachebox-6.2.4-cp311-cp311-musllinux_1_2_armv7l.whl (773.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

cachebox-6.2.4-cp311-cp311-musllinux_1_2_aarch64.whl (633.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cachebox-6.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (474.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cachebox-6.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (507.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cachebox-6.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (503.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cachebox-6.2.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (497.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (455.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cachebox-6.2.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (523.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

cachebox-6.2.4-cp311-cp311-macosx_11_0_arm64.whl (425.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cachebox-6.2.4-cp311-cp311-macosx_10_12_x86_64.whl (451.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cachebox-6.2.4-cp310-cp310-win_amd64.whl (339.9 kB view details)

Uploaded CPython 3.10Windows x86-64

cachebox-6.2.4-cp310-cp310-win32.whl (347.8 kB view details)

Uploaded CPython 3.10Windows x86

cachebox-6.2.4-cp310-cp310-musllinux_1_2_x86_64.whl (688.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cachebox-6.2.4-cp310-cp310-musllinux_1_2_i686.whl (735.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cachebox-6.2.4-cp310-cp310-musllinux_1_2_armv7l.whl (774.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

cachebox-6.2.4-cp310-cp310-musllinux_1_2_aarch64.whl (633.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cachebox-6.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (474.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cachebox-6.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (507.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cachebox-6.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (503.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cachebox-6.2.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (497.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cachebox-6.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (455.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cachebox-6.2.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (523.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

cachebox-6.2.4-cp310-cp310-macosx_11_0_arm64.whl (425.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cachebox-6.2.4-cp310-cp310-macosx_10_12_x86_64.whl (451.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.2.4.tar.gz
Algorithm Hash digest
SHA256 6a04ff39b7746329f8e2d2c8f7eba7fcb63ac4cc4fac52f8499ac60450e0fcd0
MD5 d376f291a5224d79febb736d85ad6d25
BLAKE2b-256 eb7369f1c12d19194e9bdc1cc19b83abfb90663dcb19101e3c7b44b806eecb74

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 80adb287e280fec0812468016f3a67e0f5c7d8536f99dc93c464b30ee982b1ba
MD5 c3e23b14b2d495729246dc82df2a1b74
BLAKE2b-256 51be1905e2393e9a7a2d6664660ced1ce3bca7fefa170119382955bf57d5bd4a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81cf6d2f97fc9a4ae34ac778936f2caeeecc374f361ef78e4c77bc1862625a5e
MD5 c13185446542da8215943a429b03d51e
BLAKE2b-256 d59e739784b96ad3c58a0fed710a4230bb100b213c18383c2592b34667ff8c33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f28a48ddcd3f055a91687a1ed5b6a5ea022d16523206277cf29a417046c4545
MD5 552e93832647a22f5b67bf8cd037dcf2
BLAKE2b-256 8476f6e1370cc1ce04bc0007d009a3a4da75118d32b09e5eb9246d594a52b9f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f2b22890c2e473443a94a00e7499f881a3e30a42cad13fca943125b4501f2bc0
MD5 b288f8d17e0493216e0eb6cf9ad688a7
BLAKE2b-256 593bd07b098c3510c6db7a95548ec7c6f5de733f99b7f579ec46f1ef6e943e19

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 86979d5b7d0f3c942aafaecc0a68c71e913bb24042624f018851a2a787c09706
MD5 6590824fb2512a8ff0bd8b7614a1deff
BLAKE2b-256 a2132e1bdd3edf6932503a06c2e4694fff8299717cac0f82bdb39791feae14f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f1c0d9ca68a46af16bfd48f872926ee2b11bc346f398a2bc377a95fe1649194
MD5 3bef571007d6f766d9293f5b144a2b5b
BLAKE2b-256 7ce6d9c6572640a5d9d276bb539a30a6c85eef3d9e41da43801fce6a34481130

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc20e44097806a8d8b61cb0fdd236bb8c174f20b62593a19ddaa48e0f4c349e9
MD5 daa0f6a35f1339f341de810d0cd20e01
BLAKE2b-256 7dc85f99a2912e06fc86e58928790f24d65051ff0bacfeebcc714a4526f5fd04

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db91572f8bb04eea7bfa138ba7fb19b0ccea01dc062e1440ee77bbb10e5248d8
MD5 c03eb9761af68578f7b99c7d46dcf5f7
BLAKE2b-256 077b6a057308f4e96a9757d5b9ca80e1598ed358ce4dc1231cce338a5ca21641

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e78a1f1cb4de74d67c3a0a11fbe25366d32a4f71b20b3c7a36cbab57bbf67220
MD5 ff7c15a5091fd58a8e16e47f51a1a7ab
BLAKE2b-256 04920f02e298796fcb81f36c264b01c583e8942fee3a9e59e552cc723c707750

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b777ce058613876575c379b9738bbef6f9515333e062251597e478cb23ec1d7
MD5 d71b888a142c61dfc4d67ccda59967de
BLAKE2b-256 6c14f4c27fcada67e761b2cce3298b7792cf02ae14c22783fa92ff3bdd83def6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b4a59eb274e9dc9cedee597dd65ab608bc1bd571dee8eb55194d2ba1ea2e167f
MD5 b0cad21db2d4122ead5ba4a9a35d493a
BLAKE2b-256 76b977c73c79cc72daeb233af50897e98a3a1c520db73d51fe823f5974a85f07

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b302cf7a4a5189eb4812bc8f98a06847b0d87912558bff01f7dab503f7006511
MD5 268250845324a36fe82585e3b10db448
BLAKE2b-256 d9a8bdcc0f19d8bf1b028e1e1415011b5fc1a552b0ffa6aa93cf2809be9a2775

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 99b0bf463e14498cbaa05c3a2563f1664464a07c6703262c5b2de7f949cc2870
MD5 11c2ee0979a57f4ce806d21047971fb2
BLAKE2b-256 57798a8e64b129475b441c556224319c8e74e05741e36e4f0d78727f1ee6deb4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.4-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 b063e0f944a249dc7d1aec97533d4fe53fa2be40f955f7224c7d53b11ccb178b
MD5 c952cb6d8d15886658bb37f9d30fba1c
BLAKE2b-256 3790f401f799738d7cea4ac9a18b86e4c64a759938d1b0cd16c177bac68342df

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.4-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 6909d9ff8ffd545c74de581d84930b8cfc8a1c1f2675b4db0a74bf69eb991ed0
MD5 726720651ee2c5b6373f775fed5fdb69
BLAKE2b-256 32d0cc4c26fffcbe92f107b15e51b3774935be74e7f0adf926e1929b48d47452

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 43a9838a196497297d05d551da5cd7eca82ee1caa94f0cda09b3b34cdf152407
MD5 b4cfef65c056d41fceea52d972642722
BLAKE2b-256 68060f69eda5020b6c8233ea6fc5d0117dc3d5a269ae2bcc11216af54509185a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2a3f2ea2a581ad2b6b4e1137ee008b5450787f9304cc8fa04711ca482fc1528b
MD5 cf540001bc7c1e8a6d78f819ee92a3f6
BLAKE2b-256 fe04993f5d892bd3b7792884d8eba5800de664125f8770443c3aaf281db646eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b03302b0ce1d3f648be771f8ace0d4c5f38d862639676782bb436141145e14c9
MD5 4f593297c8f7b4eec0da5a3e3c94bea2
BLAKE2b-256 4b1913cbd112dda643ce997ffdaccc9dcbf28264d7a270dd4dbdff5b288e2861

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2c420ea8cbdf55e122fff9bbe5b30d052fabee0d8c133efe1fca25f0b08dddc2
MD5 9e2cede61d1ca7c3b3c1238b34339d12
BLAKE2b-256 6e044cc8f345c0ecf733c46042699ab19f4ffee1382e3221fbb67d4ddb57bf99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 068731f43cbe7078dbf336acd6529e409cc129b05086a46020d178aab8a35518
MD5 c94fda85127b9f3c0513e8ce15caf877
BLAKE2b-256 d87f299bd5b98ab4daee4b02eda383ec8699664128b800ac35df47c25c085c5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a5e7f8c201d709b224f57d30612f72956efbbfdcff9c9a20b263c5057212dc4
MD5 4a0f1c224ab18d1e3a8a05715cf7458d
BLAKE2b-256 1f41d5a16b44819d0b858080fb6e65577d7f11740eb9365592e1d3edbcaa105a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 271d66dc77d253396aaf3058eef7c8c894c9fbf6558777b1a74dd1f7e3905b54
MD5 f2880ed357554380543908b7a19771c8
BLAKE2b-256 10a99183bccd2d658c03452d3c706372b050e1181784dccf0e9719caba300e0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ca88a64e60585686376c4dc9294a9fb38a19bb58f08ac44b763c493ac91cf53
MD5 07664254de8df979131f9109f2e53c13
BLAKE2b-256 54932333de8481e86b2c66625584bef119c20f3e02bc879d2f01400f8ca8bee5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d2e03494811be9fec6473e484d7f64ac06656a3a495f83e4f741ebfea13ef36
MD5 662e73623e558a9b9515eec98d0f041c
BLAKE2b-256 28f2f6017422386a472e59b1b53ae123cddd0c01935d48cf3237c365e9d2ffb5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d4c015ee16bffe339ab87bc69d973cd9f2f1bfb65add5ec3b5e5ad8afeaf8f34
MD5 714b46eadeb76e064e2cb266318f40db
BLAKE2b-256 c02d8d9665b310963e611b789d5c713a26062c95a4d9b7a6a9b2ce8db70f2e60

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b9101b0eb5efe1c67bd0b22753a949971136b95e24e1e3110dd4a52cdc28660
MD5 40f317c5f013da08eadab2e44e1747b4
BLAKE2b-256 1f7d45ba598a5d47993752f995bff62ae1c8886c83a0f6de573e22fa254e47d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 56a95a634b9775f5f50f8108ffd8067a26ed69e1106e377aba4317d8a70a29d5
MD5 98a09dbbdc109a5f4449918a36011962
BLAKE2b-256 042694432ec76d85230d870d1c0ae73758f9d1cce6d4d741cc7862857dcd9fc4

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.4-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 52cd0544a1e3ecaf23722ab0177a543402e9aecaa0a10eb09c46c60dc92531a5
MD5 bcefec3fcb80cf38bf875c3d334d7132
BLAKE2b-256 8a18bf7f784239c3d42aa5162e19f903bbd4dae67b53ceeafed76734c7a5256e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.4-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 d9b1234c81a5fac9dad1098eb13f19dd4101698919a7e6b49ea70257bf0eabcf
MD5 0f2644be5974d7b6640531157258d415
BLAKE2b-256 4b97961841ba5557691ba9ce34f7971e1467aa912562be472c5a71f101f81085

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bd66e4d8236899f37a53ee91c204e4335a64de7c7bca3c359aa0f75ff0f6713
MD5 b5b5e51c274bc656e0d52f4f78ed258c
BLAKE2b-256 c9f2998673218b8d6ee1417a326d79da7e9b8688983f2b1f57821971338f6eeb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e81ee8a474eac39fb2b69500a9045b2667d4c1fb24b5dd115f4d0b47cb312ce5
MD5 12e299b8909a231ab78689087c742e83
BLAKE2b-256 4ed1e5c1c298a7bd980e31e899f5a9fc398f578bc113f932bd7818f99dc1a147

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 39242b1af3e8ee6e78a7522f32760614e17071982d40bca6328d10bd84f2a01a
MD5 f27bba463f12f7f2bcd826cf18454be2
BLAKE2b-256 af15e7535c552a3ec15097d7d4f8bf76039aa72514ae46ff57c48cdd28f909c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b3df08fb4dbb8eb9fbc16ba228991500504322675d3e0d24ce8855b3141d8d9c
MD5 ae2d65f008a3963cc08d97bec260f94f
BLAKE2b-256 5ddf16d8e3032a3652f65d04e46f5b04f1559fb4299a060bc0ad1338fbb02d81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f577462bb9968d54f57b25bc0a60d0e3caa7405bff88e30a65d5ba13e916fe22
MD5 17cc393ece53b14d4a2f89937be2dcd5
BLAKE2b-256 e37f2e372bcdfa0aad15d46442bb6f6a782fb10ee52270709dd19ff7968dc780

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 340173d9da73bfa1afa6ff05abeddf6f312f20b8fcc00cfc640c96fee79a3ff6
MD5 3a6672bd3055f791539196702333057d
BLAKE2b-256 afb1b6fff1ebfdefad98af44b4e77431e1e08adf7eb079f8688c5a866e2814bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae1093e9d54a7113a0ede1942fa4550f724415244e697e89796c1d946dd3612c
MD5 4a5849697495631ee580ad6ed6c0c407
BLAKE2b-256 f907c29b4c80b912b291b513e5a282d533dfddecd33eb6a612d1d12cb0c7329a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ca8dbba3b96888db3b76057cf96fa976808a3b73f7aa36a81b5e71c0cda785d
MD5 fdaba33de4e2dcba730bbdc8362d95bf
BLAKE2b-256 42a33569b4c85c700929af95607594ac2e365aaa0d8d3480ce65e3ba12078bf9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68c144c2ba0c0a9a5ab478b79eb88d251ddf9552bd313d80b99ec3dad9c448cf
MD5 b35c409bc3056aa15cb84e5404f567fa
BLAKE2b-256 450ef3efb5b787c1b5162b0c7e064f87fe4ed3c1a53f0091d812acec63fc9cdb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 98847c9f723fe9770da469caf79521ba27753140f59a80f1e285b0310bf63177
MD5 867fa6e24f8902f5868d05f8e2f0e32f
BLAKE2b-256 1f2a479440e3d87c9ca7add8e65c86c7b22af54c73603728f06b2a7409eefc65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee3ca3913030ca151190dc440787d5780e932de219a4ece53989d6aff1edf7c7
MD5 667392aa02f082ae2f6eaed8654f1de5
BLAKE2b-256 39fcbf5cb2f6aaf1d3e0a1514ab4d47901be5c0c28085885a2358028d1a89dee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 946141d973e46246f6af08ef34fd0c4eb2e5033c6639622f85c25808d2fc3438
MD5 32173bb99000e95c02096dc94ffd95c9
BLAKE2b-256 1762945b16807ddf6890928219639cd98fc444482c34c2224647770287311f74

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 44c44f413026f88b38662221aa4dc79430987efc1ec9f44003fea86609c5bfc4
MD5 12c0ae3d535efcae17ff48a3b0a4fd69
BLAKE2b-256 c53153f482dd8eccefc25d0a2228371722744a062f6e9c2888146a8dfba7a055

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.4-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 4e390f461fa99945265013287f73a6a8d8b55740ca45ac11485ff32b21f56e7f
MD5 bad6c7f75637c5ce44f2b21b591c81b6
BLAKE2b-256 5605d447c83eee03e76a85c4557e607115f1e1ab056feaa3a9f364312d2cdef2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 85f53a14bd9340bfa0c4f3d58f10519af91a40a1db74dd9526a536c88c972359
MD5 c399798da46ed41efb66a6ffdf941aea
BLAKE2b-256 f8b04fa81f8f9c87637db783ad04a1be3042cedddf5cfd04bc3eac97972f9bd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 53f1d65efba8f6faf2067b3a4f97339c2babcaccbae60b922dadbe155d0aba04
MD5 0c93a1e521a1a066530f9c2a9b25c2ce
BLAKE2b-256 5bd009bc2037596f8790343dee2cdd5325e3214ee39ae0d31e35071775b2b286

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0e563d3c16a8d63de41308dabddff29b904cf3c70751785019f570edb0ef9cc4
MD5 fb61740e5705d0ae2892d911e4279493
BLAKE2b-256 eccd10fe0dddfbbd46a2c7e3a4a0cf5a8ec653d65ba62c5d7215e6db4d63edab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a33e9e202fee33ac9f61e5feed2e0c5d843352a97ea9f81e07d28f8d63ebc57a
MD5 0b79fd8955c2c1daf4c909eceb7524f4
BLAKE2b-256 3af7855707bb1200ecafc218e68304ce54f466d3e8656133f35569ef45054535

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2001b12c7027b725e3dfd387b0b77dee5b2c21581f53715696ae90f621130393
MD5 0e58edfc06d47509003a546ad722ee25
BLAKE2b-256 c09eb453001de7417e33ea27edec029eb0ecc9c9bb9070160d82d998093cf9ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6747d0ed2df9940943185bd742587ee973da46d1bad3a1ddfed603b64f8d6cda
MD5 3e9acbc2e7ebe2b95b9cb1018a09e47d
BLAKE2b-256 2f0f776b87334c5e6c62fa5fc2b48b0d96079ab34e7551d25428cede06e807dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a1cd9337e2174eed082cf6e6141a5bfe5fb9e28a22de7de73ec353e27a9fd7d
MD5 3cf0be18ee196228898661aae163e512
BLAKE2b-256 ca20ada71ac754412f525986938d65905d39da372b5b6b46f6b0e0233bba4518

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa8396ccec2f389f3fc1b2c9793a16917d164edecee76be7fc1d21c9423aa10c
MD5 0a2548853abe06e5e51559d67d721144
BLAKE2b-256 9849bb5ad8638369d1d58f99c109101d15ca4f459311b916e797da0ecf9e1471

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e695b6c853e8aa616cb22a058fa9b75e1b85fef6c7f57696f2deab4062f7226
MD5 511deb9e97947bbf79eed18743d849b7
BLAKE2b-256 3a858e12e0634122e3ef48e9dd348056c3a38124e8d814963e48885552182187

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6310a9543bc924a66bb4a10b360c1fe3d7cd97f88275dfcd398db68da1664446
MD5 0163c35097931b587e491fcd441e6f64
BLAKE2b-256 f70f453b773ab9c6977dab27d8ddce971d489a8d68f156d73dd260c7ee019ec2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45faf526a918f99304ccb479fdf74763a8f5be5c431fb502118fdcfcbe6d99cc
MD5 1b33387cfc8d4e95240882741734042d
BLAKE2b-256 9e910f939a362ef0ec233482efe0c800a0a1ba29a6ce58b1b4ad5b95efea86f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6904bea53c769ce80f7767d56de72c8e46d402ee04ea6fa7aa429b97cdb3a16b
MD5 9f6fe1f20bf6432c9df7fdc6674799c8
BLAKE2b-256 4389d7d4423174d0dc5a7eb1254205689d038876b34cba82bd66c1e12c86e0a5

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 af32f5f51c1b27fb288cde2f3340bb4764922efacb53519326470f7044161602
MD5 e76b2408499f3679827d1bc3cf359587
BLAKE2b-256 f0eca6b96fcd02a040d4aabcea4e7a9658638d24357eceb0ef69cb936f5f1a08

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 55a49fbdbe3435224d4726ecb394ef2dd2837354dffecabe0651e503a7d52826
MD5 859530b99d5dd70bae49b2a5031cbd91
BLAKE2b-256 465667f976f1a7739e1aabad8adc65c06a03a9158452371c52b68c4f2daa3cc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2cca29b1030249a4cb84a9746928e3952176bed8e5f6bfe69811e81efcd50b92
MD5 9497c5aa4f36e069a1b06bce7f7b0da9
BLAKE2b-256 5fc8ecaaa8701935ea1158305982ae8c6b1655466407b4199d0a706f86e15856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec5c1054e8cb2e20550e1fa524bd8387d90253438361c9e6ad474c7ad52421c4
MD5 40d64a421c8c42848afaaa0c93362560
BLAKE2b-256 99c0628a627f7c839c7aa3440dc7961676d942a1bad7cf3876ffd1d515f313f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c69fbbba4b7d039d9fd44ba71aa3f8164d14324629b9b4d754aadf9c9a0d6dc8
MD5 da563ba7c8f77e2c87f4d3952818654c
BLAKE2b-256 565defd0d18e9f1e5abe4d3d01bb9d0fd59bc1b89f3988c96b5fc1b223886966

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b5b8c2f956b6dfc4e51679c78cf24cd494e7c116021b455b66c4b00eaecef06
MD5 9b2491b0257dd20d5f9ac8ef06c9db7d
BLAKE2b-256 7701e3f564ddc3df33469fc480d2676afb6d67cc5de21fa8c5e2a8cb6beab85e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4877264a633770b7f3fe1aa04e09676e01d293f7fc1957b0318221a8f23bd14
MD5 0352a56074a42da1ab02c6e23e4dfd86
BLAKE2b-256 fb361994ca384719be71c4d91c185f68358da47ff73f3fd994f478b2c252c9ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c74d51a6b683f87599895f6c35083c26d23cc166c81685cc490bd50186401ea5
MD5 34f7c2f2af965a132c4f4ba61d2c062e
BLAKE2b-256 7e91ef1b99f346b356f2eae469aa4af578d298b1e855f0da490168ff839860c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 449e7134d9d7fa78522752a4947b16a4cf513726c11490685e3e8fb579bd4097
MD5 b92262a68c880f29f0fe11bc4b8bc46d
BLAKE2b-256 fbb1fec58d42b73e1ec568b896b055eab8391f9119fb789b49e875775af1e9cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b5ceacd364cbd9d617f463979fe00613fa4b7fdc8ca612143efe56ff8673a9c3
MD5 461990b5f88f43801d105aab59ee3749
BLAKE2b-256 656a4610d96269ea61b19a1d25b51b3b1eebd9b5bd8dde6cef8eba8ef3208136

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06fc8db6b76c311dc9fbf33c3b291789863f63266e73d32350b9a878b9dd82d3
MD5 ecd28217c4c4bb11ac1ba4cc8d7ad535
BLAKE2b-256 45774a06352e2b60472bc4cc6c49662d7d278c05dea0a93ace157d88ac5c1c68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 01d8cd6cb57af770c2c329bd17aebaeba2f9cb78971b3d08b532f94c70d29cc2
MD5 6af7aae23c4a2ce1dcba86719bb19b4f
BLAKE2b-256 8d8b908a41859a592c9b3988d2fdacebb4c3514d6f03f8b09d538e0014de6e7a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a167dfd901636c3118553352feaa6095b69e8d017e1f6ab8989d0b48b1d6750
MD5 8e22cea6278c948a59fca9fd752efb45
BLAKE2b-256 4335a11129921c20cc34da0872e34e06f1a240d6ff9362cf4e447cd02d7291f3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c0fcaed95b50d7eda223cd9a81535cd1924df9f3eb6688a09d257eb09341b34
MD5 46581bce3345f074508913dc37e45db1
BLAKE2b-256 d09f989aef350985a2a7df8912e31f9c833dbe35a6e59291023e5d267615d46e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1a7b497c544a114ff930221a2cdd4dc4bf27330e853b9a8691acf8baa99a4d11
MD5 be44dc1229df50b575ce1b54e0640b17
BLAKE2b-256 e554096669174876266d1a622381f8116f0b3f96e39e11b606acbd276c258136

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a3c1c03f1735225c6c58ac5a93216ac8dc68c5966c8fdf098308ab2f88c5e0d8
MD5 bdb079d118eda36640a2a6dc4165a074
BLAKE2b-256 5cbc9df6959c2400d86922dc920910f401867e4547f5c64772a19bee38864b28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b358c2bc50be6b07c60b2ead4f158537bba91957531bb231772e1b27b60644be
MD5 6ed8f16928000b3551f8d046ca3e8ed6
BLAKE2b-256 682a58f8b14fd1f640f4509477867c560460b277f19e4cd8b22139d1818ad987

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d580f826eb1eeba29be0ef0fc998f4ad5e42b03b50944724b82ecdd130a21a82
MD5 d3c7c77381772fe91c19b10e27d0a20d
BLAKE2b-256 6b88c562c013215ba0a49b2ce36f5a809046e1ee068c104eba93bbba60e3805a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 28edc11c12a1ddf68aa2d2d1188bade7a8834f599854d778399bf7ee610ea3af
MD5 6e4c87a73e0c789c6c64c22220d2cd13
BLAKE2b-256 d8fdf1722a1af1e4c645988a124c1f7ff3c3571ce728fdc1230893cbf5fb9ed7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 117984ce00b80c7f152c1a76028eb303f4e3e9962e7bd2f4b6a18318125da980
MD5 9fff105a454f3195e6aacd2897d3e690
BLAKE2b-256 ca36c42ab8de56e3d8ee9e7dfa8314920edb28a5759a1ef24b6a74b0a865c0bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03099ae9264db850f1c2f03ad74efd14b189873bc4f9cb5a80d2fe3fddc5d824
MD5 c3798f0b213f4e64f019f22d12d40069
BLAKE2b-256 14a6a4337387633cb1b9a4edd90495eaf3bffd7179189e8799096dc781dd3afc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e33e57d1c03b7cead94d0b54916049bb443049214c61bda126cf9995c3f651a0
MD5 d4cb614033439849edc236a6687418ae
BLAKE2b-256 b52a6413eb2af26aa29b7ca10bd79bd28859847ff2a4cd310f179342bc81ed27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 064eaaafe76743c4a524ed146986230fe5c875595b14adf7d0357e5e3cc95587
MD5 dcf47af44c83fe6168a138c14e478f4c
BLAKE2b-256 44aff3a7304d4ee2586fc807fdc3249eb4fe00adedb9139e499c1bacabcaeb68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 635cc05f099d31ed6ad5318c168f81bca2fac8dd4182c310ab1fccbda417ef2c
MD5 69566bd8c7805af9155d1f3601346c8e
BLAKE2b-256 eb43fc90b476e12c16b034e6b29fb0e74aedf126cd398ac3efec14248b5e4d65

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2aba84c76609180e07a3271f9286fd515e2d81235a8f4f2bce4fe43201000ce0
MD5 e29128900ffa9f1cfaff2932fdb146cd
BLAKE2b-256 b0e76911bf5ab175fb70b7ca00d27cf0041b3ee691776e407660e79ee756c425

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 70254da97e661a0d183b3129c675a0b8c39ca6d443670e4e89f6398f7b12e1e1
MD5 a6a2342a0133da992c1e6f1e4aba6c87
BLAKE2b-256 83e3351edb1597efd2df49292f5c20278aa01523d67009ecf570ee26fbed5d3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de078435701c94354a147754f7b50484b16e60506e3de6924249f29f445d0f76
MD5 af91c8a0e5b7f524ed80b09cbc3e49e0
BLAKE2b-256 5de13c31505149a4229a013cf04f32eb3da0d9923291ee60604b4a94da3c760d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 877f0618a1cf275ae235f8f3c98de48fb54afaaf0f73adc90f06af0b2609c4b7
MD5 05920e76487b3d3f4e3c4e1e9e251650
BLAKE2b-256 b7c97d0cb0a1fda691ca89674343ec1f0551beb958dc76dd0aa00673cf65dbfe

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f67b7bd4be44e61fd4d031e53ef9afbef433d9b0812053f18fe9a602ebce02cb
MD5 d575095ad0220d8c10286da6dcb6049c
BLAKE2b-256 8b3ea5aacd06ac6c100707647fbf5731596a418a91d642bc9ff7dbb826a071cc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 074e461fbcdc1a3b44ca15c9059b1852873d68c06b8f8ab54b66b83c0a0649ef
MD5 f6e308c35f31daa60d30af81a2f46fbb
BLAKE2b-256 f9eeeddb483648f92f13ba0b04c8c781ad0a923c87e79da93bf861d951796526

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 928aa904992a8df6590529d9ff5d3bd292d2a1f810aa754de125fdf95bda6e26
MD5 d2e1e5d2ede0aaebc4b7a3c51a0ca0a6
BLAKE2b-256 d6f970484f426c46898e197e61bc5dd5071abdcaf9626f855245b0975cdd3ce8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 388abd566bd4e7c96bc9db1b25a5e72d3413b0a61dac37889a36de1ea3f4fcc9
MD5 c6cc3a9457e573b04313c9058c52d9d5
BLAKE2b-256 906bf191f538d62a80c42073b051000932345392a7a9cc6b6ca8deb0e3009774

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9030878d04fe511be7222908948d23a2dbe85d8e9bae649e181a86fc9cc22f11
MD5 de7361cbc6b22e8e4641b9c20c0bb0fe
BLAKE2b-256 6ddc82d9a9e42b1737f2cbc4bf25cedafb9f1b906bb3d2e9285d7adb82aac191

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7614531ca4f8513dbce8f232fc97b9b0b7429d29b7788f531e53d77ab5a7a52e
MD5 d9a1114b2593f9476fc64683144392c5
BLAKE2b-256 d230be1b32a09d82cda82d82f43bb3f9dedf7b9aa1f4596ec2463be115d869f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01ca415bb8842f2e29a0a06df269fcc1f41232af2ee504b9f61fd3174f40a530
MD5 ee6c9d920cbf6d8cbc62922856182767
BLAKE2b-256 bcaad0e1891e6a95402d01a21531f9590394730e35468567c5b3441f8ab308c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7178f473dda4122b9830dc9a73651727a088c7d12f0987bebac9839693cad476
MD5 c98a4563443e34365066b2d0ce65ac8b
BLAKE2b-256 9bc719736140ca8463aea6ea9344f6eb3161588e5900af774191f13ff2e95d7b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e8bbbd313c2a037b8831d517aac5da11f3e5a2967de29c77e7e469eeb62e0c5e
MD5 89faa2573bc24dac19d66e9a03747715
BLAKE2b-256 85a7341adfb0ed1a63ab947fbbce005f74e13a875a98037a070923a35e56a4bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 430ad994a692a8452b62e66479392cabe50b8030db8c3aa4140faa157dec1651
MD5 f7d23cbc22739e637f465ecb26faf5a7
BLAKE2b-256 d0bcddc6fd509fa71de9cf592ab22c4b34888c5428f7d47dd2b21c53dbf1f5b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48dcf1b4b825f3f4f359da413f090d1ba1925fb9bf188649d5208ae5ea25f34e
MD5 5d18f30eb5f304ab1e053b07cb9c6bb1
BLAKE2b-256 09b9735fc6d3a1e9fa31b6dd53c10d4be21b2e50599dc59c85422cf99237e721

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bd3b5167c1b78abd18d19d404dfc91ed6bdb82ffa07f6537211fa2971beb2f5f
MD5 4f4ec62f08930a6e8ad79f3b695cc8d3
BLAKE2b-256 0d4a7819f4ce9385dc13e074aba70887a97a4cecf9b9fe6991514e3202d8a85f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 480d54f77ea7a0678a74c42b750df0d747dc2e6d9366fb75271b495eb9c8ddbd
MD5 fad5d5ad1dde356a39ca74436ccc4190
BLAKE2b-256 2a0edfcdb1eb082d79ec9db75525fd4d3e57ffa4822bb6513aec1d7df9b09892

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0a91fae7e749877206ef923bd7b28afe25bd32ab08775f51ba054b43d507f184
MD5 315ec785bfea479c18da15375f8c626b
BLAKE2b-256 78e78eecda179a50bc30bc7f7416de6a872f628dc0aededf4cd9c100fba1afd6

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 31882bd7062b6643e9886b9b5626740896fabd7648135cecdeb2fb396034e533
MD5 d0c4cfe16c8d5e1fba68d106be7eca70
BLAKE2b-256 a6836fa2e3ddb21d2edc5669d1e53a77eb777ba6da0a53ab461ceabb8c91f4bf

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ff68bcd2bd3a7a0d136433ae4c98676450a917704f5e2299c4f7bb3aa6cdff6e
MD5 a87584460130edd7db5dcd62ae7420f6
BLAKE2b-256 be1a6c254053d25102c7b0d660817f77c42dc810f986cd4c9c55002f15cbc52b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bc1e0cf9bfccfc333353a725c9f9344d84799d0a83bd940476ea24a09c796eb
MD5 72ad80cf34f7e32a49da11cbe3395161
BLAKE2b-256 52dcf8225b2b6b97a334bf08047d93bf76a6891e3126a5aa6a6ec860ee25ce4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 539f60b87395121189f93367353ba65b992d7b38178c564ec892a03d245c3d63
MD5 d589329d2d300ef36adb467248c69193
BLAKE2b-256 63d49eea54ed1cd29bd39f70374df34612dea8f4d6c6079f71da658b86c5cbb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b591962317c4c23906b40d77d26ed216f1d658e233b14a23bb75bbe3470c1ba6
MD5 c15f24e6fbb6c174b24c265bd36a324d
BLAKE2b-256 a5a63f4a4cf0a8ee100b02cd91e6e050206ffc016f0d62d8f2c8136a44c5d7b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30668561462b194adaa502ba9ae0cd02c98127be3ea17ae402318e796e6cad8e
MD5 69120499ca31253ae004805aa89ee86c
BLAKE2b-256 56462647e9aba21b6421cc5c85307c967c8c9b34079c00727d0b69d0587d37eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d588696638210bc23e66c0d1df4151f08a7519726e4dfd1491a8d918a6d6945b
MD5 26a458c58837088f871b71bfdcc00db7
BLAKE2b-256 e38060fbb1c317cee9a5ed72ab19f1511d8570288186d54b785e8e1907bd3814

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c44f525e54053cfb4a4fd2745bc63377363e3461c4a8d71bad3ecb735e382adf
MD5 15d8dc02285bc8168b5e820a930aff9c
BLAKE2b-256 124935aabbf94e2461c6beb431563d17b135b8e1dcb8b319bc0738992f60ad09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6ad9de369fe4821bbfc917d6ef9a5e4153d7a1a9db47331b8871adff5692a6e5
MD5 4b2af8fac506f1706768ce5a087900d9
BLAKE2b-256 5f850f3cd96b939892e07a1a9fac8b783f955e338c48e07d49d7e1c04820ec5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3efeca64efb197831d7c8cdaadec7fd7755e481d88bdfd4b5211a9f8483b8be5
MD5 a931360ce8da5589798218cb5f930a4f
BLAKE2b-256 bf6752dcf07ab0edf65f19163829344a8f1fcc1e082c89a35d1e852884ccc1cc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7b90a3ec37c6dc6fdd96b18dd033ad104245e907c8b2ccbf8791fa5929edfc6
MD5 ee1c717d0ce1338add7a27272d0f1be8
BLAKE2b-256 866ba96ea1d59da454b5046f56e7bac37e4709849fe7bd57f2ac2db28697d449

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aad7a942780b3e8fa2f5920ed4f95967f781cb4f812ab68ed97d2a6b96e78668
MD5 dc92861518e9e222cd3bd9ec25836941
BLAKE2b-256 d165e44d361166dce35d0a342e2f7106f9b814992ae8ba4f993c4919a54ee92f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe1cbd26b0525b9fda71efa8dc95dba7dc8e61eafc84f3c083d865b72f630838
MD5 e9ffae30f71458265670e6d24df95d6d
BLAKE2b-256 07d0ff4e556894403b372c5f9388ee992fc0c2bfa76a93fbed6393eb7d085558

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a04588713aac35e4fc3b17837ab024b201ee2fc1d3be3e6688efdfd157cf32cd
MD5 6532cd7eb01ffe29888ab0b4342b25c7
BLAKE2b-256 10e132b643391c2917f68c7357f9c6849e4899af43905b1467b6e54ff104a5f0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2eb1db6ef78cf93d762a72fe4e063be844a5fe09d5e2992dbef2f329a1dcda55
MD5 d70618ccf5876c272552290d6ee828fe
BLAKE2b-256 bf9b936df02ea5b5adfe880abb734d61f12ed5ed3a4fab48473eb2b661faccf2

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.2.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c67c50d2ee258e732bf672fa567988fef2b54cf79c41ad0299f3cfd4ef45761b
MD5 23132bf66a6feb91aa8e4b571f9e191b
BLAKE2b-256 ed4bed9c1220c238e57e62923c25d633aa967a0d45427e111aaa0b782f3368ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75d7933ece91324d6c1b46ff4eb49a9c2795bac4d1bad828cd0c82a1fcd14e66
MD5 abd909a0fde9853006585b405c9206f8
BLAKE2b-256 778d0a4506c65523aea112a7b80e65ef26961b8cdb4a8ae9a3095170e117f9d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e522b3695e634bbdb9b70bce20743e12f08f5a001ec9bad5e7bab016b406aadd
MD5 bd7fc1001be96b3c83d2aeb8676eb209
BLAKE2b-256 7f00b7295bf1c4665a4448d72e620b3fc2e217cb68cfb3e4e5e1e3006ba81d01

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c12da705af7cd5f052983df3342789f9c37348ac7e935a6c4aff82fb4e892eb8
MD5 bb6795c8775d0a683212d795d1f6e567
BLAKE2b-256 4852f9fd7c213852a478d94857ed1ee3e1c5a76418fa726ddf6e79e3f9db3afd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9d2a2a9e3a6e248a9c886866bc59e4b4cb1f2cbf673ac2fbee724f276049ec9
MD5 285eefc62fda7581d0dbe6a6e31ba811
BLAKE2b-256 79b2959eeb756e6189f17ec2b510207595ed4a958d86a9edc5c72675772681cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e93f3642d9a254502c4db4cc86a353e117a1c3f647b88de82ed0e9aef353a5cb
MD5 874874a96e6829b20307b2e5c3b8122d
BLAKE2b-256 686ec0bd477b41a738e0e3459f8475c77fd5144aec4e77275be839419107a5e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c3453fda85f1a826ca9c0162cc6b5e039a741af145e5e75cc0b4d71a3c2fef2b
MD5 cc2c4857b22aedd56b5f20a2c256ff8e
BLAKE2b-256 4b5f9ae4c8a6c3e77d4f9c597f64f0019459a876e6e38b7138c265a444f5c304

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0419fd6541334039a095f0c83cc45492af8690496ad2026b6a0c91cbed448105
MD5 097d830d20bef76a6c2a0e62d7ebc726
BLAKE2b-256 1e0008291b7c191ce538d3eb7b649ccb480bb00d00759ba45c69ae1d8614c3e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1262ff7f94919fc891ffb300435633942604f22ff2e5513bffdcb49d9526de98
MD5 47275a8572a4ed1d19ccb14bde8e58ac
BLAKE2b-256 7e9a2c20341247427ce9b0f36369f35bb3fb917a386052580d5051b8c9b54cc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66706b6bbc0469806f5722622cf05ddda568e1deb8efcdb8fef9f7bfc7a13a29
MD5 8f30165fa5545fa16c211d2356d6a719
BLAKE2b-256 5e17391342fd3d2853f7f23f6def132d768bba8db994458f4b66424c84a9a4c6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f663f6e81c816f2899689458abd58db1da5faf1ab07c5366d47e7deaa13c4aef
MD5 5398c3cd990acd714d6184c65b150229
BLAKE2b-256 a84c9cfdac0aa8dd8bd9cf881c2fcc0643276dcc5b8f5a836122c9dab746aed3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66157a757a084effdd76714c04fb149c0afa84572352dbb63b212cb381e40f0e
MD5 195a5922a9b41bc0e4a6d2692a2fcbc5
BLAKE2b-256 f0d578af32b93ff74a88c1d683c25db2593e3cf1c7c9eea682fed3bc374b4d7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.2.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ac268bd3ca87994415f8b46ff335afff5f5eb3e1a26bd81ca7b771c7a296b63e
MD5 20c8a5c080d5d2c33764ad0bc8df088f
BLAKE2b-256 1c8d54c9677b28d4796ca07746dad8220f043c16f3b59c4d6617c30e58209fed

See more details on using hashes here.

Provenance

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