Skip to main content

The fastest memoizing and caching Python library written in Rust

Project description

Cachebox

The fastest caching Python library written in Rust

Documentation | Releases | Benchmarks | Issues

License Downloads


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

What does it do?

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

Key Features:

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

When do I need caching?

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

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

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

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

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

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

Why cachebox?

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

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

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

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

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

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

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

Installation

cachebox is installable via pip:

pip3 install -U cachebox

Examples

The simplest example of cachebox could look like this:

import cachebox

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

assert factorial(5) == 125

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

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

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

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

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

from cachebox import FIFOCache

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

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

Learn more

Read the documentation for full information and learn more: Documentation

License

This repository is licensed under the MIT License

Project details


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.1.0.tar.gz (152.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.1.0-pp311-pypy311_pp73-win_amd64.whl (334.7 kB view details)

Uploaded PyPyWindows x86-64

cachebox-6.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (680.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cachebox-6.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (708.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cachebox-6.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (747.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cachebox-6.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (624.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

cachebox-6.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (467.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cachebox-6.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (508.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cachebox-6.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (497.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cachebox-6.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (471.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cachebox-6.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cachebox-6.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (495.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

cachebox-6.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (418.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

cachebox-6.1.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (449.4 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

cachebox-6.1.0-cp314-cp314t-win_amd64.whl (333.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

cachebox-6.1.0-cp314-cp314t-win32.whl (326.2 kB view details)

Uploaded CPython 3.14tWindows x86

cachebox-6.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (678.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cachebox-6.1.0-cp314-cp314t-musllinux_1_2_i686.whl (700.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

cachebox-6.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl (737.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

cachebox-6.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (620.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cachebox-6.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (465.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cachebox-6.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (501.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

cachebox-6.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (494.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cachebox-6.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (461.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

cachebox-6.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (442.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

cachebox-6.1.0-cp314-cp314t-macosx_11_0_arm64.whl (407.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cachebox-6.1.0-cp314-cp314t-macosx_10_12_x86_64.whl (439.4 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

cachebox-6.1.0-cp314-cp314-win_amd64.whl (341.4 kB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

cachebox-6.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (687.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cachebox-6.1.0-cp314-cp314-musllinux_1_2_i686.whl (712.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

cachebox-6.1.0-cp314-cp314-musllinux_1_2_armv7l.whl (750.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

cachebox-6.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (629.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cachebox-6.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (474.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cachebox-6.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (512.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

cachebox-6.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (500.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

cachebox-6.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (474.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

cachebox-6.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cachebox-6.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (500.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

cachebox-6.1.0-cp314-cp314-macosx_11_0_arm64.whl (415.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cachebox-6.1.0-cp314-cp314-macosx_10_12_x86_64.whl (451.7 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

cachebox-6.1.0-cp313-cp313t-win_amd64.whl (336.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

cachebox-6.1.0-cp313-cp313t-win32.whl (327.5 kB view details)

Uploaded CPython 3.13tWindows x86

cachebox-6.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (682.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

cachebox-6.1.0-cp313-cp313t-musllinux_1_2_i686.whl (701.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

cachebox-6.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl (739.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

cachebox-6.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (622.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

cachebox-6.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (468.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

cachebox-6.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (503.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

cachebox-6.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (494.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

cachebox-6.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (463.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

cachebox-6.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (445.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

cachebox-6.1.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (488.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

cachebox-6.1.0-cp313-cp313t-macosx_11_0_arm64.whl (407.9 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

cachebox-6.1.0-cp313-cp313t-macosx_10_12_x86_64.whl (440.7 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

cachebox-6.1.0-cp313-cp313-win_amd64.whl (343.9 kB view details)

Uploaded CPython 3.13Windows x86-64

cachebox-6.1.0-cp313-cp313-win32.whl (334.2 kB view details)

Uploaded CPython 3.13Windows x86

cachebox-6.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (690.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cachebox-6.1.0-cp313-cp313-musllinux_1_2_i686.whl (712.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cachebox-6.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (748.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

cachebox-6.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (630.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cachebox-6.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (476.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cachebox-6.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (511.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cachebox-6.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (499.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cachebox-6.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (472.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cachebox-6.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cachebox-6.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (499.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

cachebox-6.1.0-cp312-cp312-win_amd64.whl (342.9 kB view details)

Uploaded CPython 3.12Windows x86-64

cachebox-6.1.0-cp312-cp312-win32.whl (335.2 kB view details)

Uploaded CPython 3.12Windows x86

cachebox-6.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (689.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cachebox-6.1.0-cp312-cp312-musllinux_1_2_i686.whl (713.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cachebox-6.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (749.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

cachebox-6.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (629.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cachebox-6.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (475.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cachebox-6.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (511.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cachebox-6.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (499.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cachebox-6.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (452.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cachebox-6.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (500.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

cachebox-6.1.0-cp312-cp312-macosx_11_0_arm64.whl (414.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cachebox-6.1.0-cp312-cp312-macosx_10_12_x86_64.whl (450.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cachebox-6.1.0-cp311-cp311-win_amd64.whl (336.0 kB view details)

Uploaded CPython 3.11Windows x86-64

cachebox-6.1.0-cp311-cp311-win32.whl (333.7 kB view details)

Uploaded CPython 3.11Windows x86

cachebox-6.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (681.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cachebox-6.1.0-cp311-cp311-musllinux_1_2_i686.whl (708.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cachebox-6.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (747.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

cachebox-6.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (624.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cachebox-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (468.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cachebox-6.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (504.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cachebox-6.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (496.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cachebox-6.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (471.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cachebox-6.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cachebox-6.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (496.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

cachebox-6.1.0-cp311-cp311-macosx_11_0_arm64.whl (417.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cachebox-6.1.0-cp311-cp311-macosx_10_12_x86_64.whl (449.6 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cachebox-6.1.0-cp310-cp310-win_amd64.whl (335.9 kB view details)

Uploaded CPython 3.10Windows x86-64

cachebox-6.1.0-cp310-cp310-win32.whl (333.8 kB view details)

Uploaded CPython 3.10Windows x86

cachebox-6.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (681.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cachebox-6.1.0-cp310-cp310-musllinux_1_2_i686.whl (708.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cachebox-6.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (747.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

cachebox-6.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (625.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cachebox-6.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (468.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cachebox-6.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (504.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cachebox-6.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (496.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cachebox-6.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (471.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cachebox-6.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (448.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cachebox-6.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (496.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

cachebox-6.1.0-cp310-cp310-macosx_11_0_arm64.whl (418.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cachebox-6.1.0-cp310-cp310-macosx_10_12_x86_64.whl (449.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.0.tar.gz
Algorithm Hash digest
SHA256 4a724aee3a9879699151604aa4773ffaad61b2bdb0a6948e6cf1bbd6d35de60c
MD5 fe30975d0c62663ea7dee801faa4e6af
BLAKE2b-256 275ea802470aea9da5a61376904f0d71bf4857220351361c1f4982bcf09171ae

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 93efc50eb5b58c29c5ee7f5ca6330bbdd69b4e123e137a713410d8d6ee3952fa
MD5 66f347a26c8fa6d7fdb27196fe1f9549
BLAKE2b-256 1cc0ef7a1a7eea3aaa62a775415fcea3e7a55b9f0ea83d5c574a3c5ebff4c7ae

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddadcc4f91b00d06bb42ae544f3e71f86ed94b986ce5bed0e2d1fe9c972f4f9f
MD5 e30713f808c54d22ee6616e1c1ae25ae
BLAKE2b-256 ff20341861ddc6b2976b0c211ce9fce030f19195f5f74e7f2593db9045863252

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 219854d69196c5f407a35ce87bd4d6aab68ce4f40caf2796ce7f7b08abe3ceb7
MD5 1d5e9c7c9b0349d856f7f9d67e6f96b5
BLAKE2b-256 9bdb176f67a06553bbf4e9e6628de90f209ef435f7aa8bb1af1ba271f361635f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9efe80db57ac7cf6dadb17f67a9426e497f4b2efbee2c590a5c78977fea4309c
MD5 69d4ae9def3f25191a6d2e74dfce4ea1
BLAKE2b-256 92d66b3fa286ca2784b0a17ce516c51e9afef3fddb23c14f5497ae1cf1996d49

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d12515d99c6ae724b96c4ff72f0b9766a96716b0e3ce90cbf29db102ae5f1402
MD5 9585282d0fdac4ea1252b93cf64ccd1d
BLAKE2b-256 98dd7066aa124676f953081bba1d9307fca4baea86701442de26d28b9998715d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7063d6a89ce4ad5b7704cad629c0d8d0db1c73d66e4b91c8e5334986e2aca1d
MD5 50568e5912c53127dc26cdd1905ab968
BLAKE2b-256 e96f32ee0add99a37c617046d5f116c6a5997b6a6a13b243c2c831d0ba89ff93

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 09a3588d69885e96db2b354381586402111e783fd85369c20145956112998432
MD5 d581ff4c1c5207cf3e4904067a8e57b1
BLAKE2b-256 e95d2fc9e4fa0d6dc7dce9d126adb19a09fc6ac1b13a9f9c58223468187437b1

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e51117a6d4364acf4dcca275d6d1f254291c086e2535898c2fe668d6bec0580d
MD5 728ba266c3a68867737fb0dc40b1a461
BLAKE2b-256 d7369e772312191a23a3ee6fea113e420f5603ac3a20607beb834f7ed4f51dd5

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 27cc9b1a23da8061b818bea2a507b04be34f2764c25b350959dbe59e84adc8e7
MD5 b41d99c7de586814703934055a0644cf
BLAKE2b-256 4fdd8d83985d7e449d77d1b211dd65b96fc66dae57ca21b4faca174df9506552

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f405ac949eb1b1f0161fb3a9d6fc928fcd3e85891f49e1afc42c7f30d9ee21ce
MD5 86a1296fedd960247d936baeff7bab91
BLAKE2b-256 ff3f43db4f94707c5913c4ab71d088ac7aa929023c7dfcb1d8951505b074d0d9

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4f5add4c126d257e3f3d99a1457c873cdd7005ca5c3306b7b5c3d789ddecd78f
MD5 772484a32d029bf70b6b15c150524e8c
BLAKE2b-256 1e6adb6e4e6bfe59d1e64aa16237b14eb9a7290f0dc93806a88289ab6eeba062

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62124decc1c5e8866e7f710a449a9e8925077b606698398260fc447d7ae55688
MD5 fe4c10e71ddd98b1ca985a989d484a6b
BLAKE2b-256 360c49a9af0936a073938d709307fd97c75ef0a636c30f01c7bfd2bf7bea31d3

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d232cfa4c7916f0549bdc09045a01dd8c1c7136f8b04861b8b196435f7103e1c
MD5 dcb53d83e0d913d2c352289b2121b6e5
BLAKE2b-256 6d308c2b9c97307f8bb25ee24845e287833614518e8e5f069bad3d1d97498369

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c2a1b53755ce3f01a8e8dd3b619d971cae389132bbbf1f0a59934304223b7c51
MD5 fd68c6d18e4edb5a7e1aff1140af9a37
BLAKE2b-256 3265a82ade28408618d6d5b1891664988d1959fac1aac30e55782e395cf7798e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 05b1b22a6c2b1d7e54863046a547a7eba29bd13c4ca4322fdc5dda873de50365
MD5 6ff9036ed7d45cff8134f29fa6a20c32
BLAKE2b-256 57034253e94e255f5c89a7126891afc09543454c4e9166d45acaf137e339d6ac

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fff639ef9cedf692cf691f0ae128402a92bf068e6bf7d1753fbbd2ff58d41caf
MD5 38e5746055537169fd4025f5d7ae66bd
BLAKE2b-256 4ab420897d7a5d0951f34ea3c570671cdf1bbef817228e605b3c49e5554fd78b

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9c7078458285e697e1fb86200cae69e356553bdd2b69ff9880b891ce9bb28ab0
MD5 b4a1fd51c337514d52b7497cb03c76e0
BLAKE2b-256 80a2f0944f99bbfeb2e0fd157e553049db14884598dbab2165f5ad74bc16c531

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a0ddea6fb6c8060677b2e5078e47d784d5e92348a33c483848982cd4c56155b6
MD5 0a2b983011e8826eaecd19386c1380ec
BLAKE2b-256 3df6c075f63f0eef4eb4244a6c8f9f56eceb3302593163aceae3aca02debc324

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06a5cca77991ff9e566a4041d2f509ecf5644c56061611c59ca742e4f44228cf
MD5 db177a6c5ed52ab445dfaa95a074567c
BLAKE2b-256 43640da9c617d023a1689325f9e2829a0bac3ce51c3c7408e458056db6b49375

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 180f216adfb6d289e1f69738025d052f16d726b4532fe517143164d69b96382d
MD5 e040f9ec37c942212a6615184a7eca34
BLAKE2b-256 4a5065146176b02d9cb889440fea6c46e5b185e158e071fcef3d9fd892eea6c5

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0a27b2bd011209300308bdcf778d7c25ca67f4a86d20b886b820e8eb6cd6135d
MD5 4d75f07d22733ab46d2e4f2c7253d8fa
BLAKE2b-256 f70678bc2092a2c05b12c995c892e9e9dcf8552407dbfa46e24db5d9aea76430

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db5c2445b12e633c572ee8f85136f257d55f19b11dc2dda96356ec10ec5db4c5
MD5 928dccc6e0c5502949c61d75c2a92896
BLAKE2b-256 1bfc3a2a99550d71dee71d30e233c3434c6e526bf14386e4a381a9de882cee6d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ab0d0aa36a19931570815629ccde7fa2d39d0224256eea876e9da6b9af17059
MD5 c18c477e7e37b0e54321db627aba7976
BLAKE2b-256 41b73c6e940cbc7338aa1e29c2c4e43745424001ee994c634b2b2b8ec2b8767d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0eeea4d4ec9074061209140e99ad9be8eff7c9982775248f095ac11df95e06fd
MD5 4d8025f29f910fb0e3e15f203d47f41c
BLAKE2b-256 22cd45994bf77a4bacb3e93bbf5530df2dc4e3c22db511304bed4c0162e66c86

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6f21815e711f2526babb2b9c2a2451905c1a4abeb8f3fd356e36d2819d227501
MD5 7cc6c2c5288692a827cc55f81b7a620f
BLAKE2b-256 fe1afe55ff9bcd6e6c2a0652867e7d6469fea9913a7568ff2ed74fa6a378bada

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2e582adb6ce9761cf8a8741324b0ec5a89e14f0bb01460a0758190004a5a6fd
MD5 d815428d551ea60847d996b0951ff20c
BLAKE2b-256 a935921a2289ce5ac2516fb6f2f6d7e456a1db95e8d341d04f34541908b4b532

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a77d287fe7b91bb4398943725a418d1dacfed2ddbdf13b075313c7631ee425c5
MD5 a0432b2137f4fa6d5dd8519f6f181282
BLAKE2b-256 a3bdf08ca6b4ccb6dd4fb0f9bd39c62494b607701ee84eeef66c7cf379e0de4a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dbc1755c95c449b9b102b90d3978677c9f7034629c80ab9ea5b1ad0d0550032a
MD5 8a08a75af8209997308893d343b7fc9f
BLAKE2b-256 09a4ca153fe7165dc72b3a58f28ed0e78f52d9e1666ac71ff569781f12e07546

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b224914d80d7da860d87d90025fb636570cd5ef6db0a6adc74fc1d9e0fdae5fa
MD5 d74c3fcbe5fb76a73e9f2e06a56fd39f
BLAKE2b-256 c4e8edb32a69327d3f6bfff9a4d0785ec9f246b1c42708f533209cab49ebc2f4

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24cb1098e63239d5102c109599c0f4919dd2d4784a7b68a416819e74fbb4dad0
MD5 88ba4a8afd5a2c3340c8e0105294bcce
BLAKE2b-256 e87402a85e13c624a104de9286712ffb152ce6600cae26c69d6d20ea31b644c4

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 32e8594e43a1cd3ea64b6397cb32bd7d3c5621ddb9659ac893dbc5ba5982f986
MD5 4a86f8b1d0ca529236b12dd0615e30df
BLAKE2b-256 d1e25f76bfbade82862cbe47dfadf1e7f770357b520037c2915c869718182f0a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 51ebe248de636251187b570734c322c8bf9789c48eca25abb73a7be5c25bedfa
MD5 c537578871c1e8b3e3c593056fce1cd0
BLAKE2b-256 8aec2117fe8c2d2aec8e7cf4a4619a01ee95c74e6aeb8584df94e2ba5758e5fc

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f656eb41262ffa423956b08496428733ced0f9dcfbc5dfbed9ec39d9363de67b
MD5 415b01a5cb8f464b98a23275205435e5
BLAKE2b-256 3bacb6f66ea79144376741519bb5ef2d32d2b0c2760e3b6829a858171cd8ce07

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4041f73ceb5c0eb84dd86c28f872b9f0df7b109248c118a3c3295927a30755b1
MD5 6053717165a1625aaa82ff902fd12f31
BLAKE2b-256 b8e20564f3929efdb3ffee54f810f90d59befeaab8b6d4cc4321cf9bb71d40b9

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 047ed0e6c7627fc3df9607df7eee47ebe7133845b4ab5191278636e75d4f5ae6
MD5 a0b1015e28decbe87b24d8e3d92bd897
BLAKE2b-256 08112bd3f4ef1a35df3fc885999df77f086395da9d277366d59abb09971ed163

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8f99af998f0475318848cef828fef26f83f2bc5e8bdd708a5533d752451a7c7
MD5 dd78a02825e7bdba8b063b048c0613cb
BLAKE2b-256 fc014fe5088ec78826e59d08adefd76bba15c8c6dcd6e0533ed0dcb146b532b3

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 32631d1a3e6e8bfad4df9724d79001d065f889921ddeb7763e97668c97ec3aba
MD5 9a1d499c54c31f5223130f281f092b68
BLAKE2b-256 371a5257d32c0ef990ec77afcf86be3a936c594240fc09397e738d07fcd42319

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63ddc83812f0bc1564776d60ad8c41ed798e7e8a6f06bae2a0f172af49050c0a
MD5 6ccd29da990e8bc79a2d584167d491ec
BLAKE2b-256 40c0bf48fee5ba8c52579bf72bf5d020062f821a36e368e601f067c04b3b06a4

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 56c20f6970af240eeb36aa1eea31a816a37982a9fbf5fd5984f8d1da158177c4
MD5 e08d0407c1cdcb8f6b3847810d203285
BLAKE2b-256 ec65138060188e431dc7163299df031734006f9ad9f8190f2f8787176d1dec07

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac01f9346e53ee487d3761dea6eb8e6a7c674a967420fdf25746a789e25c7008
MD5 9412e825d8600c01ed3250ace3cdcc06
BLAKE2b-256 a4c167a2da126fd8df87904c74ecf3df1948e510ed48e1dce9c62c0f0a88a8fa

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 448eadc60fd0b91fcc9d0a3d2cca988a0f470e2b25a6a84cc33e95bdeb5e3963
MD5 e1325572ef1a9fa407076bcdb864f88c
BLAKE2b-256 cf184ebba8dfc457e67e1ee874e531c28aca1e988559559bf60e7b5805e3cae8

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.0-cp313-cp313t-win_amd64.whl.

File metadata

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

File hashes

Hashes for cachebox-6.1.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 e785f0a1b83fc13c08cf29ca838afe90d08d68f0ea81937f11c7d7e89871e56c
MD5 a25490e7ecfc4376e2ae0b5efd3c81b1
BLAKE2b-256 d213dd8055339bdfd0e94d18d9055234052ed6065177132fddbe908ed21486ff

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.1.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 fd57a0d5f6254a44de64279c4f795d814f9a83f6b4ebac542237c6ccb05d90d2
MD5 e6e15d12b1a8dff29323e1f747bd3b69
BLAKE2b-256 2bbb0280adea083ba0c4fe99716040f05d08186772eff4e77df524d4b38b062c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f370a57d371384d7a39308f18e72538c0c3f60cacb724064e0462c05ea82c75
MD5 e17341a0fe0eb1e2a4a8fad5e4e5a745
BLAKE2b-256 91ad36aa27ab6adb477b10e0178d3ba8729f8537d5d02945d15600013fc57a8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d6cbb700af3237d47aa5f8534f8fc63b38769ca345214e517e5d182179953772
MD5 eabd70887c0c3e623c6909ddc5114b53
BLAKE2b-256 dd867d37dfb0c3bd60cab7cf36eda66d2ee7f6497e9c174ed3b56e1e25ffacf0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8a5495dffc31052db2c8da64a01da4e7575554981a8f00fdf77e5f64d5d31289
MD5 9c8722097ee36ac2f8b340f550c1c81e
BLAKE2b-256 57b9afbdf9f6a3c6ee309920e5a39ffb50d35154b30e80f6b27f1c710780e41a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d667b872ffceab60b43e686976d1c348758d2bc79da41e413f701588eed1ea7
MD5 4690282fa1b00c42d7ab9ee17959892f
BLAKE2b-256 8d1d3db537a5d98eaef053f00b1057177ad6b55f178191d72aa8da285dcdb963

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40b48272924b364861404a1f828cd532eba2ac4d0bf00d38061c4b7b9c70bcfa
MD5 35ee35e9c4584c2bf20b6c6978cbe2b6
BLAKE2b-256 af3035d459cb40822351ef224233607dfc37b304c844d7e5205bc1ff56f86de9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d73e6ee2108db8404f60b16c1f44178cd5968e73eb6ce689a4d8a0b8a6c1e276
MD5 62f4b07e8b671851b5e9c261061b465d
BLAKE2b-256 f6c7f5ac31488352b91deab4ac1b45a59d6fdc5a10a056d119c38c424e32aa78

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 22381268c85df54e3a7cc94ce2fe3555cc544dfd6c73c53bf079eaa1d4872f9d
MD5 f8d6485f90b9d70932e0de2a7ec470aa
BLAKE2b-256 4cc750207bfc517d21bb826be06921e1e7076aac5f00dc10ceb6cb5e107feb10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7413d1f2076b3152e4878f1d5a9ecc70db225d0b9a9e4a15720bd0f15970b9ff
MD5 4160b8ed31d57cac4433f246065826b2
BLAKE2b-256 e6921291af22c934e423439e6c0f31b64cf8b15835aa899b8ac7347592fb9185

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5307da63d2bd247b2a7cffaee53d955cab2a86efc0d9cc514b2f6236b10523f5
MD5 cfd0ef1b24cf3cd2beec8d986b1cd7ac
BLAKE2b-256 81dac8d5c267448cf152e1e042e3f972d37208c3a02522da88edb9fa1f918d26

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2ce8f93ffab144a5caba708af27cefbaa3515356ac4d09b6a2acc48b42c597af
MD5 5a6f83358e847ca66fb39d8767827c88
BLAKE2b-256 72e304bd850f2b67373c8d63c0423c6107811a8d12bbd74a1a3fc561c7f0cf46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 282e5a17669381897689b38f1973cba57efa83dcf28e1cf0c281864b8c544e84
MD5 e97d35b80948d66b1fe6e71d98bd9f6d
BLAKE2b-256 33401096aa9936e5a64c9459cdc3a7436022789c123987da0bc77dc6ada8fa13

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8ddeb557f9414206a3349239f33bea8313fd64d35e4e9b332d365d92046f9b40
MD5 5ad2eff5a9d51025523665c5a023cf1c
BLAKE2b-256 ccae1088b2d046b7b1e3775858f7ccf96f094a9d3823f08a8d301318249b713b

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cachebox-6.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b55e35b7457e3f3bbed811ad1bf59734e190022a7b054b462dda2921c1a64adc
MD5 40fad434e5df1d76fbaaf24ff19823d5
BLAKE2b-256 61f987f52635ea0e3f13a99f30f29aad0eb4275fc567b2869979685b7cf6b5a4

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 bd6cc163a643fead54bb3f41f68de256cace73a62f9d7fdceac355d2c5edb0bb
MD5 847b31ed4e10c848626b81a8e6378ca5
BLAKE2b-256 a46b3d76e812a77dc506a792c211146ef94a6c2fb84eec02d90877bca2578853

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f3ac77d8699751b986221931ca924cfc5578ae71db7d03fa35a9692414740d6
MD5 3013799a34c62ade6f58aa74305ab423
BLAKE2b-256 967ceb444e1ac579508dec37f72c1d5ad2533f7459edde391694286397daf138

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b1cad1c69222f105512872551fb34a5e8ffbee506e93d22c0e6e2915c0c65ba
MD5 f08d35e5b67d9dc0e9e8b28485ed0d26
BLAKE2b-256 bdcdf0672b413cc7f7ff9f2c6189a8281a8b6dfe22efe67c80342620d127bb01

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d413e0e3b1aa5f6abc37aeb3fadf67f5e37baf4439b625e90d90f33cd218fe33
MD5 afbf78d3fdcd2f6a1d7bc574dfa780ff
BLAKE2b-256 72c7b1fc90ab843ec4e1fee11595dd97d51ed405d4c26df9edc2032c2b519470

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13f725ca1a54ad634ce9f9bd76425d87ac87be8df34896de9fef6617edcbec3b
MD5 15cce0ef2f3648d288761c2dec555a95
BLAKE2b-256 8db7427ffb07c498bf0b1b195929c48053edec371e3251be4f917fec510b37e3

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91de0dc278d8c59976aa5f2e2d96d92b767a9559b3938b0349ce2236e5282d93
MD5 505953b0fd20176e18b8e702c4706762
BLAKE2b-256 2ed6bf852516102211a1ffa6f7678bdc3d4c82d5f7030db26381a928641a4fc1

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4c43cfe379150f5839b285bc99ea4a50c0eeec9f8175ffd430825e7b28882e7e
MD5 2cfc042e39f64d25ae2e6f8ed9ab9479
BLAKE2b-256 5a36f63397a35de8a3f758932e9aea34415c4b9a659672a3152208913aaeebc8

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed09d0b051c47136bd2d13af82fff7382cc7f7a66b7c10cfa79dd669af653522
MD5 1994ec6f30e7fcf94cff680ce4b16eb2
BLAKE2b-256 89737fbd3dd24f68fc5968cceba38e6891666fb69f87802905e21ba720cbe632

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b842c1e7389ee5da15e49cc1ec5f0a16c21603ca43ef2504bee1dec9798d3f39
MD5 1df89728bfc4d7191f97f2cc585df613
BLAKE2b-256 e65228e91f6101e1df08682e4dc65043bcc7c3032eea90697a0205dc8a1ce6fb

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7910d3dbedd96b7c13a7f71d0ab1e36c3a804c7a5ad2ce4f502d04a78bd86ebf
MD5 19c2587a898ed0f92fdc7cb671f2fd79
BLAKE2b-256 821e165c3267ea269201b2bf58e6d4ee21c45a6727fa7004b3cbc682cb77f14d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c98784609e6bf99b619f748bcf32f6c49498d40849c23638e40de546409e2ff6
MD5 40876d08cca96b1042c40f68146becf5
BLAKE2b-256 23ea73fbfc840597f5c75ebd0bdf9fd9502feb08fd624dc117ee817a20d07610

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0aa531fc7f2f81139f32313661a16cb7dac5831b562b3b02209d7f5e41b7ce3
MD5 65493a0aa65b4f3b81acb1e332d15c79
BLAKE2b-256 3550185c8be834ea7b50c3ebfce364dd7dff6b59a772e901c7c98b005af1584a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f8ddf203af3bcbf017b3dda5b38992330f8885dbf9052499d3a6409533ba8a38
MD5 eb4670841767563454fb6bf7f11e67e2
BLAKE2b-256 074db05087b61a4e9824dd5a5dd530e8a2ba298491c551a221252cb05bedff00

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fa3e94f79d28eb1ca90da8e8112a18898601470d1c19bcd20642d0f913781ff9
MD5 11b12a363f0dffbdd1c02fc61c3e1b02
BLAKE2b-256 5e6bd24d2ba325daddd51ea4b80e5c9b2c68311341212af6bfbffd580ed1b114

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e0242bcfe07e67ef3817bde47e7395fb82b6af3fd66617bc22ca84b5c6148e8e
MD5 1ce864efc1f521291c3095ca29eef95c
BLAKE2b-256 da34080f00e034d45cf3002a15e20d1a79c0e3ab8ee7c08d39f1017ee61993d0

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d9f38b965f39868fc25ae14bac07b9189d4b66e660bb7ca14ccd62306d2513e
MD5 aa1cde59ecdc6fa9215787fcdcd347bc
BLAKE2b-256 b60cb5e660fa119eae602632ef9f55b58cb8f362ee762091500b453890649506

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 617a77eb134f567e7218660c30fa319c9aeb31bff59825031ea35ed81a00d081
MD5 afc0c0d874a93c07daeefcc5221402d7
BLAKE2b-256 9465b1e570884c34e1e8be5730f0269d3d40530dac4e23f4712ce21cc4b602d6

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d469bf2b821ce9b76992e9a6ddc71509be19b471e4361c1ebcc2b5b416787a88
MD5 fe49caddd692a7d19592226d189d167a
BLAKE2b-256 9094943b4e0f97626ce3573332011524412a252792012e1f3e5695fdc5f90dcd

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b461cb5c4e023f746d92d24ee88e77f6de05e28d7c9074706187e9864a68f9e
MD5 79e7a678932f2037df11c945d9ae65df
BLAKE2b-256 e2a14c238190655e7668147944e7f7571b352351afa15981a8b9d1f2b8b41a8d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e4ed8c440081721ed022b7154d9a5b06635887f26b086d3984196d34475a9e0
MD5 a9a56005c8dc35a75516f5e8c43f69e5
BLAKE2b-256 4fb2022e476347b444ad622b0b133f2b679f1eb5f04d34a59c8d73b9c0fdabd3

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b6f4ba8c97e0cdd51d273d7728992c726f0db4dc8642c448a094c3d9a9bea280
MD5 5f6f51f04b0e9921478535a07bcd5393
BLAKE2b-256 281bb58da30f17233816402ce03d33415472321211ec94c1d0dd4ba0422a163f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 93e099dfd82a4a43c7a6ba4a7edcdeb32844a3adb200bbaf59013f49e2f894ef
MD5 c6fa239306b2214646a11c1a26b3ee74
BLAKE2b-256 d91da38ef471753364ec321890bd7a17c5503c6fe55477fe85f584146fa83d3c

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f9ea1ba70afb87d0b437c939448b122a0c943b00a723f1d4cbc63174ef380b6
MD5 21bfed31c9dbce9f38f1ffe96f2ddd54
BLAKE2b-256 7aa7bb41a3167563f5fab6afca60564eb8b2b829546fa9210484f948907d743e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 518b0ea48a4aefd8d698e3dbdce91a169b7aecdc6f49814896ae3b1f7cc218f6
MD5 1b08cbdfdd395c347c0add3f950a04c7
BLAKE2b-256 59ecc3e87022d573a4967540e575093c4cac3aa1a928ba169b43cbaa5d6426b2

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d21c6033330e4e80fdd1ba3fe01ac78670d9998c56d03e13e0df2cd646ccdba
MD5 73220f7f30f0a9c489c581d12de32ba2
BLAKE2b-256 fbcb5c81de37d716d3c38071abc1955b34b11bb35796df479195c3e52f87872b

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5aa91ad57ff389071d626c080bc64a2c8d7f1129be15f7f3362ab3e5acc70965
MD5 e05ba973096d289caa8e74a723bbbc38
BLAKE2b-256 248c44cc5cb291d564ce01c08c93ab88f4f6a9e8f00c7892d42fa1b6ec8e23bb

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7d6d7777ba2253dba9af3bd3aa0ac1bd8059c1f76b9da71f83309e662d2fd4a6
MD5 c149a598cc1902cebaa2062bf0bddf5c
BLAKE2b-256 9ec1cffac11a12f1ab0ebc393e3ab5112199b0d86fe88f90f172f01581547ef4

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3363eebd8e93ca59350f231f8d9cbd10aa2d3a436f348a0018ededee6f855016
MD5 9f495438f8b689a0289d8c6b3d3bcdf3
BLAKE2b-256 e3877982814372e3816626f79e91c4aa3a956b0fe702d7ea583b1c1dda7d6c20

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f2320ee78df0949847cdece3e7b07bd6875d5aaf0a42a9c25280b6e1acea914e
MD5 98715077fbe0e96367ff3d469bd9169b
BLAKE2b-256 8626627463c0747255f128f590a3059987ec72a5b6454a70e2b77f4562a1b70a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 601768986a1ad692cbede2ef38d3bc537397880397c5a905720d3f16a1799ca6
MD5 4939665f25c18ec54c8a738b94eb8e51
BLAKE2b-256 e25bec071d5528fda6f543cce3d35733ce656b8b0c220e74e7c40352a8afd47a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f874c4116d0763635d069711a1fbf691185f60e84654342791d7c1efc5890d0
MD5 bcd8d1e90e52b53a7acfcd1043f32f8c
BLAKE2b-256 f9ff8b6f54a9771764be1d6ec840a9913d6be3f8d150d2ff887f747443c1333a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7a06a93c6d53fd8bea9a5f1331d4ecfd7c8ffe3b64878f881461333d9f7a3902
MD5 39fa2fc2fe00af263d9b8e25fc48e9e0
BLAKE2b-256 572b457a94c1e80f156f570c783e9a23892b1239a34a120955ca1bbd32f293a9

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 423f3507c586390363358018e9ccc1655053fe4c30cfebb3c2cf84eec186ae8e
MD5 9c6842290dc24022f777ee35d30d177b
BLAKE2b-256 170ab1af68ce01b97edee386232b47cbe2d105b4b632e31588e80eb0504fa3b4

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 210d79df31f0569b0a8c7efdfe6ec559b7c8be33221a769c8c6c479127daf2de
MD5 c54b6deff1a14b9b46cfa153c277fd87
BLAKE2b-256 e2cab120d4719aba3c7a181fa08d6892be92d9a5c3065d653be677beda998391

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7c0d705d3552b13681a708bba4c9b1efe8de5034ffc6f766edeb571e23151d74
MD5 62f476f5374207791b94922efbf5f58c
BLAKE2b-256 798d325094fd8a614d0c88d27b7f512a2a84cc553ae958772b97dd963157c65c

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42e18fc962fa2014d2211261c27971517777cf20295a10eb8a1710daa687a21f
MD5 7ecefcf9f705eee9aad976687f581925
BLAKE2b-256 ca8c87a27b96ac1a9b4662937c84993108bb8bf3ea89a020c2b1e82b12ae009f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6eb722ee1ef740068182e0d0450b2db80a8ace561d9b8d910cc7f26664ed508b
MD5 2f91b170cbcc6c1d4e7fd994f930b58b
BLAKE2b-256 0da13e4c3ede3f049654d621bd0cab77d5024aa239be0c91422c5c2ffb3bba05

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d99960fded5f033e9d10140fa75b6661b8947f221e911c131977ccac239ff2de
MD5 3ded4eaf17bfe4448300dbd18c53f1f4
BLAKE2b-256 7838bf7d5fe4fa05e26e958e5218aabf17b3e1819c43ae5094655745491a3c7f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 acee3e321fc2c630fa828f55a93afbd25280caf30c47db30bf274df5fd34c4b3
MD5 4a6326ece205f380ceeb71466c51ff6f
BLAKE2b-256 d2f7af1f59e9ecad46f539f892cf6f64bd75ab6f6db0ad2ac19998a748a51ecb

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a56f4955978dec95b416d5e4c55ad243f290b4002b974b3fcf374bb93ba52fec
MD5 04f93973bfc5d80a7d98a8e59f60d6bb
BLAKE2b-256 406675f342a0687678e56839aefec180db909f89fd99f397de6e85d1d9d30ec7

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e67739af2969bfa5b3f2779c06f36d912e1efa2bc27a808a0b0f560731a9bc36
MD5 84322fd3650adf44b297a635f156a4fb
BLAKE2b-256 8116c0bcc5cc20ca31763ee42e232a6432e297cb0e2b4eb1bb32281b16b4ae2e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 63302f8f985cb51a03fd973fd405828a41c5e58c64a7cd8128134eaae6cac404
MD5 a3848ca3726e136541305b2dabc06b1a
BLAKE2b-256 0255004bc9906484197d46998dc107832351f3d744fb12e54e3b76e3ae3559df

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d072393d3713cebc895210063312508403223e82d2e3ad7eaa78929488ad0dc3
MD5 13f31c69e760c242bf32265a6edd6cdd
BLAKE2b-256 7c0dff9d0386181bc84b450fc2c30f4b2be46e7c4bab7768a477995b341d1546

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 721b58909e5216f21d492963c7d78f84f60707c8b14812757eb8cff6a64d87bc
MD5 c7f097ffe39ca1da1908b60b735dca8e
BLAKE2b-256 2c9d8b94da2373b3217aeefb6be06958e3e5f09b305eadf8ffa28fbb1bc08489

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d55fbf0106c68deb91eb9c39d4fb238bb3b85ba5006e3e36eacf91661f541f4b
MD5 4b65b79d5fc055654f12c4a7c1516c80
BLAKE2b-256 236e5ddd57eb12f56ee313cb80fd4acfd25fe3f9a9c093ad0206e99ca3524072

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3c0e22292bf662fddef2bbb19eddc9d3ac95b0e4ced94dc11e2adc9725314e67
MD5 6bfe353c04122c7e2d5fd20c6f5cc2ca
BLAKE2b-256 3e4b86d49650d6fd3d0569e35a4a71e422c985fc043add8eccb77001ce0016b4

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c435bb65c74298569a68cd1ae289cf901dfa95d9acb31cf56c2bdb4b59919ac5
MD5 18bcc9048c05e8a3a5f177d5fc17150e
BLAKE2b-256 7ddcae1fb35c1529787059c74d65ef8cdc4e63b6c92f834fc9a409c48922a80a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49c325733f7b0b9061891020b36ea596854ec85e6647eb5d6adcb8b78720c432
MD5 b501bc9abca35f1c64dceed2b8e0e888
BLAKE2b-256 88f6f42c32fb903d3f40ee8b0a6e0f176d79706f02e8bc747915a5334a89c41f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0fb6cec3e0b22d2b45bed8d7f7591173a0a232117fad632824e809dc11b3f31e
MD5 a3ff925f04a5bbbf6e104a68979e1292
BLAKE2b-256 5a74fe9a2c58783d0b7e6ec23e97c8aa50e2e00e30336400362d3fab720a3efe

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9a29ceae95c3a7d4a2f483c3a4e5c573fd8fb4d399c788d877152a4d2ac584b7
MD5 7bcf8952a6add2843f6da0da32c8e53c
BLAKE2b-256 4eb668c1505b6ee3d26bae80cc2f1af8eb2e38dcfa11d2d87af7a7aa2162481c

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ddc13b810581aa4255f63bfcd6cd40dc67f82fe7c767decfc8ffdaaed9a6dc02
MD5 0cfc47cfc3a859b8cbf1000a94aced7a
BLAKE2b-256 6aa0f5bffccf95fc806c7ca60ea098fd0c22f9bf53262a660436078821acb86b

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4171c23a20215cfd636b6afba5000ab9876207d07b35eae0a10d1a06947215a9
MD5 e5ec4b229ede895123536d677088f0e6
BLAKE2b-256 beee3952c18ca4cb76196fd21f970a95acd6f7537534bdc0f72e4cb16f8fa85e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 10e2d7fbacbba4fdd2d7e87365f4a0ae535ed8cc8a2a7eabee6bb9fe7612e539
MD5 3b8444cd0f54b8531dd987180c6d206d
BLAKE2b-256 875dd7c4ddb54398c9f96cee48b5edc9fc5fe891f174b1ad232d745a48659a6f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea194a88a023afcf824e0029666b5789ced9159afc0d6a720b77e05300eaabb0
MD5 81f7c539366ad868e0084cb7d111f23a
BLAKE2b-256 4e7618d379d6601dd30ae8ed048d579d3e720bba53e2d0e7e67966d1a583ba27

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0b899864b1c15edcda5fe83d2fa0f70120bebdabb271f97410f214f56aac2b8c
MD5 e34d01c8456105ade34fb86900a8f322
BLAKE2b-256 ce93c84ebe3175158ff6ba072d8ba4388940a8cd52b893e83d78f7b5cbe4fd87

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page