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.0.0.tar.gz (149.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.0.0-pp311-pypy311_pp73-win_amd64.whl (333.6 kB view details)

Uploaded PyPyWindows x86-64

cachebox-6.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (678.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cachebox-6.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (707.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cachebox-6.0.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (744.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cachebox-6.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (623.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

cachebox-6.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (465.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cachebox-6.0.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (506.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cachebox-6.0.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (495.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cachebox-6.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (468.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cachebox-6.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (446.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cachebox-6.0.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (493.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

cachebox-6.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (417.3 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

cachebox-6.0.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (448.0 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

cachebox-6.0.0-cp314-cp314t-win_amd64.whl (330.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

cachebox-6.0.0-cp314-cp314t-win32.whl (324.7 kB view details)

Uploaded CPython 3.14tWindows x86

cachebox-6.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (676.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cachebox-6.0.0-cp314-cp314t-musllinux_1_2_i686.whl (699.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

cachebox-6.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl (736.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

cachebox-6.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (618.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cachebox-6.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (463.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cachebox-6.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (499.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

cachebox-6.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (493.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cachebox-6.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (460.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

cachebox-6.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (441.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

cachebox-6.0.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (485.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

cachebox-6.0.0-cp314-cp314t-macosx_11_0_arm64.whl (405.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cachebox-6.0.0-cp314-cp314t-macosx_10_12_x86_64.whl (437.1 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

cachebox-6.0.0-cp314-cp314-win_amd64.whl (342.8 kB view details)

Uploaded CPython 3.14Windows x86-64

cachebox-6.0.0-cp314-cp314-win32.whl (336.7 kB view details)

Uploaded CPython 3.14Windows x86

cachebox-6.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (690.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cachebox-6.0.0-cp314-cp314-musllinux_1_2_i686.whl (711.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

cachebox-6.0.0-cp314-cp314-musllinux_1_2_armv7l.whl (748.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

cachebox-6.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (631.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cachebox-6.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (476.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cachebox-6.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (512.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

cachebox-6.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (503.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

cachebox-6.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (472.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

cachebox-6.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (454.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cachebox-6.0.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (498.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

cachebox-6.0.0-cp314-cp314-macosx_11_0_arm64.whl (418.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cachebox-6.0.0-cp314-cp314-macosx_10_12_x86_64.whl (453.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

cachebox-6.0.0-cp313-cp313t-win_amd64.whl (334.9 kB view details)

Uploaded CPython 3.13tWindows x86-64

cachebox-6.0.0-cp313-cp313t-win32.whl (325.9 kB view details)

Uploaded CPython 3.13tWindows x86

cachebox-6.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl (680.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

cachebox-6.0.0-cp313-cp313t-musllinux_1_2_i686.whl (700.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

cachebox-6.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl (738.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

cachebox-6.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl (621.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

cachebox-6.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (466.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

cachebox-6.0.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (501.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

cachebox-6.0.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (493.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

cachebox-6.0.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (462.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

cachebox-6.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (444.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

cachebox-6.0.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (486.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

cachebox-6.0.0-cp313-cp313t-macosx_11_0_arm64.whl (406.8 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

cachebox-6.0.0-cp313-cp313t-macosx_10_12_x86_64.whl (438.8 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

cachebox-6.0.0-cp313-cp313-win_amd64.whl (344.4 kB view details)

Uploaded CPython 3.13Windows x86-64

cachebox-6.0.0-cp313-cp313-win32.whl (336.1 kB view details)

Uploaded CPython 3.13Windows x86

cachebox-6.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (692.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cachebox-6.0.0-cp313-cp313-musllinux_1_2_i686.whl (709.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cachebox-6.0.0-cp313-cp313-musllinux_1_2_armv7l.whl (746.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

cachebox-6.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (631.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cachebox-6.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (478.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cachebox-6.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (512.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cachebox-6.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (501.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cachebox-6.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (470.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cachebox-6.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (454.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cachebox-6.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (498.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

cachebox-6.0.0-cp313-cp313-macosx_11_0_arm64.whl (416.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cachebox-6.0.0-cp313-cp313-macosx_10_12_x86_64.whl (452.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cachebox-6.0.0-cp312-cp312-win_amd64.whl (343.1 kB view details)

Uploaded CPython 3.12Windows x86-64

cachebox-6.0.0-cp312-cp312-win32.whl (337.1 kB view details)

Uploaded CPython 3.12Windows x86

cachebox-6.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (691.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cachebox-6.0.0-cp312-cp312-musllinux_1_2_i686.whl (710.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cachebox-6.0.0-cp312-cp312-musllinux_1_2_armv7l.whl (747.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

cachebox-6.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (631.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cachebox-6.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (477.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cachebox-6.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (511.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cachebox-6.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (501.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cachebox-6.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (471.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cachebox-6.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (453.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cachebox-6.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (498.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

cachebox-6.0.0-cp312-cp312-macosx_11_0_arm64.whl (416.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cachebox-6.0.0-cp312-cp312-macosx_10_12_x86_64.whl (452.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cachebox-6.0.0-cp311-cp311-win_amd64.whl (335.6 kB view details)

Uploaded CPython 3.11Windows x86-64

cachebox-6.0.0-cp311-cp311-win32.whl (332.9 kB view details)

Uploaded CPython 3.11Windows x86

cachebox-6.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (679.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cachebox-6.0.0-cp311-cp311-musllinux_1_2_i686.whl (707.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cachebox-6.0.0-cp311-cp311-musllinux_1_2_armv7l.whl (746.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

cachebox-6.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (623.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cachebox-6.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (466.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cachebox-6.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (503.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cachebox-6.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (495.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cachebox-6.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (470.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cachebox-6.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (446.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cachebox-6.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (494.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

cachebox-6.0.0-cp311-cp311-macosx_11_0_arm64.whl (416.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cachebox-6.0.0-cp311-cp311-macosx_10_12_x86_64.whl (448.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cachebox-6.0.0-cp310-cp310-win_amd64.whl (335.6 kB view details)

Uploaded CPython 3.10Windows x86-64

cachebox-6.0.0-cp310-cp310-win32.whl (333.0 kB view details)

Uploaded CPython 3.10Windows x86

cachebox-6.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (679.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cachebox-6.0.0-cp310-cp310-musllinux_1_2_i686.whl (708.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cachebox-6.0.0-cp310-cp310-musllinux_1_2_armv7l.whl (746.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

cachebox-6.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (623.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cachebox-6.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (466.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cachebox-6.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (503.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cachebox-6.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (496.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cachebox-6.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (470.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cachebox-6.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (446.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cachebox-6.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (494.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

cachebox-6.0.0-cp310-cp310-macosx_11_0_arm64.whl (417.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cachebox-6.0.0-cp310-cp310-macosx_10_12_x86_64.whl (449.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: cachebox-6.0.0.tar.gz
  • Upload date:
  • Size: 149.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.0.0.tar.gz
Algorithm Hash digest
SHA256 22eab2c8c9cb10e442c5aece69db34b86c84ff288d98f69103baa7c555521a4e
MD5 0d12821bda808e241c6693872eec5637
BLAKE2b-256 5bfe5c2c18cd90a57974ca666bb22970aeb8dbf2bcea97eeac69d512e641dd54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a5d91c0de1422e06dca64c6c644ee3432ef3d739b6abe600ea3ffeb44641fed9
MD5 8b6e6bd7bec2ffbd01881db6566ce23a
BLAKE2b-256 2ab553c5b2d147e0e8cc7c86da8352301e4e2419c97f7747f75b91af3e40ea71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94ea831044304440d4748cecaa6d74f5150712d38d7c0d663caf13886a257aad
MD5 235e76e5c6b7ca0984769d1f39a6fe00
BLAKE2b-256 e5da7c5270b44ef8a06ebce93c841191b87f1324d04672e3739335ec56b152ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cb02f1694cf91cfc7d9c9b48d1113c5c51f2d6d870c0b933cdc385cd55fcd0b9
MD5 c6bbb32fdb0ae3a312339619df7f8f20
BLAKE2b-256 07b70bd19c756931170398db3510805294d29b52b56f377455eb26475316ff6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 13f5f34eae90885189a168d788bdf4fd599e39bfe0f81104da20815d35e60414
MD5 280c20bb7fc67c91c44e91424d5795c3
BLAKE2b-256 ce91f97bb8329f18abef16ba86a57316dc455d54eeb1c3e48cff485fbf566b08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61d7f2a45559d08e7dc55a1d351560ac2777b4579d7c9125c449049d999e1ff3
MD5 5004a38a853948462e184ed547df2ec0
BLAKE2b-256 070dac1bb0e304a6f8eb6b046bb757e733570c32027513874b1d0cb3e548967b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f27d253b58693cdde1644692ac9015f2541444a93ff0185d31fa6119e466df92
MD5 4fdc21272186d3b5421366975106460f
BLAKE2b-256 986a766c03ccee144cbc15780f138215c29435847ad594539524a4bbfa1d992a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 625c00743ecbdecb8ec24cd67c1be222e6f9651c8d609c95b3ebfd66278ec669
MD5 8d726ba9d97495d67375aa5bd6f22c8f
BLAKE2b-256 dac2af3495f9f806aa8d7083ae1d85e34ecd624a16a7a9b42b3a229a5750fda6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a826e344a81fb76926707a09f52d4749f0d5d5ad37a53e51a7440f59a8702f0c
MD5 4f378ca44152e781ed5499644cdc6838
BLAKE2b-256 43344a9518a3ea6788fa0f813ffcb3fe7f4abb58630693b81cafbbefd2dece0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d402c7c15edbc605ff09c1bd8a7a874371ceb8947f22701b3b4f9114bb085d5a
MD5 8facd934bcede471ee49da3e4df6a123
BLAKE2b-256 c7d4bc4d28cd114713f2ad1588b7bc1283876ba403a1cfbe3efec800f18d46ce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82c6c335c71c26b36ce240d299797a161e15df5100e69990e4e51119c6bc7783
MD5 8d6e35515f278e29647dac14a196b55f
BLAKE2b-256 125c3c25b36bcb87873dcf0c31076dec9f57dee691bf1f398c2fbbe9ea402f0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2809957d458c88f4e6b2ba64817810af47335bae09a4846fd46c1b2ba7b5d351
MD5 9b484cc6cdb9f1a1e2acbe9052c6606d
BLAKE2b-256 119ae1b93754d1723986f863a87fa0fba43c0f7415c0d776aeb3e5d970032f4b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3c1b65a2942004164538f30b3d9281ab717738e4acfb264b8e8863f39740e13
MD5 af6a7b9370fae36901b4b5035f09df1f
BLAKE2b-256 36145fd319a015cc22e273099f50a8c34f0689d0351586f4d277e61cd30f9fea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e84126a5b7083bc7e81c26eea5de7add0c9d095de9675e6dce20df618eda0db6
MD5 166b09251b1cbd259a00b5166f715244
BLAKE2b-256 a24f6ac0734e2d39df7380c069803b1683ee455c2a3a6c879e65763949db8f39

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.0.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 330.8 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.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d70f9ac28a99577bd488f3c189d02e3fe61af39ee11a084fde083c20135b676d
MD5 3f5abaab57009e83c65c4ac72dd45a52
BLAKE2b-256 8e0405fb25cf521e5a30ae66338deca99dbf8e572c71bd962fdfab08ef5599f7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.0.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 324.7 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.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 d6b941ba87a9e3207ed1db6c2d9824e01e729e9e39f7a73fa7865339de831694
MD5 c01100c9f8c8759ed91bfac05ed7c25b
BLAKE2b-256 df542b5bd1fd3d5af1be1ee600f49ab97922c348dacd124232907144bb298bef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7dde484045cd40dc6d35e2b6e9d212a6f042997e27a8b76cd7f2bcc2997e9d1
MD5 82fcc3714ca304c799009f1f5cf00eca
BLAKE2b-256 13f4d86588f512b086761eed6b301f0f576a2b85175ff932af2e32fbc3b04fa6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f96e90ce4c37012fc959c4b588764e8dbdc1e6efb1aadb2f362af3dd1f5f8fa8
MD5 5a93f1f150a3b7c8c8c0d1e6b8d9f320
BLAKE2b-256 bd357e1720e88293b8083c8a7328c2321d774a3d0441892c9c7d4a735f8503a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2874f7614b0cfe55833d17e47814a0e2296b01ebe2329144b47fba0e60f2b695
MD5 e3650136c01b900991949c449e37a919
BLAKE2b-256 0b56f8da85c2e88fe85ba10c04fbc9afc3519a7e6f981f47d216dd2084e66d98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15d7e88d9e754566ee48c7a3b925436827018c58e9ac1e00393c7340a6959541
MD5 10b36279d322366a837f32894e298732
BLAKE2b-256 3a52aad956c819728759b5ee49df1616730970ec6d21e95079d53df015c28117

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90d14052c7609d308184fafa7c1ca27c39df3f0be8fcddbbc4f87d81ff235262
MD5 69baca3d2490111501beba89629f593a
BLAKE2b-256 8d3b381fdce1ec9d110a20317299e2a6ac7a0787c8c1053fd53819cbcf571560

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b11024f24d39b06bb10a1dd2ac7af0105dd4c45deb451d8437400e9d6dfac2c2
MD5 887a324328ba6caec6098d329bf792e3
BLAKE2b-256 9b1d8ab7e76bfb7fff5fb2ed5b608c4eab8b626eb8545f5300613695edfb03ec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5eeb5f9b7071c3c754f559e3e524c6a5daf8216fe464c5ebd86a9d3fa25ff821
MD5 593aeea71731df79cf6595b09b800d54
BLAKE2b-256 dcc195478e5ea4438ccc70786283f8c13f9782ec7c5edbae78adedd7cc800229

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a221faf39593bccc92f312e95a2b140632734fda5f1669cedeaf831d1c45162
MD5 e6d9962b5c68d1c45980d8cf9ad00254
BLAKE2b-256 4072ba744789d5fa02b56a965dc0b93951ec5df36fbd8e963d1b3ff80d264be0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3386d9d2737cb9fafcf8f53168d9a0fedb849e65f26445ba72f7f71ac027715
MD5 9a4f624ba45dbde44bf05bbd3e69de48
BLAKE2b-256 4ae30da38b8010627fdff6de188e585d4837573b9619e70859e59682a5ca8ffd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 feb6fa86207392a0e2a5a7c60fc90de1a3f6715c6942dfa371e769dcc753f801
MD5 9d172416a509482bae69c32a7006d4e7
BLAKE2b-256 1e3a87ad5814117d5a85c8843255d3be5f7432fc88586d8bf8efbe1f4c34a3fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc7198c0f00800dc836d10853cbe73115f2825b00607e93ad2a69d4cb7ff5b62
MD5 124526b21358eb0ac73deff3ad163d6b
BLAKE2b-256 372eb184498f3b010bb9fcedf394a8e2c4aba6d2451529e262a07cdbd93ff9a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 077f269e00c974c6387b4e42c577de450042d77eb795f30156a1c368b6cb3484
MD5 971d7113b2afb07b4d9eff7a5cb3e792
BLAKE2b-256 384ca46929d0a223af7eafb3a8a95e2759cfeadadc4454872ad9c58b3f8a5221

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.0.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 342.8 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.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d7196da2b333927d8517c9db8a92e6a74b4064aeceeec263945bd1dc06fffbd5
MD5 f2db0b860a793e0d0b0f231a346a5716
BLAKE2b-256 d79181460422689e36c7f2b53054ce61be40d8beba7407ef377e4e78c18b4f1f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 336.7 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.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9cdaf0061ec52dfae63a6be3ace57e855f42abe37f906b41eb60b57b7edda137
MD5 c89ac5721c20fbbb2a5b9740f4e5d66e
BLAKE2b-256 9dbae0554fffbaaab4a5628e8d320b17992d44d7750aff184af4276872274940

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe478e754560ef02a819c9d18e27b5f6b4ec2cef566d7afcdac13cfd8548632c
MD5 1f86bc70c74c29c6749efd7ae1b9caeb
BLAKE2b-256 8d1942208a0aeb27a04b80796ab1d9b57ccef5e3321732c229316cee60af9940

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6db268c7eb7eb9f293084f11879862381922746a1d812f4833229312e5688fa5
MD5 ad80cb15c64e310252cf8adb57e7d85c
BLAKE2b-256 5722124e7096acdaab1d6ecbbcd5576c6f8004a355d0de6f2012b326fbba6be1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 36f955b04290fb33691169e363645b8cc878bd50d7dc4a82d25b959a4fea45ad
MD5 fa8544c7abf22fdca76752a475a85766
BLAKE2b-256 56cf0ef1f8bd966e021cf854fd5b22d663f2b9b2f47735d71ea9a4ee735265ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1660b6626570ff2f164e65716c9f91764c6ae9f1f9ae12a4bb6461e2bfee7809
MD5 4a2c86e0b37bf2809d1dcd961292cb6a
BLAKE2b-256 1b191436a00d3ad8926ab246175146860c77d29b08b31495ce9006e5a66749a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad33ccbba0820ee70309fdd7b4d81f35c5d0bcca65eb037d77dd3c7c6d25d64e
MD5 c5147c0dee953cb056d8400390f064c3
BLAKE2b-256 1f9d16ab8da319e31851548574ebd8d65f1b8691631280a9475ad8c6c41f7c1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cb5fc4d8b88e0feff9a58d023e89787faeab1ebb04586e04ed0532c5021c342e
MD5 af564970e2c30977aee370e00c234308
BLAKE2b-256 43d6ee7649b810cfcde94717ac64bf74b800b15daee8070d2c7a7ddc927b2473

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0289f609502318ed6a2a84e9c1928069773981009aff64fc2c6157d15df198b
MD5 c640c34e08c7fee1b3547539c2d73fae
BLAKE2b-256 c377aad3a1c2682c28623062b30b0deddd9c922ba5964335afbadb53bcca8768

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 31fd8f9b9647856e34f7fc1246616c985ae30a0c01cf0c6648dbb249b3ba2b18
MD5 a71366bc474f726e4d42d88a4eb21c08
BLAKE2b-256 ec0e8aac8b725063d891ddded3ef42102cbc1fede5d3a09e241b618a62e28fec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 410168572bf4446a53555981827bf116040d274b774847705544685876028b44
MD5 f92d5554e550350dcccef4bdf3e0a0b3
BLAKE2b-256 0002eefddd17090d20ae35765ef1c5a666529c8bf74de3717eef8acd4ab431fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ab34fd9ca53da41360ae3f799bec2ba4f171ce181896e5da6ae4ee23cf2ec81d
MD5 3e64acc2df4d9d6bfe1ecc93bd11ae27
BLAKE2b-256 58c2e773dfb3eb593ab9b913e30e5ba539c30f6a72f4b6ac2a4ce5d93a2d56aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e124e9d80d076f9b5f67b95fe006810686df9c6a4a0803d2c974bacb8598de6
MD5 5556cfc1c9233ed27d1973fc5559e21c
BLAKE2b-256 9e7655a1d9dbf62eedea0a03c7f7b7bf67ed7287b476f030d8ad1318908c2f77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf85f4aa4993b20cc4f5da1ff2e3ae4ba1541c4a6ea3b93c1969794840692f26
MD5 fc5c2e0883f6580faa1ddd1d6eefee30
BLAKE2b-256 d38885f2931b4d1bd4660c7c360cc86ab32c5b5aebe9ff22aa0f0194cc1c02cb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.0.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 334.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.0.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 1a7b3aed29a32df341fe946886c4f5e356c2768c679f3a0626d27d70c19ead67
MD5 ae3c403d4fe3ef0add3da538efeec68e
BLAKE2b-256 64718c648d3c15ae30f4f09f9b8a164ba8e15f6bc1f6ca88e818c64f18001a59

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.0.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 325.9 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.0.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 ee8432e6ef2423e905c115270ffc66374d45d4ca640cd507e98128075c79ff8f
MD5 23e0ae237695f3032b09fd1c91779915
BLAKE2b-256 0a82af295e615aaf528e6808e64d7a94589583abdccdbed10d5630dac213a0a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d79a1bc124a6a9ea46b6383b77f5f66880bf5f47990ac728a19e803a058de93
MD5 ee6a1c597e92468ef3545e3112b54a33
BLAKE2b-256 9f8384a85b247174d74427b7654b64646513825e74b7fed8f700447572782593

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 73ccd2621f8e945025459a736b700f0e6f6233232d7a572710c51196c20b9579
MD5 16a145f11393071df842e074d6432de7
BLAKE2b-256 d81cc6497a60d12e934ee5470257a6446b8e4d03c9e7eabc6d41fedc6d82f859

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c3220c6c1cecd0cf32c2f15b49ae96503645d5af148c7a0e730c0bb5a7508a10
MD5 6e26c50b82e1a023e01a92987935bc0e
BLAKE2b-256 23f1e2fdd28d4d50fb7b23cc006b5d1c5ba7f3b0cb81a7df1c1f5f397316ac3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 258b64f527c00afceea6a7464fa22286487e431a2d7128180d5d2fc0074c2ab6
MD5 54b34da98183685aeb49f6df3df450be
BLAKE2b-256 07c5ca3aa6035f60a342d483d9d5d25dacf81a905efda7afe452ff66a5b6b616

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eae45362f1d0ae7f94752bc385a60151d83b07f2c76975f261fdb6a381de788e
MD5 90aeb838c7b9b407b74835991a17d3e1
BLAKE2b-256 7fc26b7b5f20e651bc786a6c57051c74ed7f75d4393203a92c9294df37d6ac0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 089473e9b4bb9ae4ee8bdfd522d9810ae141d9321b7d56477f7d53159a2e2acb
MD5 679c8c5ecbbf59d4a66f31312234b4dc
BLAKE2b-256 2fa705e3c3c619ef760816c0cf6089c610b57f3b181eac46c8e3e890fcbeafa5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c2e6217a73640f6f78855e500ab5c9421d0f93b853fa785b64762b7c50be4c7
MD5 6a9ef25b522975e4a8c78d0b5ef5da4f
BLAKE2b-256 8a8be274a1e5f4f36a40f20fb53206a93b9829b3855309ba8104a9cf9223ab96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a7fdfa87bf7396f021271114f3912106649b1fb35bb6dc2803b229bd18f677c
MD5 dea1f32dc13cec34dbfef4d849ccbb5a
BLAKE2b-256 82e32d5fa6198e417026f714c86abc245fe24a96d387aaad0d140e0d289d46e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20de339ca41123b4b5663aa54fdcc3c02cf77baaa101357609891ade137eeda5
MD5 53f7fc5104b625bad853b3c3f84a904b
BLAKE2b-256 767fb310e5d0958853ea4bb2889bbf4d9ae6306c3e0fdcc13247d109ef2090c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 042efe190a687024619ab412a4866dd0ecfe7f99656fd56bfa7b0f7c5ca378cb
MD5 b3ac1061aa11ffd147526bacdd21a270
BLAKE2b-256 ca21a2cb96445739651590ac8c33484a5fe8ddfb51f47d402d920da6858a9489

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 86c67f811dd05eb1ed9eb58c815c549b05aa57616f882b24d76045ef4cc44a10
MD5 600a4d45710536d112774df6880549dd
BLAKE2b-256 9f202d4696be347f0268b1a8a2aa195e5aeb3d7362f4d4c13912e9310aa3cb0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 199451560af5ff199fdcb04925adca5f5b67620cbc2efc5c45c424fb982100e2
MD5 cf6c06ee80d89ad07faa44b63f94db71
BLAKE2b-256 27fee425ef68dcb74ea2e02b5d365a76c6e5a91a2176ee8dd3aff898aed65900

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.0.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 344.4 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.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6dfcb779983d5ad245ce90a91c1ef6d4941c47ad0540281b82ef57189e25658a
MD5 8006aa59b6a8b7885a6886adaa9ae80d
BLAKE2b-256 bdcbbf18b5b570f358abfc92d83ab7b1477f6c324c2c2b72949cd722ca4564db

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 336.1 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.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5f484b5873c390f05c697b88da8fe4d193c752897ac0cc6a6d7eb88c623739a3
MD5 2da69438f677bdee4eaac536a18211a0
BLAKE2b-256 467cc241740bc5f7096083074397b6a3e8b75d57782352328b2df3886ed5d51c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 929d13b78d66fb2d388960350bc3531c5b88858e89a3af98cbcf7d793813616d
MD5 65d295d627431a8c123aabd99fa9a78d
BLAKE2b-256 18572e916996a96a12da9140097eca06033d387bf4d503da330e16651093f12c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a05c4cb50afb91fb543a4a857acf93690cebf03795ba759a0ec6fb79e3f4b0aa
MD5 d4da96c9df06b2810996785a97987b62
BLAKE2b-256 11be8e45e58e24c41060f7a753f338a01cb313b1bc38fde2117cebb910ed41a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f1db2084133dd0e2516ef9e2c504fc425349b418291242f1be85e93fe659a62
MD5 440b81f45a7867c6c27a74217973d685
BLAKE2b-256 d70e10eef8543f7b0cf61a6d89ed9b01427ebacf7355c7f63e14bc93fb35d188

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f8539a87cea786742c69f125dd7abca806687d3c53ba5b7df92c7959700ed06
MD5 8da232bc60dd431ce4129bea39254cfb
BLAKE2b-256 85e092ffa95e482d15f1884b8c3dc0d383736c8fdb1a2830e2a22506d7ae8b36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1d627f05e32a540207dd458b25d83c958327eba7ea0a719902592076df8e1fb
MD5 f06144ff29768fe961b5dffe01ba803f
BLAKE2b-256 52cb2baffe3b250259bf6b2279e8d17934b35947affb9cfd0d1b917f1bf02581

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91d4054920afe640537702481fb8caf240d971e5494849e2a6fd2161dbe32407
MD5 2a5e08e39dac3924408a6745f73346d7
BLAKE2b-256 417f8e35af3892bcd80ca595a6d1b8540193b30ca047703e690595ca2e4f11ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 47dff91a61c18a580dc0017c6eb2d063d546287100828d2eb7c880e107caaf41
MD5 acbf74048fb3f3554cd573a852ae72df
BLAKE2b-256 4d0c93ae7467c0b5a424825b21980872ec8eb1e8235df359bc280c0f04b118a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93fe8a0e4e38bbbd1845f84b20130c38328a8c3e252643ecf430f51a5073e9fa
MD5 2214f0f4bdd3addfb7f0d56a5ebc029b
BLAKE2b-256 e953fd01a2774bcb4213978d7369b447033aee0f68ab8e2b4688de72e72dfe97

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4370ec940e0a72e82aaaff29c84265c3577247e532916eeb6722579219982f86
MD5 1b57a8f01904a0ab26d84cd9f8acaeb4
BLAKE2b-256 c8aaaacc4a72dd9d49dcb85cee433aa24683ca6e42de4c910e474eb9c640eb8e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 93c4034ff76d51958fdd83ccadfee732d4574b9ef6f28a5affee47ff86de816a
MD5 e1bba73213dfa6c930e562d6993c4e20
BLAKE2b-256 46ff64f170a42911ee3f6332486caffc0dc1638c3c11278773edf99f907e4245

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ff491770ccb1c7f4942118e8179862482eb03c64c1eeaa8367b307dafe43b21
MD5 680f9267fd96912999a68ddfcceb892e
BLAKE2b-256 f55a6658c65e395201835f2eb7e305587517aa2bc701e269c26b3fea5fc4c6a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 42ee2d65e788e02de16185cfb449f67043483c83e36ec7e5f9519364903555bf
MD5 84d95ba1f5822006666fcc92489786d7
BLAKE2b-256 4d5796174ea50e51b66438ceb330a4b2785f26d7d40e2cd32a6434b822f254a1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 343.1 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.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 acbef8756c83ec10c7c9640b00cc36412d2d488ca5d6c150184478e0bca61ad5
MD5 fe33722edac764982be5c7fdd10949b9
BLAKE2b-256 91d72ab439a09d536e914148b1631565fbe38f40481d1275f4a62da482ad04d3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 337.1 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.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0fd526b97855077f7c0f3532a4debe08be8ee05f0ac08fe81b6cc12807028369
MD5 cca7b4c763f49f5b56c6ed978fe44b07
BLAKE2b-256 5593c7ef6705072e618ae2e9ee52c2172fef4f48f71c2aa362cf6863bafa3b6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a042ef4951a2cb420b16a2ab82cf81b60d4cdd792843bcd7a391fa991b37c82
MD5 c8653993a2a34f71f782e39fcfe3dc61
BLAKE2b-256 a6dcfe4fcf30175bb631c533b5579f78226df7e115e3e13d6a26b603363eb7ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 85973e04c4a4bce1f1d068a46154df3c4d676766e3efc5a5ab2c6c4837210643
MD5 eb1d6272bf68389dbedc59a6e52d17c0
BLAKE2b-256 51205fd9adb84f5ac717a1040b690abcc2573aa0d912946b97eaa90068a6b8fa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 86e91dc91818df11c9c328c43befdaf410d4d242eaef168b6ea4694ff9a3c9e4
MD5 748747972b31f43b472adae0c2a369ec
BLAKE2b-256 58aa8370b51a3d8b7f97bdd0fcce31a99714089428d4646f220309b979de52eb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a907872d4df64c60412ea8c3da1bdfae2f983e5df7ca10e77eea2ed9c7745105
MD5 f9c437af32a6d47c0a4f372584e36ad5
BLAKE2b-256 c2f411bccd93fc495bccc1e80562e1c1008e0eb674e1cb4f9bc7d88732013119

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 327e4c48b88440f6c905a40388ead10b3bde3e5e12a3c83b69956399214bec11
MD5 6a88d96ce0a7335753ed24aa737387c1
BLAKE2b-256 a56f89d8b6596ed5991f1bb2a16962133a704eef47b05b50ce7724835176151c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98c3393d5b18594405a481d01c48ede090951d704647364c4489fa82634704fa
MD5 0a4f41a961473ef4c8a115ef76dc7548
BLAKE2b-256 cbb24a8fdebf1c44c623494c181e629bf00bfcedea4badb5edd6f88e96536c49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9da5f38ff92a276766a5e6021f635a5f18326fce336b2e8102b08359f447783a
MD5 abde6396d0173310ab4046d36c773522
BLAKE2b-256 8bf13254ec37ed623a61a1a34d4a1c3e10f1ae0dab576d4687830c347f231682

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bd0ff681902a216acb9deab86e3acc5d523d010ac0c92e281462eaa2e62fd712
MD5 a452f07e0f7c09f414264baaba217e28
BLAKE2b-256 94a0fa90c8ae9e6a2e3c355c04b1f409cecabb181f305ed535e83ec8e546812a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1caf42eee0bfa141bbce0cd0532e393c8b74cca2f6c662b07dc6c1a9715d2aeb
MD5 1712290cb1ec1267e40595fedf127d23
BLAKE2b-256 2de094d3670af4b17e1160de882b10667d426640e82d38e3b472fe301e5d68ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9c54fa21b19cd08d9caa86e3265b13fcacbc865a36ddf9092a237f5ccf0abf22
MD5 1f87305bdd09415e5721c194143a7029
BLAKE2b-256 5ce29afb4cc48a8c022a490eccc8ba7c0650222e70dc317ec952776cffda21fe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da4ea5fa3b71b17a3e76e5a622b9d68ab4b8b2e0a0c1a67bd5a3371cec69dda0
MD5 0357a22a36814ae97280aa1373345821
BLAKE2b-256 c5d35829e40b3b92a27f6158f44b27b7fa248e7c196306160bd63e170f2f459c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b104cea6051491e259b8c0edf01daed46e6cd9bcb2d1ec95e776544cfd1c99ce
MD5 a7a556d154a3bf4bad930dbb5197c3b0
BLAKE2b-256 893cec2a48106e4cee0a4c57f6ec37bf62d99a4d44da155452820d4bdc0223d3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 335.6 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.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 41c1602b08428919b18bd67afe3e207714fe1a93099db2b53e063ee62fb17c56
MD5 db3aa8e3991928d88d5c4d2a00d791c3
BLAKE2b-256 48ea7a906cd8012250d78a71401adce4d26ae4d87b137a012893f1a5144f4340

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 332.9 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.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 dfb1da97094766e2ba86a59b7c01e3a521fd353ccb69b3e3fab5bf9e639dd5be
MD5 510e1cc7e539964d92cd9e716d5d6c35
BLAKE2b-256 b8964c275ca7dd75c3c4c12aa1de7dfe95ebbee6bdb3a8ab0f75219b97b57295

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 91cb996863f98b76e05dd09b6a5ca0de6b826ae4cd1b2a171ec1c42917d3badd
MD5 344467bee4c346e3937b31823b18b9ce
BLAKE2b-256 2d376ac3da52c464e3ead6174e761bf366ad591ea9341ea1dcdc775e86a0f009

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 80b8756060ac0f8e8bedd9e40281574857a3d223bed9276c3e5b6ff768bc3e62
MD5 06af09683f1ea7b9afd333057f5e2d40
BLAKE2b-256 cbc706c7a18d243a2cfb36fc8c0e54235aeae04653f4a62258baeabc99f28f8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d96215fb29453fdcc553cf6d9ae6ff7955ba7cb6c376ee405c39c12cf91e213
MD5 04c104f1d0a58611f9bbcd50360a80f3
BLAKE2b-256 9d09153565030e4a6ea3de279bfd4ca078f62dfd4f7be6db8d5d27d8baacb907

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3fefdceebb46d05a2aac9be2fb12149787936aed7b9be531aacc68cc654af7ea
MD5 d36d770325138db8292d9ddf6989a614
BLAKE2b-256 6e18b5195da7375af0bdfcba15fd8d2ba94f66894579c96d0be12f4ce748478c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd16bec91847dadc3a598a2729119ed40a64bd437111113c4e666b893a47701a
MD5 f6fc5471cd5849f9170e4dbc3ffe1fd6
BLAKE2b-256 6c105d3cc0c49f2d7f76daddc5bc595ea7e4e4ca4c5de26af1bab55269c24f53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f2d63f8c029a5df2e7e5abdd53a2f06da8f3be4d9b5335e619010a7a02230a6
MD5 f54e88b5b20107baad0b2d0c132795d1
BLAKE2b-256 5ec0f52cd967c3c08ae2873c786b1ac37cd13558bcd1b07e2da3912a6f139664

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 32ec072399eb6fc495c2e9da6576045d7e2eea42eba00fa3b47bed51b5697bb7
MD5 88109739b832d93d5483f88cd65657c5
BLAKE2b-256 b652f8fc31ca07b7ec4a9445b2f0e452dcc245dd0d92840e47e692ae18177eae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b6ae74dfb981286a07a0c56fbb5093bf1e44c2d6343d534e88abbe856335a0c3
MD5 3e482679b9a30043f98ae512e1007792
BLAKE2b-256 ad896e94ffe5296313f271ed43e7ffbb8fc59b8a41cdd4d70d85978740fb110d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a2d928bab33a075812786d06d7ce2d90e103bb3b676b7ca3bad25196bc81d94
MD5 148a9bb1738e1a91d19aa1374c35eebb
BLAKE2b-256 2345e5944f93d4959c339158f46bf1abdb232f1903f23d032513024cf7d57b95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9d9461ce0acb8d7f69b29ca956878e382061fe971caf6c1e7da2e6c9f206cb67
MD5 da238207c24819640b206718363ea878
BLAKE2b-256 9313e44fa85b550cb763565beae189271fc9285fafdf16314fc083f8b90811e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08a84e3b2d56840bece1c9ede3f9429a3a69c597771dbb510805c7f730a13c2a
MD5 67d03b940bdd3cfe79dc4d43fc91b4cf
BLAKE2b-256 10992eafcf575389d02d7b18395d3aa19401db60121ece3ad8df5969a46b4cc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c7f027254fb0bc6e574c3488cfb3c09dbbb60fe8188666fc13531f18f034fe53
MD5 ee08c26191890472834e9f4607576f7f
BLAKE2b-256 dfdb58176b8d7af55a864a8724c1b768d25ff96f40bc66ef8723fb1ed24eeb1c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 335.6 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.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2956926b2cee9958683aaaf95d8246fe73218f7da62c771079e15e40908181b1
MD5 c36e1978f629c1d94173231a043405b0
BLAKE2b-256 b1150d23975cf88b317b153affee52db7a0fd424e8b4c83b3421f730bed5adf7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cachebox-6.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 333.0 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.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 39e5a97778caa0030ebf3af0fdc61fb5d2c23b23084a7dcd68d7c060424aeb5b
MD5 254cd3805cbdfa3862f77701d7935209
BLAKE2b-256 3a8ee4bb81288b1f00af50e87064213368d0c848f13594f2e6456366fd2f9c52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a9e38ff492da77d2bcee924b2c681e610ea29d4b79a9d7ec34b04bdb8f180d21
MD5 702595900f382b2ebad82fc14d139571
BLAKE2b-256 4c9e8a51498fba07e84d48a1f7e4d2c49ccc575e22991dd317ba206245027a27

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 51f35b0ffcbbd7670231b9a7911d41ad81b6b6e8b35332c0e96d73f2f946bc40
MD5 d264fd8d1a39764bb2faaf69e969b521
BLAKE2b-256 9dccd5ccd191faa345705e5f9baff39159f3935f5c02991fdf2d3bb00f9e29bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 40646c6c934c31f102bba1f5c6c924f577ee14807c7a6f45a9e2c5286245144c
MD5 82117779012033959ee97f14971d68ba
BLAKE2b-256 3f303a3e02e77e7138dbd38cbc5a1c2650d4dcc96edba23826aedceea2fd1825

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a811ca00a04519faf56e4fbdfcbc61e49a856a69ac39633dcad2d1dd84a65ab
MD5 9e5c433ef17d357a7cca665e72820722
BLAKE2b-256 3d717c8f61012fe433b9e723a96b75e2c6d3b830568e70997700f2d79e10ec5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b2afc40631228114f34961f6d9723698072f38b91723930ae20012b17930c92
MD5 865f46582a39664046ae0c8312998bc2
BLAKE2b-256 e9970980a04b54d8148b20fc6c3d51dcf6c347cdf1588a5c0a1fe36c773c40b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1bb7e60975c8e94cf960c0cb385e1d47dac6141b77df4b3c70c5db8751ea8415
MD5 6ac4bc019188aeb3ad6654a87da50441
BLAKE2b-256 d74e67f29f034e3e29d57e2d30f7c4f344347255195f40cb76c1d71f44e82cce

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 42a07f3a58c242407377d7010f1e953f255e3d7ebd08b4ba80d121232e1bf8be
MD5 caed5cf6110e671766684aadc54b9f0d
BLAKE2b-256 072b037cf2ba8785d55cb55bf4875aba50f21d9a545d8f516dd1d9f09d57dcf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e1da6287ae481a28efe1eb480f179c9ba5c78249c5b26e9c231ffbfc74fb5906
MD5 8ea64038fb933dd46e4944a0cf373428
BLAKE2b-256 666c778081166d43921828b6817048d41e4a73dd330240b3cf87c2ab6b650feb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b521fe5cd6b230e1ba63215627b58313b4d04f022058240639c077aa3d2bdb7
MD5 930c4b2f5d80c2c5a997d2657bfba34b
BLAKE2b-256 c3bcfcdd323baf8dec5404437b80bc7bf83f540c2c15ca77f6cc69877528ed10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3d5be39e6b4340ddf6172100ace1cda00fb30d43725a88b55d7312b9fd968ff5
MD5 c21cc2c34bbfc067111d29d40da4c6e9
BLAKE2b-256 177279c69cb875faf94db9cd4a718ada3874ef1aca6ecd743a4109b42c25e34c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbad826b0a388f4f799117ada6990f835ac37bb9fdc457085e75750be7e2f0fb
MD5 b4938a6c61c90bc381adc07c01d66648
BLAKE2b-256 9cd61e893c0feb7ac4e1c864d9d94dd06166f464c3e1f33900166e7dd1fef862

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cachebox-6.0.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bea291d3bada2bc7a9781c7e44b885f47d93c24db9be4a17a6550da9137d8489
MD5 ebc0d2cdd5485e21d069fa9562536170
BLAKE2b-256 f58ca7de9050101019aa233a3c2d4700fd4f3caddc77ee89f1d9aa319ed025f7

See more details on using hashes here.

Provenance

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