Skip to main content

The fastest memoizing and caching Python library written in Rust

Project description

Cachebox

The fastest caching Python library written in Rust

Documentation | Releases | Benchmarks | Issues

License Downloads


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

What does it do?

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

Key Features:

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

When do I need caching?

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

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

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

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

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

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

Why cachebox?

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

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

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

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

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

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

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

Installation

cachebox is installable via pip:

pip3 install -U cachebox

Examples

The simplest example of cachebox could look like this:

import cachebox

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

assert factorial(5) == 125

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

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

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

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

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

from cachebox import FIFOCache

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

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

Learn more

Read the documentation for full information and learn more: Documentation

License

This repository is licensed under the MIT License

Project details


Download files

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

Source Distribution

cachebox-6.1.2.tar.gz (152.4 kB view details)

Uploaded Source

Built Distributions

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

cachebox-6.1.2-pp311-pypy311_pp73-win_amd64.whl (338.9 kB view details)

Uploaded PyPyWindows x86-64

cachebox-6.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (686.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cachebox-6.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (727.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cachebox-6.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (767.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cachebox-6.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (628.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

cachebox-6.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (472.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cachebox-6.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (508.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cachebox-6.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (502.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cachebox-6.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (491.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cachebox-6.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (450.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cachebox-6.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (514.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

cachebox-6.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (423.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

cachebox-6.1.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (447.9 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

cachebox-6.1.2-cp315-cp315t-win_amd64.whl (319.2 kB view details)

Uploaded CPython 3.15tWindows x86-64

cachebox-6.1.2-cp315-cp315t-win32.whl (309.0 kB view details)

Uploaded CPython 3.15tWindows x86

cachebox-6.1.2-cp315-cp315t-musllinux_1_2_x86_64.whl (662.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

cachebox-6.1.2-cp315-cp315t-musllinux_1_2_i686.whl (687.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

cachebox-6.1.2-cp315-cp315t-musllinux_1_2_armv7l.whl (723.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

cachebox-6.1.2-cp315-cp315t-musllinux_1_2_aarch64.whl (604.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

cachebox-6.1.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (448.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

cachebox-6.1.2-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl (484.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ s390x

cachebox-6.1.2-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (477.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64le

cachebox-6.1.2-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (447.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

cachebox-6.1.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (427.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

cachebox-6.1.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (473.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

cachebox-6.1.2-cp315-cp315t-macosx_11_0_arm64.whl (392.2 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

cachebox-6.1.2-cp315-cp315t-macosx_10_12_x86_64.whl (421.8 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

cachebox-6.1.2-cp315-cp315-win_amd64.whl (329.1 kB view details)

Uploaded CPython 3.15Windows x86-64

cachebox-6.1.2-cp315-cp315-win32.whl (321.3 kB view details)

Uploaded CPython 3.15Windows x86

cachebox-6.1.2-cp315-cp315-musllinux_1_2_x86_64.whl (673.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

cachebox-6.1.2-cp315-cp315-musllinux_1_2_i686.whl (700.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

cachebox-6.1.2-cp315-cp315-musllinux_1_2_armv7l.whl (736.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

cachebox-6.1.2-cp315-cp315-musllinux_1_2_aarch64.whl (615.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

cachebox-6.1.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (460.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

cachebox-6.1.2-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl (498.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ s390x

cachebox-6.1.2-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (487.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64le

cachebox-6.1.2-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (460.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

cachebox-6.1.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (437.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

cachebox-6.1.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (487.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

cachebox-6.1.2-cp315-cp315-macosx_11_0_arm64.whl (401.7 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

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

Uploaded CPython 3.15macOS 10.12+ x86-64

cachebox-6.1.2-cp314-cp314t-win_amd64.whl (319.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

cachebox-6.1.2-cp314-cp314t-win32.whl (308.9 kB view details)

Uploaded CPython 3.14tWindows x86

cachebox-6.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl (662.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cachebox-6.1.2-cp314-cp314t-musllinux_1_2_i686.whl (687.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

cachebox-6.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl (723.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

cachebox-6.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl (604.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cachebox-6.1.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (448.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cachebox-6.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (484.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

cachebox-6.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (477.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cachebox-6.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (447.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

cachebox-6.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (428.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

cachebox-6.1.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (473.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

cachebox-6.1.2-cp314-cp314t-macosx_11_0_arm64.whl (392.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cachebox-6.1.2-cp314-cp314t-macosx_10_12_x86_64.whl (421.9 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

cachebox-6.1.2-cp314-cp314-win_amd64.whl (329.0 kB view details)

Uploaded CPython 3.14Windows x86-64

cachebox-6.1.2-cp314-cp314-win32.whl (321.1 kB view details)

Uploaded CPython 3.14Windows x86

cachebox-6.1.2-cp314-cp314-musllinux_1_2_x86_64.whl (674.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cachebox-6.1.2-cp314-cp314-musllinux_1_2_i686.whl (700.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

cachebox-6.1.2-cp314-cp314-musllinux_1_2_aarch64.whl (615.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cachebox-6.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (460.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cachebox-6.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (497.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

cachebox-6.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (488.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

cachebox-6.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (460.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

cachebox-6.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (438.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cachebox-6.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (487.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

cachebox-6.1.2-cp314-cp314-macosx_11_0_arm64.whl (401.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

cachebox-6.1.2-cp313-cp313-win_amd64.whl (330.1 kB view details)

Uploaded CPython 3.13Windows x86-64

cachebox-6.1.2-cp313-cp313-win32.whl (317.8 kB view details)

Uploaded CPython 3.13Windows x86

cachebox-6.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (674.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cachebox-6.1.2-cp313-cp313-musllinux_1_2_i686.whl (698.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cachebox-6.1.2-cp313-cp313-musllinux_1_2_armv7l.whl (734.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

cachebox-6.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (614.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cachebox-6.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (460.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cachebox-6.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (496.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cachebox-6.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (485.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cachebox-6.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (458.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cachebox-6.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (437.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cachebox-6.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (485.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

cachebox-6.1.2-cp313-cp313-macosx_11_0_arm64.whl (400.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cachebox-6.1.2-cp313-cp313-macosx_10_12_x86_64.whl (435.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cachebox-6.1.2-cp312-cp312-win_amd64.whl (328.7 kB view details)

Uploaded CPython 3.12Windows x86-64

cachebox-6.1.2-cp312-cp312-win32.whl (318.7 kB view details)

Uploaded CPython 3.12Windows x86

cachebox-6.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (673.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cachebox-6.1.2-cp312-cp312-musllinux_1_2_i686.whl (698.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cachebox-6.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (734.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

cachebox-6.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (613.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cachebox-6.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (459.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cachebox-6.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (495.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cachebox-6.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (485.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cachebox-6.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (459.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cachebox-6.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (436.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cachebox-6.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (486.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

cachebox-6.1.2-cp312-cp312-macosx_11_0_arm64.whl (399.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cachebox-6.1.2-cp312-cp312-macosx_10_12_x86_64.whl (434.2 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cachebox-6.1.2-cp311-cp311-win_amd64.whl (323.7 kB view details)

Uploaded CPython 3.11Windows x86-64

cachebox-6.1.2-cp311-cp311-win32.whl (331.1 kB view details)

Uploaded CPython 3.11Windows x86

cachebox-6.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (670.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cachebox-6.1.2-cp311-cp311-musllinux_1_2_i686.whl (713.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cachebox-6.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (750.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

cachebox-6.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (613.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cachebox-6.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (456.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cachebox-6.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (491.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cachebox-6.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (487.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cachebox-6.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (475.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cachebox-6.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (435.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cachebox-6.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (500.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

cachebox-6.1.2-cp311-cp311-macosx_11_0_arm64.whl (405.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cachebox-6.1.2-cp311-cp311-macosx_10_12_x86_64.whl (431.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cachebox-6.1.2-cp310-cp310-win_amd64.whl (323.8 kB view details)

Uploaded CPython 3.10Windows x86-64

cachebox-6.1.2-cp310-cp310-win32.whl (331.3 kB view details)

Uploaded CPython 3.10Windows x86

cachebox-6.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (670.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cachebox-6.1.2-cp310-cp310-musllinux_1_2_i686.whl (714.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cachebox-6.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (751.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

cachebox-6.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (613.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cachebox-6.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (456.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cachebox-6.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (491.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cachebox-6.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (487.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cachebox-6.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (475.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cachebox-6.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (436.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cachebox-6.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (501.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

cachebox-6.1.2-cp310-cp310-macosx_11_0_arm64.whl (405.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cachebox-6.1.2-cp310-cp310-macosx_10_12_x86_64.whl (432.0 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.2.tar.gz
Algorithm Hash digest
SHA256 36c24df59d8c277cf41197369657fc7d14ce6a082e7cd074c47965412558ce77
MD5 23fb6b1ce529db2b0c7c70cce1c37c94
BLAKE2b-256 b4a21a71fa31ec78c44fbe78ce0ae4fd48225522389fc6a23d5621320f74168b

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0a006a46a1ab867be23189d54fcc795875e4e0fbfc0d9e49c77a63bc376c888e
MD5 57e62c4961ab0740a0611c78e17e9e0c
BLAKE2b-256 b6453faf7650afaa7b9de9725939fff882a4b6b26e465b270c3c26962998d287

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 004e72a8cf727aa009ab62e07a34cd115976fa1e077d923aff81d95ff0ab3971
MD5 bdd79cc7326397fa37d0ec808fd09134
BLAKE2b-256 750990b69b5a0259e9420ac0930a9ef339441c0b12f74b30c2c0688439804255

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7286ff3d02b900589a2027afb171916ab09c971363a6706eaf06b9359288f773
MD5 08cb2e7e7b56394341d454106160d2f0
BLAKE2b-256 4fbb9445877157da16636b8cebfb2061333adf8ec500416b7d941f7852c72410

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c72d0340cea783a1182b42037ce15d4468751f1090ddb57e7b06575da33e9f6a
MD5 ba163f32b512a72dd9bbaa72340a9e4d
BLAKE2b-256 78ef877175b088bc015f143feec77f49b3360f6ace2c4b2721b3941c119a471b

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b803869703b2b68352a6d24fcd8336ea94d2bb56287ca64a931c00140eee47f2
MD5 e5e62bce89f231c23f7d24aff04741e4
BLAKE2b-256 b8d55480edc891c86c356beb593583007cac0476eb67969030b665bf89347c04

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48eddfe2219e7a9c7d7829065c75e14e668fbc56d81b84913c9b7e3b2725aad3
MD5 dd3074b64f9b864b5e0d1d422f286ea2
BLAKE2b-256 547f109a163f401470c8b208c7ac76b1a650265c877a4150e29b1f86760d4d13

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c359d27d82f93c4a581498130ecef92a12dfce7fe21d999c0fc549ae69e7a121
MD5 13d8e1b7288ce14242d893231e81f05e
BLAKE2b-256 e0342ebe6555617100aa063e703b463e501e91b060028641522287d2378a135e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 469f708350c507eb13e50189f46ca1e2ca9aa3c33bcc5c3bf6be69b43fdf3f5d
MD5 e649eb036e5d4ac9fe9564a441a2795b
BLAKE2b-256 1baafd61a92775064d1901c28b1b1947c3443dfea531c122568fd171b007858e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4846c3f0cdff89887963516c08ecbd48e1fdd87dd552230c11540103f3dfcc24
MD5 b031e328c49b5f8035c461aad12ce276
BLAKE2b-256 f7f73121536528a9bfe800efea4d3d0a3bcf7345e29888bb0b3999111882cb5b

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eca69c7609c3f805643c25a8fa7fed959209479a41234a285f13209e10349c5a
MD5 2563c52174ebea434b377fc10d975664
BLAKE2b-256 f8cb442380e042a36119c90b405d144efd7c533de4de021124a880bc8a99c299

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 64a013193d1da30b17cb6f94765f7da54881d67c6d359d13adf6b255186cc783
MD5 075c9891b3dc61efa973c0a9ef5d3207
BLAKE2b-256 0ce23342c73f25a3b5b7cc8a0a9b2eaea3e77bf450cd0c7f469998013d0a9262

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e3982b1161cef9cbd9dbd1720f8f123f61e15926a122c2be32f5389c3e33bf0
MD5 4f17c460972de5a8d2b738d20c811999
BLAKE2b-256 ea06fba80873328c1f0299d84655ecb5a0b498d402b2e147ae667e5c8d81711f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7259a5c1b3ed1e3c96bf6f2916a598bc8a873b497ca4330e6841101c479751cf
MD5 7d8836a292aa8b5b866f12628a065114
BLAKE2b-256 24439d63d8ad6c8f21f37b9586af48b0ad8ceccccf4f9150e66973ba3daafa89

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315t-win_amd64.whl.

File metadata

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

File hashes

Hashes for cachebox-6.1.2-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 f46aa30f82d55823800405b8bd609fa1f0f1ef0f6e08da5533ad397b8258cec2
MD5 85fc391d0ab521deb127be6a205d5aca
BLAKE2b-256 97b17bd0b82bc505d1d47f83e57df1e2a26e11be5459b5ce3be5e885789dc3f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315t-win_amd64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315t-win32.whl.

File metadata

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

File hashes

Hashes for cachebox-6.1.2-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 b6aa0a37df6a70463c95df501539ab6c63b92d815bcf5039f1848dfb7fd24cbd
MD5 d0b8778040a807c89c775f99770e002e
BLAKE2b-256 abeb175f7e3707542bea804f41d5a14689f48b09f11545580bddf46d7033e5a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315t-win32.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3ac41278994ca1f4c6a2b6b1d1e60872a930a9e301a7c6af402e28c266c7bc6
MD5 e788ee8355699680a772ad7ad79f63cb
BLAKE2b-256 707a97caaeae52d42feb344bec878ae35a78d7960de4fbc970d88bc960cb6e5f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bf41b1613a154ef02a6ab065d4b1f00fca8e762f986d1b495b39f6d11cff652e
MD5 6773c4091e0d839d67e27adc837c732c
BLAKE2b-256 6cf95569d6168dcf9c0bb252c2055369e7736aaef38185723d3815de47893100

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315t-musllinux_1_2_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 671249b0290fe9f7cd62c4aa040dbf2229b56d181ef310957ff7aa7777848f8b
MD5 0bb720104bdccd7084eae16cb46a4785
BLAKE2b-256 399ec5dfb29036961e29c9d7cdbd20fcb15eec09b1a7c65212a6958c68c34b82

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315t-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61f96117eb4a1228ff97ff4600fb1bf5df8cc98d6a3cbbc9f9b0366d9adc571e
MD5 849227c0dd495bba18a2ae8fbbb678c1
BLAKE2b-256 9e30e6fe47355ccb701bb5fb2c82ee9b2bd813d06437b5c5c2ee8c7521199df2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33350644eb464e9b0f988595136afd85afe5ab022a9cff5c247a9adc5697f3c5
MD5 ecca2bdef287d983254898a1cb65e498
BLAKE2b-256 c5a2ee928bf9a0a5660176ac4ffbde1b22cd40a0c4d3bf9784da5dddbd72b04f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf228efff10e245dd5e85dcba1d488c3e2440e3211d6609a79f02172578666ca
MD5 2c31e73153ce3a284cf70bad66ce6a34
BLAKE2b-256 b3129f2078e2eeac7eae5ae038749a06a5dc90b83ac18d819445fd350c2fa46c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0704632bd2a661ad5d8e24c1fdc9ecbab6224c291f6e0cd8906401cbf0b5a6e0
MD5 4028aeef4c5c90045ba2930bd72a5b67
BLAKE2b-256 61161ebe2475155989bfadc818dfbe47205926c1456de26144c7552b112a5114

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 46cdc3a5143b5975bf5ad60f8498eb7f8f9a21189db35e0daed606720c6a0c50
MD5 46f236cf37bc8b89aca16772c6f8771c
BLAKE2b-256 bc221b4a8593324de9edd52937bae9a05533eeaca78b343ee615f3094a02888b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9229edcfefb6f16a43c8fb4a7e6118dee0cb0b6b29b667fd21903f566a7eaeb
MD5 b1b8f01d7c16d21fb49cd4dd0981c08e
BLAKE2b-256 ab300ce1aadb4f61c607c75239dfdb9f4fe931cf192cca9080a5ea35ccc39edf

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 82fff5a94d20be26e5e57984d12528911979e1f10b790ef37cdc656998b0b53a
MD5 5724e51f3950691b13f2645016e6008c
BLAKE2b-256 5274aeccacbee6441547e508d3fad2e41ad214f17fe6612eb9d79808611abcd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e14d108f804513a3f46522b4bdbbbcbe18232e9de6c089dedeccdddf967f19d
MD5 9f2ec9fbaebbdc034488d11c4ae710b2
BLAKE2b-256 064ee2165fe5776de739e0c3865863670ba073602ee82e28099ef4613ab4344e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9e30b6f6487bfabc9c1627486fa1f228eecadb477762e2222fd50981a582a5f
MD5 fd8488c526272f8d68059ddfddb52265
BLAKE2b-256 1815dffe4a4b0972b4a6d7275942b4ececae659a00fe77fd51bb71d291521f95

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315t-macosx_10_12_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315-win_amd64.whl.

File metadata

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

File hashes

Hashes for cachebox-6.1.2-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 7863ed77b97fce8fbb553154f958deb576a0b37a1469d15f775c5733c91767eb
MD5 16707136e83536869e7dd164bd952c69
BLAKE2b-256 f6940533416941b2ead105dde5095f582a174574ad41c3f92e44e73be36ccfab

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315-win_amd64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315-win32.whl.

File metadata

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

File hashes

Hashes for cachebox-6.1.2-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 671ae7d8e1a988376c7ed48a9bc32a21d60998d698a7184cae88cb564f36e438
MD5 d8d031ca0651617027d20c9f97b7edcc
BLAKE2b-256 558b6692163c9888d631114d80605b972c756f4dd5b0ec90e92dc94f834c5cfc

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315-win32.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68e6ee3cea37cab5819992c1f182502a450eaa8f4512407d55072e316a27de09
MD5 2df1cf668e866220f5dd70c5bd396b7f
BLAKE2b-256 02a6d3e098432f89d80bd550a3ba13b0a095ad437537e3ff1c6e6690827677c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a50e7cfe2d61a1351cf552d1fd84cf48e1b1dacf92bca7896d919c7ccb42d0ee
MD5 0f1d1ca7c636cdd782bc60417e19e5b3
BLAKE2b-256 b664065c53aeabfe09387417510598c8798b031b27e8e01f2fc60efd74b49580

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315-musllinux_1_2_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 98a1aeff8102f991b5a044e80ca74beb1fede5c293cd6441d6a50d2d017a667b
MD5 ff454a00183cfa8fd2ba0b88c74de536
BLAKE2b-256 d393072785407064ae2292b5bec2e5b61310f59c78894258422e808af6070f6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315-musllinux_1_2_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 68634dc33dcf0501c0fb361c6de9f5b21afa7ad398d3af4619e15e5750af9d5b
MD5 54b76b646d40e69ba4ec07818c004d66
BLAKE2b-256 eeb0dd5171b252bfbe9b8f3368f443c8765c9813c9431852b588f53fc2c69762

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2dd37df2d7781dbfbfa499b069380c0ad32ee08969cf65ca7951fbbfba849a12
MD5 3674411586aef74eb748ad72d5e67388
BLAKE2b-256 b99d57fd08a53a92e1fc7b101c82a06f5f5a7fa080949ddfd95a8240ddc921d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b647e798e3c19239b2e4dfbc7bf9e9d39ddfb68c72085e9d4d4ca61da8e58431
MD5 3eb9780f7d3ae7d5cd84a9cc58e7a683
BLAKE2b-256 bb8122babd2419314dc6bc1f9c5e51d7a7d331b85b9008c6d92a2aa08b3aa418

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 46002418ce699a9d6cb2e616fb5836f1176a1235dde72caac9a3b5e6151709fd
MD5 0c38c9712f5f97f1d4c268342d369280
BLAKE2b-256 dcf6f7e466753afbecc634bc77ac450809f06e78e14b1d508cb46e4fd4a4c946

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d0f7e340e02f690218738b0f0a68799aae69891b37fabaff835fd12f96536da0
MD5 67925ad7ea53fc72a7e2d75123aebd09
BLAKE2b-256 7038ae5b51909dae2fc38a24083f58a7c55ab56904bc0d842626e31a341d4d05

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9ed3f8b95c8822e7af2ddea87680954b1116d57a7aecd28847c1b8f72e2485c
MD5 e3ee67d6438b2863977c0f4a217f4aaa
BLAKE2b-256 20a9a4834b3620311c45a932e5fd7c0d3a9a567870e4ccee5a392d77f5c283d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a2172c15c4dfc7453e496a32e538a9bc652f0611cedc3034ed8d798664968c5b
MD5 8f5784123662d2691c7a2db8a29a4736
BLAKE2b-256 ff0b2e593d83a16baa1e1d932e1569cd7644acd819c71e39164035241c331a3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78cc8249b9d76f19f540eea1c5e3a6917adc3b43967c21740f2c20892c78153f
MD5 73b771a0fd0dd1b3b5d874c31883e0f5
BLAKE2b-256 85ba4d2a0ed7ae56c04a93fd6c92fcac2a0a579cfa9681d659a4581f07b0a1f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp315-cp315-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-6.1.2-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4790c3f2fdb127ad2925ccb7c695b962507446872687be67eb228dfdec1dc1a8
MD5 9866ca72705dcfe006f0d96081fc51f3
BLAKE2b-256 a85cb4034fa6a9e2f744bca4a419c492ca34f28e18bdc7a0d18c77ca47687d18

See more details on using hashes here.

Provenance

The following attestation bundles were made for cachebox-6.1.2-cp315-cp315-macosx_10_12_x86_64.whl:

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 85b6d9ef36fb75c1292e8061dd32f6e52b12dcfee202daa86de8a3b3821dfa65
MD5 a64bb4da143eda0dcc7cacd95daa3828
BLAKE2b-256 5e3f2c52aa1b08d662768d0727b1f2cef51681c5eb9fd01fe682b1bd04abf782

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 176ffef4eeb426bfeeeb8ba9d25c87af97eb9849a32e206e380abcf0e4591511
MD5 a0fdddb69d8c91c1e74300ad499aec7b
BLAKE2b-256 822fede32c5ea360bb35dd7833992b52aef9b72dd53ea2a4b799f1301c7cde64

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b78287767ea8a9c4fccee7e73a5b3bd798887b481a00295f3927cb503d5434cc
MD5 368fa22b6c80338e65ac9008656e05fb
BLAKE2b-256 c92c0079260f86cfff73251076dc2edef1caa32a01d730b2841f891b73d0b54e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7871385c3ec1aee919bc0eb28ccccc8f2b866322e039cb8f040b2aaf9fee6433
MD5 108f4faca1e1a227ad9d97b1456bd439
BLAKE2b-256 8c7dbbad8d2e6bce6bcfd977b0ed44a051712254b410951167918ae2cc12011f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b44142b4d3142a439a9d0b073b3ed495bb81013581227821641b7309c7bf157a
MD5 2e8b67e1ccc11d8b5db754763033e1bf
BLAKE2b-256 18248c19e8e36470ab0619a411bd8d2458284f06a634c0805507c463bd03d6fd

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46328c31d4da69190b805d56e4bebd66fc936c9784761c430cdfd7d68b10a89a
MD5 3e249d203b78da339478f40d92fc8a00
BLAKE2b-256 bcd7020088fcf007fc342275aa0610d12d43a1099326f59049924889a9b1c075

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56b2916129c6a5d070de174398efb3693f16d38dba9e8962fce9dd63a3bb8698
MD5 26d5e53bbadd7a0f4f0ac9315ed9a964
BLAKE2b-256 81b8b32f3c5d1e8f1d87eed9429d2b03d5f21f15e4833ae94c64c010877807db

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f99a2397fe6dec9aa75c891dab3691da069aa6b0614cd51c10174ba2ab1c9f7
MD5 d61b4c4b38ee650948ed52954b208ed6
BLAKE2b-256 0793e58290b864ab6592f1ce15961522746ec7e4c0fa0b12bb2963774e86e6a1

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ea5ac54224706b0e11cf9a78c90684ae83fbb95e889d15b32a494a05ea14f9b9
MD5 25ae7f1278d619005d400b068e254f71
BLAKE2b-256 951a781642dee955b575158175b52c1e67d24d1a881915b4685f1618fe652add

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 159bd498c5fda81c51be87b0c2fe9e8b0beed7426bfe953d5ef8234e2136ed85
MD5 9f220402b8d617ccdeb1bcdcb488747a
BLAKE2b-256 5c749ca91390d675d4f2f8b7b7dc0ea2cd0acccac41bb1d4d12526bb5c3c301e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12de0adcf37ab006a922b4209f1578c20fb0ca0e075b0160cb8adb267c639d70
MD5 f9e3c2153e192f51547fbc8e6e9a78bd
BLAKE2b-256 73f644912b1b932662fbaf12cc80265998ecb73172ec7a43f3379ebf44a36fcb

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 edf8a33a44a640e19db13663d2393a0b6d6037bf8b269f225599534b24e97647
MD5 9dc3ea2c98413d2f70e55fac930a9ba3
BLAKE2b-256 f1bab4d17c92f515e29ac5e53149cf176649230549ca1def52f8b7014800a54a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a16cacf7b521fbf250794e22bb7ca73673fc01ef3c14e548ebd3ba416d68540e
MD5 2f451d14dbd051d456320c4d44eb3c64
BLAKE2b-256 f6be1f31bbb97a992e10d02551ffa7dfa64419cb10e21211661b41417a5146fc

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2fd493c907d86f403d79ac7df797a72489e84f45298cbd48d2cca077ede9a2d2
MD5 c563c8c03cd0b810bd702a60501e50f4
BLAKE2b-256 3199e8c9d6d7e725e2028073619ed86e3bfeb1d78b5b2214aa6110dc2330c643

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2cd322a923be51a0e2fd509b349ece25be16106ac34f4d13bcc79674d3c73b00
MD5 c0d41c50e576f976567f61e0d0e58e49
BLAKE2b-256 eeb8ffc4323b5b0e1e166c17d9411ae651530f5841ad3fe25c6d7c6285ff0ca6

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fc2dbc41a031dbddc9fa2aca6cae011c0fb1d79d2627c1ecdd1372cfec831627
MD5 15452e6e03e093bf1b8fe145ecb9313d
BLAKE2b-256 ca3a752cb7c1178fa9de3895dc50eb26ca8581dfc13c38699cb49bc0b6b98e12

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc34a054e3248e4ee0e44ff5fa6a1aaf522277cd4a6900763165acb591ebaae5
MD5 e1a666e1e4d63710a4b8561d7a2d7693
BLAKE2b-256 3a94ab11c4beea4555040f0872bc0f04d6fe2d59513b1ccaf5f3e362ac9d5d94

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 18064e146d2e714b2c6240e1b77e91e501482abf6ff909ceac6a4569747047ab
MD5 c863d448db5aca7f13f4109d71408dee
BLAKE2b-256 d44e1f3f94bebe41efab940ad7d65f80efe8037b2059f8167ec88571f807d444

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4af6d322ecef2b46c512e89a8818fec5311534805b59e7072d32ff253b41e96f
MD5 92bded0b007fea08adbe9b1f0caf424f
BLAKE2b-256 6cce8f9a17631dc0510749f02e22ce85d31853a7f340ec9ea1f948dce557ed0a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85c8b81490f4c80b4b4f5eb6fa7e7ac1357ac71d35ab8fa378d7875bcf31c943
MD5 db5c568cff3d8411957b31b9a876c8ad
BLAKE2b-256 f1956681a560257f8d1c2abf4b4cb22c7a6c62394ecb17290d436cc7ea010a56

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 151daf23e057bb696a54fd0e5e2b43f21ff96d593f91ba1c3abbe11b8c5caf8c
MD5 179fb940c937d80307f36351741b66ec
BLAKE2b-256 b9515862ac51360afbe0c560620432c1d790e78c3aa9ee6755cd4a1a0d7db167

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 38141c5abba5492ce8f1bcfaf0f4ab7640af2e1b5dd0e1c70754b558b719597c
MD5 1a035196abb6fbce504eef05ce459137
BLAKE2b-256 f3cf54472e7261aad4fdd786dbf82cbd87317c88e1edbd7331317150b2b5191b

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b9b4d2d520a8e5787a8671116274c7ba42a929fc512745cb236a2f9edbc7a27
MD5 32734fd0a9c917aaaa8764f69abe411a
BLAKE2b-256 4716e96cc4baab77f9fbf8d8900bb059e94677f6af3c3a36cb1689614c668740

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f84b7636b0a3521d93f2d50b9da4f48101a8b05af00e80ff3df02e48650baf64
MD5 e9d1b8e090a1bf141aa4b417a7d1cb20
BLAKE2b-256 03335b48bf9233931bdbaa4475544e137aadf2004f1da2b4433899db31b81976

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7e7b943b57e503059dfa8b39bfb0080cbc6798e3e9484622ec085d7c48753b6e
MD5 a40e8472e1c9588db402886afdaf01bc
BLAKE2b-256 bd2cfc5edbfb92836d14e6eab88eaeb07e56f7168cea39ede53c525acbd8ea68

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c92a518a29218e6d5695fa3dfa983abcd5780aad29da1dbc60ccac8bfcfa2b40
MD5 6722c629c159900f64be6820c01a9ad7
BLAKE2b-256 13b5be47a07ea7d517afb5e221073ba963ac239f702b86b6b3d94b32a5cdf3cc

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 391d243e027239bda067581de358d7077f6c679051d44567a3c83ccbbaf2a03e
MD5 2d941449e30d4c290e6ea8564cdec540
BLAKE2b-256 3183518b707d9113e854a81d4863a8608c5dd87c849d0a438188133c51abaa83

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e7b410b305fcbb08c98199126fad11797f90c5a702c469e161fecfba5c3d91ba
MD5 21ea38750cd7fc7929b0183c8bbf54c9
BLAKE2b-256 9a97ebc5855480848903f55070cdbfe11d7b0fc5d7c1a5db102e69322cf86f3f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

Details for the file cachebox-6.1.2-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for cachebox-6.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2234a461c597b585a699857eaec6bf902266f990a1bc33a13ebd5f0a2b15642a
MD5 8995de6811200736cd350e1a09d93b7d
BLAKE2b-256 34d0f443b95ee13551f9d1d2e96e01604b6845263a83521bb0860174e5887e2e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4d50e3309bb02f3e9ad976c2ce45b9ced91fccb3ddbda8c4aed854ec9dc368d6
MD5 b09f1a6fddd8a890a2e4ba274fe73707
BLAKE2b-256 8ea5fe5deec09112b57ce6b7df4d87e0f27ee949472c6539fe3593ec942e69ee

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05c85e84754565e607083db2494a3ecebe7b80800cfe2521a399966038736855
MD5 59716807f2048be4bc317adb407a9d2e
BLAKE2b-256 8fa895fba847b107b6f0fafb94513ff8a7e53334c1fb5f4c1a7b6ac79519d564

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e1c967dcef78cdcf2fd37de72f63ae54f7b345cc02f85b272bbb1347ecfb7a50
MD5 4e1b642895cea8438bd099b7ca8da387
BLAKE2b-256 b0ed6fffc98f51bee450ef1e7f27645e061400e61db2bec04a39e7a68b5fd807

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cf080b6f64d38103f287fbc07f9d5da38298d2beb6ccaee5513ecaf3473109bc
MD5 1fd7ad19284d19a8e58ff870b7084b4e
BLAKE2b-256 5d2dd9047a44554e434564761cf4bc6cda8329e200c8bfe8f026c8d7ce2ac6e8

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3250884ba3c91f5ef42faa4550647f412b8689ecbbb9588d7b37bc8c5ed97cb2
MD5 ec339e36467d0b2083e5b98b90f5b51e
BLAKE2b-256 5237c1a9344ca4f98eceb2245d2d24e43f7a790af576dd15345d606f53360a92

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a1ee674bd3e0b078dcc1af69e985355c4c8697df1917bf4da474c1461831216
MD5 9b048732ee22bcf281bf30fd4ec2c22b
BLAKE2b-256 8a005b43f75074d0cc000eb2ac26fe7f3a911e1e551ff98e027f14d30a9ebea0

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98dfda513f1865d78aaba5b9c4a80267589a8d08be638fc0c7425c26185a7a95
MD5 ea4a0755829588c94dedd1820f3f1ca4
BLAKE2b-256 f2ba2b99ec3f409887c9feba86548d8ebc6a3e7b98a32704dd91f54ec4ee41c6

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 30ab69f3a370c0ff0d5a252db82f4243aaeb3a5fce6bd70b3027ccd4572e4762
MD5 50f3a1569b28fe6eca020939b2f75554
BLAKE2b-256 6bb1dcc6f5efb0db8ae69eeca5740baa8de522b6c68f6b175908280e75b5cb59

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7189fcd14473f816c8aee1aadced5e44c3d4b7d168c8e7c90133ff81031b439a
MD5 246d96aceefb1f724174a3769e5216dc
BLAKE2b-256 3a2ece49f7f2b8baadd1b369d0d9b8621678893baf24818f7d6446f286a0b4d6

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb193b37ac4c55e67f7d9c22b46c7554ff9ad2c8e73e1ec2d2f9b1e0213fc08b
MD5 08ae6217cbf88398f1a53a3c5f90b8ff
BLAKE2b-256 3aad6aa9bbb14f3d28022981847e059249d533df1073f8a380f756d46cda801e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cec6c958f1121d0a25003a030068ff013a78a0020750d3d331af3dbf7c1b4316
MD5 23eb2808f3295daf9b77b31ee792f455
BLAKE2b-256 395fdd8c51023304080ccc75a408eca56ce719bad136fea310d9773e6542dedd

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0bba1191d0dbf66d93ff7cbd6171efbeb73b760e4f89e1af52d84de18938f4c
MD5 ee9bdef12adefef6055cb71900c57fb3
BLAKE2b-256 34cf6028ae544471bd41c7313cd32bbc37fdcd796e8025fbf37f128a103a7b4d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4c19b2e9b2224cb1c6cfbdcb75ebe31b73d75b18ea5b6afd2b41c15993a4781b
MD5 eb94d67a781257bdbec939745a4d1867
BLAKE2b-256 c649195669127045e12dbd757bae43a69bcd342a434abb357b395f22801b5a95

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a076ffcb0d1d544ec08fb4eb95d947e3435c3539f6da3e13e702a3069c51d789
MD5 7735d97927f83317a632e3668983cf40
BLAKE2b-256 47a52afe409a97f3293bd5301dd7c4a12cdd2314ac7202fa8d639aadfec6cde6

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e516316add8489c46bf5cc3e622a0c74c3eab41c19ea86457b7a2db18a3942b9
MD5 f3e9b85342bb1066c501fbb87fd528a3
BLAKE2b-256 ac318b63471d6b50b6e3ff37e97bf63a5f99540b8324116e26250cfe62370fb0

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75606a0eae7d375ec05b59a47c79bef1e7e948a6607f73b70ff72deb16d93432
MD5 edf9ac276d2082755d311a46958239ca
BLAKE2b-256 bbfcf159462c5d7408bc198b2472941e7a32bd7585a8b7d1a6288a7f066bd92a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5a2197a0b0aec3ebfefe5c51f3a895289cc98e4ea18513707efb0294e61865b2
MD5 4e547149f36cc852ea8a66ced661f995
BLAKE2b-256 03452064cc258e44997da0ec39f165d84df01eacd18f79011c0fc25b7f14588b

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9ffdd4107b59a2d076ee767b210060e70abfbc054d3e8ba73c65126250f7c66f
MD5 c716958785f0a45ef2c70a96925bf4ff
BLAKE2b-256 5041ab2deca9890d44d2a09f12db7c152b3d43a7070f46401c7fccf4918e2a4f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6430d27a8a3f0ee1977ad3e8789a3cc34f91d3bb3edf0777c8d0077ec08b02c4
MD5 ca71033492264137f9835c9c2b3950a9
BLAKE2b-256 0bb65a0f84a7436a946ec85f0e442bace30bed677fef91d6e3a87aca40b392f7

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 297208598d401fa464e97cdd63b997982d8890781b88ffac18d8d0553e436c6f
MD5 6c972c9377e6c0410672af96994cc47c
BLAKE2b-256 bdca6c75f8717ac91c425162ae6741c9d0be3645306bf3df6691e64d1cef4e51

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f44ef052f3a2e4d6310ef1b200a81806fbf51ff25f03d1dbace820ecceae2890
MD5 0e70f9e0e6fdf947db58f30741216421
BLAKE2b-256 72e1181e2d529c1eeaf1f7f65bf37d2aa8cbff5bc448c6986ac5ba7b7addd302

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a290fa60308c3f68643229eb0250fff2e823e99557259de609b1ff2794c2c475
MD5 85dad7156ea596b2d702e5f77c6eca85
BLAKE2b-256 660307463b535eb0da6be62affea4b4ee423f12b404b69cac0b1391d1a6658a7

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea018f28c858790f333f7e9a475bec2963394da0b06b7280c06114c1e9235687
MD5 6b1b32d9930667837f36c9eced0f4aa6
BLAKE2b-256 7ab393ab72987578765f20ddaf52cbc249ac2f644333703606bb8f3839324131

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38336af0ebc94f32dc8d17ef0fd2c9cce20adcfe4f172f12a3f80abf08ad9627
MD5 4c3fcd1ed292d5d6878d938216aa7df7
BLAKE2b-256 661de5c44315b181608c5f710cda6ab200d3c886280269f1e743dae36315b6a9

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bd5c164ffac04bb181fdbea78d59d4ac55df596c6d6843b50e2a8ccc728d730e
MD5 1bf7558841d8b45fbf7457256eb8394d
BLAKE2b-256 197587a03c4abe220a4e7a670659e7be251c3a2c260f1c1558405d738efcff5b

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bad3b79b9d03a684ba0ad478bc4437c2e778b12265f086bfc289e4f3d2fa733
MD5 08b0eb60283664021a727bf7b6cfd8b0
BLAKE2b-256 5a4538c33047a8b57a0d2c04c376b48d10c3b40f55f042d61d86967290e076c4

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 67a86e37ff3dd259ce60ce77c19102dcf1b428a1100de16df1b89ee8077fe602
MD5 d3d074aa2f661caded89fa01e1b9073e
BLAKE2b-256 3f935288cbad86fb2a8f5df0dd1510dfa1fa4bc12075bddd3639b06679c6e364

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2b0eee201861b1b98231f7674147732c11b90e8365078a10f8cd01b1988a3493
MD5 6f754be84b1f7125ec3a9774e31d3e18
BLAKE2b-256 de37a34903a280ac140a771f37b96a984e9cb3eb25d0eaaaec6b3a4aa6a1624d

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b617fd61da4c73f450bf516cafc792ed12167470c0bc39a1dfacc51ead7ab72a
MD5 197c35d98a377de628b5c313590bafda
BLAKE2b-256 7cfe6ca21b76cbd99c82ccc52fb7890b603bf2562781fae2445d30078519eac0

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38cc751d51bf01f45ed0bf5a8c1059b867d77edb0a157b58bed922d75fe45bfd
MD5 7215d8016a2baef1a157ef80149de490
BLAKE2b-256 f47b2ff9bb727ef6a26dd5d965755c545270729f9a82d6ad25a287179f6c7200

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d425bc2de3d6b646dbbbc966c8fd563ad95067f5b8077e52ee00ed1a80029d79
MD5 847f687f4e341f4cbf2bf96b143b37d2
BLAKE2b-256 f496c784bccca9b1ce97a4902d29235231ea3bbe257b33bf979aff9d496d6b9b

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c9460a79f22eee1d787f41daad5858e0f4aa0dee1ea1f2fbdf8b8c25ccc5bfb8
MD5 2a5ddfc68b2802de66e2f8c17593d71e
BLAKE2b-256 8f246115f7202ecf5354d595a93a174ea74f80b3b6339f20bba8bf3f04442548

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 960c373ae2562f760c61c2c39a32f8acb6132c747ec51fd7bf1770e08ff6ed19
MD5 8788d051bf7fce92322a88d21749e79a
BLAKE2b-256 5897a73bcc03516bdeecf35fc501893548bfe2d9b202763a33f56694fb573696

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8241f293420ae358145c5cdcee5cfb5a3540a2ab5346d10ec40f775543f3d16e
MD5 fd6e34383be84ca6e3744293ac334ac0
BLAKE2b-256 c7e44208b4897668dd58c636178093438992c4c53bd5841c1486841dfe7df07e

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d47e35835a6dcc15c3b6a8ce95fc19190f5da95ebd97aa7314d57d2b27954090
MD5 03ad7cf8f9ee2c6bb461c0e0d6cc15f0
BLAKE2b-256 842fbeadef13760407efe9e17ad58a6d7f5fd22a1f76432770ba1f75480a220f

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c820a254e49c71472dc05bacc7af10873be64e43353b5e53e8b35aac57761ba1
MD5 892a5ab1633a767a5d5b0c9763342159
BLAKE2b-256 0075b0aa9dd15e02dc6e2936910d54336c9f3f5baaec15b4d04f54de6e02be8c

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2ed1c2f3b631a1b8d7fcd0ea5367c650fb65ff6fffefc53f061462e58f94eba2
MD5 46df178dab8fb16594dabf88cbb8b341
BLAKE2b-256 90172ae764984649b82eb94e97cc860beaf4836566d2ac43dc1a245890b628e5

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 498d60074fd114b8c291ae6927803dfeaefa24fd635810972eabf2614b0d4763
MD5 f261a7221a23ca3116d56713184094df
BLAKE2b-256 bb7d538442718b3abb0c42a81428f9a055907327e4717e9716d24371ba57edc7

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 80855f210db083895bb2925cf25a7ecc8895c3c118d047de2fdd4e644327abd2
MD5 6ca5f9a83c3943aa52e08cea673fc527
BLAKE2b-256 627e3e10a67e42194837a108a48ca50ebda1616375f0ec6b075d34d0d06a7194

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adbd17e537e27d804e82d444e6244b4fa955b9a1d9d4da8383163c450897fc81
MD5 c0509e2ac79165bdb76a0eb6d20332bd
BLAKE2b-256 475af994e1e4813a36746a34d542618de8b73fa67373225e519672ab830aef37

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 21b47645f826875fdc4a5ab4b6874ee18336fd9f0e58495a4f4c4268530e09ac
MD5 2f929a00f9f6bdb81c023b55387d32eb
BLAKE2b-256 4c5234997b1a7f71fe1dc1ded253bd7fc3e005333e8c5c84d5f84801e2a79102

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 24357ad8531389f80dbe4a2bffc077a43c6b9805e225db118b847c5a8fbc97ca
MD5 ea6367da1fc3d9051cf749a81e4d7928
BLAKE2b-256 b44c7ff39e8faaf5943d023be345c91a618ef5da28125b89136c67415aada5fe

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

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

File hashes

Hashes for cachebox-6.1.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 84957cdf67d97d699d923a3e20e5f780e4f14814f93e50f1897a87fab023863c
MD5 b7b9b2b7697c9fbe9ccfefa56c0c4f18
BLAKE2b-256 4e6e7663496c9e83c07967527523c3b8ed4508bc41b1cd3f141b25bb0fab9f2c

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cedcda8608ea5cb4e34ac2c28a6c7e8dcd438ae9ca3116818f2a9702650b3012
MD5 70ba70faa3857c47c0d6e7124a1b868d
BLAKE2b-256 7cfde768da4f87ae2c72364cb088061143fb70c7fc584350f9401ed139dd8794

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03b48adbafd115ed552a96bec1f3c7575f4fd7e9e128d611bdffed66dfdb5ad8
MD5 76f484509c39f8f8235203eb196a152e
BLAKE2b-256 c586e6795a49ab63595f31f7266ccc1faa34d42b5cd226d0f68242187a32412a

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3d47b2b0e798946444b72192c3bc98888636222ce81d2d5ac8f0945589cda651
MD5 983df9e7d4f76d88fca146852774d01f
BLAKE2b-256 fd92deb24c687a8cb13f84504a13f8fff3dc5f85f747de733dc38212f500cc2c

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 739b78604e5634c8ee766103310ce4d3f5f7fe8b227cf8b9f7cdcd562b7b1a35
MD5 1c22c0f0074f63dbb1a2ea81d5cfd357
BLAKE2b-256 19f5ce1a3035de93383e487420c79e4407fa88d6f4967940623628280cb3b5f2

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 65e211805d4e4ca2692cad594a89ad7fa4abe2a93b1246840771f88dccd80758
MD5 788dd3ad92aff0605ca558cc346e9e40
BLAKE2b-256 36b241ec4a57e9ed7cc7ebbd734dd7dbb83c6540189bc8ff09b995a4c4860335

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5778a5650d7588c8243c45fc55ee4e65ea5a34d4dfc3598143bb823733e0a9ca
MD5 9f291b2c02f5e3327c81cefe7a0db611
BLAKE2b-256 4d83b032d28fee5c01bc5b2db9a28155575661bbde1cdbb4abbbbeb3dffe7be6

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9948f0bde731d103eebd28e695a0175b5f7fc933913a9f807f4c2d9deece4958
MD5 1801c0a15213045759101cfba2a8fc0b
BLAKE2b-256 b760dcf81d47bd5518d044820a2568f45d372c04f26a8f4c1fca31cfefc3ba46

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3b474723c9d61e7218b72768edf2f4121e444eb58af84f67d88fc8630638379a
MD5 8fdde2a94b503a43feb06419478c21b3
BLAKE2b-256 9eddb6ad4a784a2dff8dd1fd602bbdd87f81a44c36a9896b2f43bf8dbd74e465

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ee1069aed41a2d59fabc9893d8a90a5a13bc88f32c5387a9aefd2cc0039514d
MD5 19669a61cbf1954b8bdbd09dc5534d5e
BLAKE2b-256 85054eb13f3b9a410fbb56b75b9d219812043548436da20cf48a0ca291705b72

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f2358e45b428da59c40d5f4088b25f84f30767a88d941c89578949472a09ce5e
MD5 2e5281ba4239ac2a3c956e621406c1b2
BLAKE2b-256 1ba4740e2db43ef7148f5294d1f1c1211782ef8187f60b308f530d8b444727ac

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b627cd20fbfff4a5779fff2eaba800f93449d87294561008ae621e6672c477be
MD5 c0af7a1db94541f76c2334f36ae08a1b
BLAKE2b-256 16cc1c3cedb37bea904afd0c933d74b115e7e76745cc48233874125f001523bb

See more details on using hashes here.

Provenance

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

Publisher: CI.yml on awolverp/cachebox

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

File details

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

File metadata

File hashes

Hashes for cachebox-6.1.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3c58fbcb2f952876357be75db197853e34cf823f75d1594fef126c391dadfbfa
MD5 16fe137e7b581f496678135f2718fb62
BLAKE2b-256 81a4172a2c92905172c3cd1a73ac91f0918fbcbb8e071082ed603a3b55041564

See more details on using hashes here.

Provenance

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