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

Releases | Benchmarks | Issues

License Release Python Versions Downloads


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 (50% of standard dictionary memory usage)
  • 🔥 Full-featured and user-friendly
  • 🧶 Completely thread-safe
  • 🔧 Tested and correct
  • [R] written in Rust for maximum performance
  • 🤝 Compatible with Python 3.9+ (PyPy and CPython)
  • 📦 Supports 7 advanced caching algorithms

Page Contents

When do I need caching and cachebox?

  • 📈 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. Credit 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 locks to prevent problems.

  • 👌 Easy To Use
    You only need to import it and choose a cache implementation to use. It will behave like a dictionary.

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

Installation

cachebox is installable via pip:

pip3 install -U cachebox

[!WARNING]
The new version v5 has some incompatibilities with v4. For more info see Incompatible changes.

Examples

The simplest example of cachebox could look like this:

import cachebox

# Like functools.lru_cache, If maxsize is set to 0, the cache can grow without bounds and limit.
@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
assert len(factorial.cache) == 1

# 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"

Getting started

There are 3 useful functions:

  • cached: a decorator that helps you to cache your functions and calculations with a lot of options.
  • is_cached: check if a function/method cached by cachebox or not

And 9 classes:

  • BaseCacheImpl: base-class for all classes.
  • Cache: A simple cache that has no algorithm; this is only a hashmap.
  • FIFOCache: the FIFO cache will remove the element that has been in the cache the longest.
  • RRCache: the RR cache will remove a random element to make free up space when necessary.
  • LRUCache: the LRU cache will remove the element in the cache that has not been accessed in the longest time.
  • LFUCache: the LFU cache will remove the element in the cache that has been accessed the least often, regardless of time.
  • TTLCache: the TTL cache will automatically remove the element in the cache that has expired.
  • VTTLCache: the TTL cache will automatically remove the element in the cache that has expired when needed.
  • Frozen: you can use this class for freezing your caches.

You only need to import the classes you want and can work with them like a regular dictionaries (except for VTTLCache, this have some differences).

The examples below will introduce you to these different features. All the methods in the examples are common across all classes (exceptions are noted where applicable).


cached (🎀 decorator)

Decorator to wrap a function with a memoizing callable that saves results in a cache.

Parameters:

  • cache: Specifies a cache that handles and stores the results. if None or dict, FIFOCache will be used.

  • key_maker: Specifies a function that will be called with the same positional and keyword arguments as the wrapped function itself. It has to return a suitable cache key (must be hashable).

  • clear_reuse: The wrapped function has a function named clear_cache that uses cache.clear method to clear the cache. This parameter will be passed to cache's clear method.

  • callback: Every time the cache is used, callback is also called. The callback arguments are: event number (see EVENT_MISS or EVENT_HIT variables), key, and then result.

  • copy_level: The wrapped function always copies the result of your function and then returns it. This parameter specifies how the result is copied before returning it. 0 means "never copy", 1 means "only copy dict, list, and set results" and 2 means "always copy the results". Defaults to 1.

Examples

A simple example:

import cachebox

@cachebox.cached(cachebox.LRUCache(128))
def sum_as_string(a, b):
    return str(a+b)

assert sum_as_string(1, 2) == "3"

assert len(sum_as_string.cache) == 1
sum_as_string.cache_clear()
assert len(sum_as_string.cache) == 0

A key_maker example:

import cachebox

def simple_key_maker(args: tuple, kwds: dict):
    return args[0].path

# Async methods are supported
@cachebox.cached(cachebox.LRUCache(128), key_maker=simple_key_maker)
async def request_handler(request: Request):
    return Response("hello man")

A typed key_maker example using a predefined key function:

import cachebox

@cachebox.cached(cachebox.LRUCache(128), key_maker=cachebox.make_typed_key)
def sum_as_string(a, b):
    return str(a+b)

sum_as_string(1.0, 1)
sum_as_string(1, 1)
print(len(sum_as_string.cache)) # 2

You have the option to manage caches with .cache attribute as shown in previous examples. There are more attributes and methods you can use:

import cachebox

@cachebox.cached(cachebox.LRUCache(0))
def sum_as_string(a, b):
    return str(a+b)

print(sum_as_string.cache)
# LRUCache(0 / 9223372036854775807, capacity=0)

print(sum_as_string.cache_info())
# CacheInfo(hits=0, misses=0, maxsize=9223372036854775807, length=0, memory=8)

# `.cache_clear()` clears the cache
sum_as_string.cache_clear()

method example: (Added in v5.1.0)

import cachebox

class Example:
    def __init__(self, num) -> None:
        self.num = num
        self._cache = cachebox.TTLCache(20, 10)

    @cachebox.cached(lambda self: self._cache)
    def method(self, char: str):
        return char * self.num

ex = Example(10)
assert ex.method("a") == "a" * 10

callback example: (Added in v4.2.0)

import cachebox

def callback_func(event: int, key, value):
    if event == cachebox.EVENT_MISS:
        print("callback_func: miss event", key, value)
    elif event == cachebox.EVENT_HIT:
        print("callback_func: hit event", key, value)
    else:
        # unreachable code
        raise NotImplementedError

@cachebox.cached(cachebox.LRUCache(0), callback=callback_func)
def func(a, b):
    return a + b

assert func(1, 2) == 3
# callback_func: miss event (1, 2) 3

assert func(1, 2) == 3 # hit
# callback_func: hit event (1, 2) 3

assert func(1, 2) == 3 # hit again
# callback_func: hit event (1, 2) 3

assert func(5, 4) == 9
# callback_func: miss event (5, 4) 9

[!TIP]
There's a new feature since v4.1.0 for making a cached function not use cache for a call:

# with `cachebox__ignore=True` parameter, cachebox does not use cache and directly calls the function, returning its result.
sum_as_string(10, 20, cachebox__ignore=True)

cachedmethod (🎀 decorator)

This decorator works excatly like cached(), but ignores self parameters in hashing and key making.

[!WARNING]
This function has been deprecated since v5.1.0, use cached function instead.

Example
import cachebox

class MyClass:
    @cachebox.cachedmethod(cachebox.TTLCache(0, ttl=10))
    def my_method(self, name: str):
        return "Hello, " + name + "!"

c = MyClass()
c.my_method()

is_cached (📦 function)

Checks whether a function/method is cached by cachebox or not.

Parameters:

  • func: The function/method to check.
Example
import cachebox

@cachebox.cached(cachebox.FIFOCache(0))
def func():
    pass

assert cachebox.is_cached(func)

BaseCacheImpl (🏗️ class)

Base implementation for cache classes in the cachebox library.

This abstract base class defines the generic structure for cache implementations, supporting different key and value types through generic type parameters. Serves as a foundation for specific cache variants like Cache and FIFOCache.

Example
import cachebox

# subclass
class ClassName(cachebox.BaseCacheImpl):
    ...

# type-hint
def func(cache: BaseCacheImpl):
    ...

# isinstance
cache = cachebox.LFUCache(0)
assert isinstance(cache, cachebox.BaseCacheImpl)

Cache (🏗️ class)

A thread-safe, memory-efficient hashmap-like cache with configurable maximum size.

Provides a flexible key-value storage mechanism with:

  • Configurable maximum size (zero means unlimited)
  • Lower memory usage compared to standard dict
  • Thread-safe operations
  • Useful memory management methods

Supports initialization with optional initial data and capacity and provides dictionary-like access with additional cache-specific operations.

[!TIP]
Differs from standard dict by:

  • being thread-safe and unordered, while dict isn't thread-safe and ordered (Python 3.6+).
  • using much less memory than dict.
  • supporting useful and new methods for managing memory, while dict does not.
  • not supporting popitem(), while dict does.
  • an option to limit the size of Cache which dict doesn't support.
get insert delete popitem
Worse-case O(1) O(1) O(1) N/A
Example
from cachebox import Cache

# These parameters are common in classes:
# `maxsize` specifies the limit size of the cache (zero means infinity); this is unchangable.
# `iterable` allows creating a cache from a dict or an iterable.
# `capacity` will make the cache attempt to allocate a new hash table with at
# least enough capacity for inserting the given number of elements without reallocating.
cache = Cache(maxsize=100, iterable=None, capacity=100)

# behaves like a regular dict
cache["key"] = "value"
# using `.insert(key, value)` is recommended
cache.insert("key", "value")

print(cache["key"])  # value

del cache["key"]
cache["key"]  # KeyError: key

# cachebox.Cache does not have any policy, so will raise OverflowError if the capacity is exceeded
cache.update({i:i for i in range(200)})
# OverflowError: The cache has reached the bound.

FIFOCache (🏗️ class)

A First-In-First-Out (FIFO) cache implementation with configurable maximum size and optional initial capacity.

This cache provides a fixed-size container that automatically removes the oldest items when the maximum size is reached.

Key features:

  • Deterministic item eviction order (oldest items removed first)
  • Efficient key-value storage and retrieval
  • Supports dictionary-like operations
  • Allows optional initial data population
get insert delete popitem
Worse-case O(1) O(1) O(min(i, n-i)) O(1)
Example
from cachebox import FIFOCache

cache = FIFOCache(5, {i:i*2 for i in range(5)})

print(len(cache)) # 5
cache["new-key"] = "new-value"
print(len(cache)) # 5

print(cache.get(3, "default-val")) # 6
print(cache.get(6, "default-val")) # default-val

print(cache.popitem()) # (1, 2)

# insert method returns a value:
# - If the cache did not have this key present, None is returned.
# - If the cache did have this key present, the value is updated, and the old value is returned.
print(cache.insert(3, "val")) # 6
print(cache.insert("new-key", "val")) # None

# Returns the first key in cache; this is the one which will be removed by `popitem()`.
print(cache.first())

RRCache (🏗️ class)

A thread-safe cache implementation with Random Replacement (RR) policy.

This cache randomly selects and removes elements when the cache reaches its maximum size, ensuring a simple and efficient caching mechanism with configurable capacity.

Supports operations like insertion, retrieval, deletion, and iteration with O(1) complexity.

get insert delete popitem
Worse-case O(1) O(1) O(1) O(1)
Example
from cachebox import RRCache

cache = RRCache(10, {i:i for i in range(10)})
print(cache.is_full()) # True
print(cache.is_empty()) # False

# Returns the number of elements the map can hold without reallocating.
print(cache.capacity()) # 28

# Shrinks the cache to fit len(self) elements.
cache.shrink_to_fit()
print(cache.capacity()) # 10

# Returns a random key
print(cache.random_key()) # 4

LRUCache (🏗️ class)

Thread-safe Least Recently Used (LRU) cache implementation.

Provides a cache that automatically removes the least recently used items when the cache reaches its maximum size. Supports various operations like insertion, retrieval, and management of cached items with configurable maximum size and initial capacity.

get insert delete(i) popitem
Worse-case O(1)~ O(1)~ O(1)~ O(1)~
Example
from cachebox import LRUCache

cache = LRUCache(0, {i:i*2 for i in range(10)})

# access `1`
print(cache[0]) # 0
print(cache.least_recently_used()) # 1
print(cache.popitem()) # (1, 2)

# .peek() searches for a key-value in the cache and returns it without moving the key to recently used.
print(cache.peek(2)) # 4
print(cache.popitem()) # (3, 6)

# Does the `popitem()` `n` times and returns count of removed items.
print(cache.drain(5)) # 5

LFUCache (🏗️ class)

A thread-safe Least Frequently Used (LFU) cache implementation.

This cache removes elements that have been accessed the least number of times, regardless of their access time. It provides methods for inserting, retrieving, and managing cache entries with configurable maximum size and initial capacity.

get insert delete(i) popitem
Worse-case O(1)~ O(1)~ O(min(i, n-i)) O(1)~
Example
from cachebox import LFUCache

cache = cachebox.LFUCache(5)
cache.insert('first', 'A')
cache.insert('second', 'B')

# access 'first' twice
cache['first']
cache['first']

# access 'second' once
cache['second']

assert cache.least_frequently_used() == 'second'
assert cache.least_frequently_used(2) is None # 2 is out of range

for item in cache.items_with_frequency():
    print(item)
# ('second', 'B', 1)
# ('first', 'A', 2)

TTLCache (🏗️ class)

A thread-safe Time-To-Live (TTL) cache implementation with configurable maximum size and expiration.

This cache automatically removes elements that have expired based on their time-to-live setting. Supports various operations like insertion, retrieval, and iteration.

get insert delete(i) popitem
Worse-case O(1)~ O(1)~ O(min(i, n-i)) O(n)
Example
from cachebox import TTLCache
import time

# The `ttl` param specifies the time-to-live value for each element in cache (in seconds); cannot be zero or negative.
cache = TTLCache(0, ttl=2)
cache.update({i:str(i) for i in range(10)})

print(cache.get_with_expire(2)) # ('2', 1.99)

# Returns the oldest key in cache; this is the one which will be removed by `popitem()` 
print(cache.first()) # 0

cache["mykey"] = "value"
time.sleep(2)
cache["mykey"] # KeyError

VTTLCache (🏗️ class)

A thread-safe, time-to-live (TTL) cache implementation with per-key expiration policy.

This cache allows storing key-value pairs with optional expiration times. When an item expires, it is automatically removed from the cache. The cache supports a maximum size and provides various methods for inserting, retrieving, and managing cached items.

Key features:

  • Per-key time-to-live (TTL) support
  • Configurable maximum cache size
  • Thread-safe operations
  • Automatic expiration of items

Supports dictionary-like operations such as get, insert, update, and iteration.

get insert delete(i) popitem
Worse-case O(1)~ O(1)~ O(min(i, n-i)) O(1)~

[!TIP]
VTTLCache vs TTLCache:

  • In VTTLCache each item has its own unique time-to-live, unlike TTLCache.
  • VTTLCache is generally slower than TTLCache.
Example
from cachebox import VTTLCache
import time

# The `ttl` param specifies the time-to-live value for `iterable` (in seconds); cannot be zero or negative.
cache = VTTLCache(100, iterable={i:i for i in range(4)}, ttl=3)
print(len(cache)) # 4
time.sleep(3)
print(len(cache)) # 0

# The "key1" is exists for 5 seconds
cache.insert("key1", "value", ttl=5)
# The "key2" is exists for 2 seconds
cache.insert("key2", "value", ttl=2)

time.sleep(2)
# "key1" is exists for 3 seconds
print(cache.get("key1")) # value

# "key2" has expired
print(cache.get("key2")) # None

Frozen (🏗️ class)

This is not a cache; This is a wrapper class that prevents modifications to an underlying cache implementation.

This class provides a read-only view of a cache, optionally allowing silent suppression of modification attempts instead of raising exceptions.

Example
from cachebox import Frozen, FIFOCache

cache = FIFOCache(10, {1:1, 2:2, 3:3})

# parameters:
#   cls: your cache
#   ignore: If False, will raise TypeError if anyone try to change cache. will do nothing otherwise.
frozen = Frozen(cache, ignore=True)
print(frozen[1]) # 1
print(len(frozen)) # 3

# Frozen ignores this action and do nothing
frozen.insert("key", "value")
print(len(frozen)) # 3

# Let's try with ignore=False
frozen = Frozen(cache, ignore=False)

frozen.insert("key", "value")
# TypeError: This cache is frozen.

[!NOTE]
The Frozen class can't prevent expiring in TTLCache or VTTLCache.

For example:

cache = TTLCache(0, ttl=3, iterable={i:i for i in range(10)})
frozen = Frozen(cache)

time.sleep(3)
print(len(frozen)) # 0

⚠️ Incompatible Changes

These are changes that are not compatible with the previous version:

You can see more info about changes in Changelog.

CacheInfo's cachememory attribute renamed!

The CacheInfo.cachememory was renamed to CacheInfo.memory.

@cachebox.cached({})
def func(a: int, b: int) -> str:
    ...

info = func.cache_info()

# Older versions
print(info.cachememory)

# New version
print(info.memory)

Errors in the __eq__ method will not be ignored!

Now the errors which occurred while doing __eq__ operations will not be ignored.

class A:
    def __hash__(self):
        return 1

    def __eq__(self, other):
        raise NotImplementedError("not implemeneted")

cache = cachebox.FIFOCache(0, {A(): 10})

# Older versions:
cache[A()] # => KeyError

# New version:
cache[A()]
# Traceback (most recent call last):
# File "script.py", line 11, in <module>
#    cache[A()]
#    ~~~~~^^^^^
#  File "script.py", line 7, in __eq__
#   raise NotImplementedError("not implemeneted")
# NotImplementedError: not implemeneted

Cache comparisons will not be strict!

In older versions, cache comparisons depended on the caching algorithm. Now, they work just like dictionary comparisons.

cache1 = cachebox.FIFOCache(10)
cache2 = cachebox.FIFOCache(10)

cache1.insert(1, 'first')
cache1.insert(2, 'second')

cache2.insert(2, 'second')
cache2.insert(1, 'first')

# Older versions:
cache1 == cache2 # False

# New version:
cache1 == cache2 # True

Tips and Notes

How to save caches in files?

There's no built-in file-based implementation, but you can use pickle for saving caches in files. For example:

import cachebox
import pickle
c = cachebox.LRUCache(100, {i:i for i in range(78)})

with open("file", "wb") as fd:
    pickle.dump(c, fd)

with open("file", "rb") as fd:
    loaded = pickle.load(fd)

assert c == loaded
assert c.capacity() == loaded.capacity()

[!TIP]
For more, see this issue.


How to copy the caches?

You can use copy.deepcopy or cache.copy for copying caches. For example:

import cachebox
cache = cachebox.LRUCache(100, {i:i for i in range(78)})

# shallow copy
shallow = cache.copy()

# deep copy
import copy
deep = copy.deepcopy(cache)

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

Uploaded Source

Built Distributions

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

cachebox-5.2.3-pp311-pypy311_pp73-win_amd64.whl (287.6 kB view details)

Uploaded PyPyWindows x86-64

cachebox-5.2.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (610.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cachebox-5.2.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (644.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cachebox-5.2.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (670.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cachebox-5.2.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (565.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

cachebox-5.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (396.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cachebox-5.2.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (390.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cachebox-5.2.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cachebox-5.2.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (354.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cachebox-5.2.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (396.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cachebox-5.2.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (427.0 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

cachebox-5.2.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl (357.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

cachebox-5.2.3-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (376.2 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

cachebox-5.2.3-cp314-cp314t-win_amd64.whl (284.2 kB view details)

Uploaded CPython 3.14tWindows x86-64

cachebox-5.2.3-cp314-cp314t-win32.whl (271.7 kB view details)

Uploaded CPython 3.14tWindows x86

cachebox-5.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl (608.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cachebox-5.2.3-cp314-cp314t-musllinux_1_2_i686.whl (642.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

cachebox-5.2.3-cp314-cp314t-musllinux_1_2_armv7l.whl (665.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

cachebox-5.2.3-cp314-cp314t-musllinux_1_2_aarch64.whl (563.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cachebox-5.2.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (394.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cachebox-5.2.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (386.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

cachebox-5.2.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (370.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cachebox-5.2.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (349.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

cachebox-5.2.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (394.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

cachebox-5.2.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (421.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

cachebox-5.2.3-cp314-cp314t-macosx_11_0_arm64.whl (355.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cachebox-5.2.3-cp314-cp314t-macosx_10_12_x86_64.whl (374.3 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

cachebox-5.2.3-cp314-cp314-win_amd64.whl (291.9 kB view details)

Uploaded CPython 3.14Windows x86-64

cachebox-5.2.3-cp314-cp314-win32.whl (278.6 kB view details)

Uploaded CPython 3.14Windows x86

cachebox-5.2.3-cp314-cp314-musllinux_1_2_x86_64.whl (612.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cachebox-5.2.3-cp314-cp314-musllinux_1_2_i686.whl (646.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

cachebox-5.2.3-cp314-cp314-musllinux_1_2_armv7l.whl (671.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

cachebox-5.2.3-cp314-cp314-musllinux_1_2_aarch64.whl (570.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cachebox-5.2.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cachebox-5.2.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (393.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

cachebox-5.2.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (374.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

cachebox-5.2.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (353.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

cachebox-5.2.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (399.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cachebox-5.2.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (426.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

cachebox-5.2.3-cp314-cp314-macosx_11_0_arm64.whl (362.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cachebox-5.2.3-cp314-cp314-macosx_10_12_x86_64.whl (380.5 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

cachebox-5.2.3-cp313-cp313t-win_amd64.whl (283.1 kB view details)

Uploaded CPython 3.13tWindows x86-64

cachebox-5.2.3-cp313-cp313t-win32.whl (271.6 kB view details)

Uploaded CPython 3.13tWindows x86

cachebox-5.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl (607.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

cachebox-5.2.3-cp313-cp313t-musllinux_1_2_i686.whl (641.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

cachebox-5.2.3-cp313-cp313t-musllinux_1_2_armv7l.whl (665.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

cachebox-5.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl (561.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

cachebox-5.2.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (393.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

cachebox-5.2.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (385.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

cachebox-5.2.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

cachebox-5.2.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (349.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

cachebox-5.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (392.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

cachebox-5.2.3-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (421.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

cachebox-5.2.3-cp313-cp313t-macosx_11_0_arm64.whl (353.4 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

cachebox-5.2.3-cp313-cp313t-macosx_10_12_x86_64.whl (371.7 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

cachebox-5.2.3-cp313-cp313-win_amd64.whl (290.7 kB view details)

Uploaded CPython 3.13Windows x86-64

cachebox-5.2.3-cp313-cp313-win32.whl (279.4 kB view details)

Uploaded CPython 3.13Windows x86

cachebox-5.2.3-cp313-cp313-musllinux_1_2_x86_64.whl (611.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cachebox-5.2.3-cp313-cp313-musllinux_1_2_i686.whl (645.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cachebox-5.2.3-cp313-cp313-musllinux_1_2_armv7l.whl (670.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

cachebox-5.2.3-cp313-cp313-musllinux_1_2_aarch64.whl (567.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cachebox-5.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (397.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cachebox-5.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (392.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cachebox-5.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cachebox-5.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (353.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cachebox-5.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (397.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cachebox-5.2.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (427.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

cachebox-5.2.3-cp313-cp313-macosx_11_0_arm64.whl (359.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cachebox-5.2.3-cp313-cp313-macosx_10_12_x86_64.whl (377.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cachebox-5.2.3-cp312-cp312-win_amd64.whl (290.9 kB view details)

Uploaded CPython 3.12Windows x86-64

cachebox-5.2.3-cp312-cp312-win32.whl (279.8 kB view details)

Uploaded CPython 3.12Windows x86

cachebox-5.2.3-cp312-cp312-musllinux_1_2_x86_64.whl (612.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cachebox-5.2.3-cp312-cp312-musllinux_1_2_i686.whl (645.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cachebox-5.2.3-cp312-cp312-musllinux_1_2_armv7l.whl (670.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

cachebox-5.2.3-cp312-cp312-musllinux_1_2_aarch64.whl (567.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cachebox-5.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (398.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cachebox-5.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (392.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cachebox-5.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cachebox-5.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (353.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cachebox-5.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (397.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cachebox-5.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (427.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

cachebox-5.2.3-cp312-cp312-macosx_11_0_arm64.whl (359.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cachebox-5.2.3-cp312-cp312-macosx_10_12_x86_64.whl (377.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cachebox-5.2.3-cp311-cp311-win_amd64.whl (288.0 kB view details)

Uploaded CPython 3.11Windows x86-64

cachebox-5.2.3-cp311-cp311-win32.whl (275.5 kB view details)

Uploaded CPython 3.11Windows x86

cachebox-5.2.3-cp311-cp311-musllinux_1_2_x86_64.whl (609.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cachebox-5.2.3-cp311-cp311-musllinux_1_2_i686.whl (643.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cachebox-5.2.3-cp311-cp311-musllinux_1_2_armv7l.whl (669.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

cachebox-5.2.3-cp311-cp311-musllinux_1_2_aarch64.whl (564.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cachebox-5.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cachebox-5.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (390.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cachebox-5.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (371.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cachebox-5.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (353.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cachebox-5.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (395.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cachebox-5.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (425.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

cachebox-5.2.3-cp311-cp311-macosx_11_0_arm64.whl (356.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cachebox-5.2.3-cp311-cp311-macosx_10_12_x86_64.whl (374.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cachebox-5.2.3-cp310-cp310-win_amd64.whl (288.0 kB view details)

Uploaded CPython 3.10Windows x86-64

cachebox-5.2.3-cp310-cp310-win32.whl (275.5 kB view details)

Uploaded CPython 3.10Windows x86

cachebox-5.2.3-cp310-cp310-musllinux_1_2_x86_64.whl (610.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cachebox-5.2.3-cp310-cp310-musllinux_1_2_i686.whl (643.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cachebox-5.2.3-cp310-cp310-musllinux_1_2_armv7l.whl (669.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

cachebox-5.2.3-cp310-cp310-musllinux_1_2_aarch64.whl (565.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cachebox-5.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cachebox-5.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (390.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cachebox-5.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (371.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cachebox-5.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (353.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cachebox-5.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (395.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cachebox-5.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (425.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

cachebox-5.2.3-cp310-cp310-macosx_11_0_arm64.whl (356.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cachebox-5.2.3-cp310-cp310-macosx_10_12_x86_64.whl (374.4 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: cachebox-5.2.3.tar.gz
  • Upload date:
  • Size: 63.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for cachebox-5.2.3.tar.gz
Algorithm Hash digest
SHA256 b1f68246685aa739bbbd2734befb1465363a1e1042407c154feadb065f17a099
MD5 dbf03b716765dd26f4fb874c97c93409
BLAKE2b-256 36f685f176d2518cf1d1be5f981fc2dadf6b131e33fefd721f36b330e3434d6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 70c718f6bb77e6ba142b9a055b81ce85412a0c0e5e82a154489b45e6f91d09ec
MD5 9da13b87dd54bf808b66695b6e142140
BLAKE2b-256 9a1b31cf2449da9a296f6c6c0002c7ae91a25c3a4bfef071763bbeb85300b402

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73671850d8c3634ab217398c83715d3feb52589ec97bd8e2f4d22e472741ea48
MD5 05ee37506694560babee252634d8000c
BLAKE2b-256 f8c844ae6d5dff09f044d61a92591e6a8db17f3b2ee51a54d375cce90271527b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5196f0d2c2f99c92ddf0d2c37803ff90509d14a5df211b7754feb8b61ffd8740
MD5 fc97a354e874131138514ad38933a31a
BLAKE2b-256 297bd68ca3f59a9d6963c2f6b19bc4b1926a37db2e4a4f6c9891d12788e49ce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fb0bdcd9e28686e3b91d5210c843542858f0f10de151181aee27a7978fe4992e
MD5 815b98cfab5bbb51cf060820153102a3
BLAKE2b-256 4353b8e948cadb48b8bcf1d13c2aa4a788ff0e95b50ddb808c18e998499b4680

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f89df36b46f8f5e11c0c49701ec3cebddf51191f96afb7bb75c394faf3c1cbc8
MD5 7d98265035e61a754f869504fd3fabff
BLAKE2b-256 094b50f2cadf20c02db9e449f2e9fee95f3eb5768ab1804dd0a5eba6c98119ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c6476a2a842906fee782d92f8fbcb03ecfd22eecc39adb7fb5b047d7e1cf020
MD5 1b2a525085ac3919728d158b89a9f534
BLAKE2b-256 9ddbacfb55f8d5ee4ea1c5f2d32ede25d4d04e944ba09d2832c27c085022490d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 783d1b9a0b3c77c43e7ae331b9d6561ad75827e16b2484e2a6cc289ec4d392ee
MD5 9a1f7469d64648dc7ed6b0a9768a648d
BLAKE2b-256 79cf86c60994a7be734abef0395e440dc11714f84ffcd369cbcd8e61c3d58126

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3cdbe8f1b7716a44dc82ef3a6830a612260c7379478cfa80804632e2e6252b8e
MD5 aae8dcfcd674eb809653c52a36b077f0
BLAKE2b-256 df06769446da6c9f2855499aaa19e2d7260aa47934bc2e15a931e5b737f8685a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a0599fb85dcb6df9a86502435643fe90c793bbcd50b5d85217c70f2bc2e38fc
MD5 97b6c61e7a9da61e1e1c7813353c50a1
BLAKE2b-256 f89b678da91187bdb2836db2b8da62519da75359b46bc28697799a7caa314519

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b39022c258872185327acffa9ad42d6bdf42f37d006d35c825a684eb5fa98d40
MD5 aa75320b9883e95ae3b8f3de780f50f5
BLAKE2b-256 d4513c4743b718b42e4b80166fa61f8722b603eba7bf206768a7892c4699dce7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 184bbcfa1370415b6d1f09e4fb74ab697dac8df09f522aa217a2fac65f973744
MD5 13e4849ccceefb890ac14bce232f2c95
BLAKE2b-256 dc4f35e27e85a48e15671c5863addcabde910eb311800a621c3e47c04bd36d17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c8f3de4afeb3fd721620be3d02f2338bcbc3fdbd464ca14e1c474088c9669db0
MD5 6935cf4c7386247b207279977936958c
BLAKE2b-256 77e35e45042f9b552a5087cafc2e0fed834e632531fca17818201d72e78593ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c798cddfb780156db09d3d96ed5da4c2d5fc01dad4bc7b54db5b20c34f221926
MD5 ca5d41917e09aa235244524f0cdefd73
BLAKE2b-256 ce7b5eead1ca0d437b1993a742c6571079ae58ae4db50d94d42e87b514aed6c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 dbda6390fa5070a19157ae35ab8066d3fe468634e0e9e21452c68ce7999c7d0c
MD5 3a582abd7d0f4c82cfc4c3791f9c679b
BLAKE2b-256 66f4f60b8506df467261178afe918801df37c02c46ec2b8ce019760a14e2abe7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.2.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 271.7 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for cachebox-5.2.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 83988dd8e9075ee837e8407e26db49a9944ae74924d5db57b477444d7d98622c
MD5 1daf659b9cc7c8068f44af3b1ff94f0b
BLAKE2b-256 41c3590e161c04ffbd36e33933e6dcca5ffa40b5548e3121a21d77aad42af138

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a424ffb8514a9cb49bacff7995b7c767625cb2239692bd6524245e8579e375cc
MD5 dd01b08da766ebe87acb9e631b6e7b72
BLAKE2b-256 6e4fa789eda189550d239fbaf165b9810f148e733e97a2a4eda7c4192295c7f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 611aa260fe1b2506330ff72f415e2cb4053c9c4e3776ac68fe2eedee0e1b91b1
MD5 77f5e35ddc17e09b7defe16a8119505c
BLAKE2b-256 439dbf2d3dc949afe4d21fc7eb15b7524255e834b9252df6bba111e6686d1c6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b4e7d2935b9df11d3717f99c7237b6780f1f8c70e6a99b69b8430d89929ec825
MD5 8f5d8f32856212024800445c0933118e
BLAKE2b-256 bab2f92da0d54e4f18609588709090de8c81dd7c8b20ed6ac30f9b91bedbedf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dab6fd3189b0c746fb03e1915fd947aaca9112cedf26ef3a0c39383acf87d2e5
MD5 3466ae740bd5af89efdf295406f67a4f
BLAKE2b-256 a15434eebe18c6ed8ba27b1331b5e3d08bd8bb62f03ba81fbf47a2db0fa646f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bba3e9a7f52fa196b434522f39675f3b32a076976ef2373ded6f1065e99f4d20
MD5 0c4f42cc7cdbdc835db33a5f7bc366a8
BLAKE2b-256 70e2b669555ada7fa1392e4cdb8a19f3367db5c6abef0fde8ab034a9747760df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fdb74294bdc33e39e26606919a9b2229038d5fac0edb80c9056683c08584d4a9
MD5 26a63daf1a9269b68173a1f6dc264de3
BLAKE2b-256 8149d6c47c78a7769b355076c5b635c2b538c8b88e8ceeb408e104d0f269b515

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dd0e8dbd8fd4cf664c645c08f9e10508e133353756705c4a738e90a5406224b5
MD5 930197b1ca27087cdcd33e4c02e788bc
BLAKE2b-256 d1dd683bc5a32a0da660d02fa248b880b71a2b834e9b54b8d272b5801282f402

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 245a79fb2c5d3bff252f4263f76210ef3ad7c2ff9b0234859b26974830a80491
MD5 f65327c966216d2bbd94df09a43b9913
BLAKE2b-256 bdf14c8f998c117c1941a82bd824d6687280c50167f21fea6392e41531d641e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b102fcdd97b0602bf5d6ba1a571bba3e3d6fa912b89fd768b0da5427408eab8
MD5 583735d1360314bcb5f0de93e917c328
BLAKE2b-256 c16da6b399221f8dc4b3e01b37d3240ef5b8a7eb78cd9bfbb99b0e655dd01649

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 abb21f0f937fb66528f1b9f1a04874d6aa503e78bbb26f4cf33bf67faddbdd68
MD5 fcb32ddbb755cf97c1d96de456d13a84
BLAKE2b-256 8f0142916249e53fe4fcbdf0419fb55dbc09b9f377475376e1d7f4ae9c9bd6cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d4e336aebf866463878ccd28a4d0ef4003ea216708cf4a02a7f198481b3af81
MD5 ec9864384d7bdd788529225bffa181c2
BLAKE2b-256 7f510fc26b923e80ab857ac99d5f7f3784dc941e7b4de361c204835233176ddf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0e8a34b82be30d3d9fb7dfaf9a86ec2b3ab9bc264715909ef27fc3d3587324d2
MD5 60c551e9b61ba4aca28da0e466fd37f6
BLAKE2b-256 4a018c79c07c8c6517fb2fe7d479dd87044e38aac5b9af0245b33fcd695eae37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4afc8b8575e3228a42ad8d819de5fbbecc6bd0b521295966b00244be37ae3b9b
MD5 a8f8a7e9665750d9fc11ef432cd6ee04
BLAKE2b-256 c4f8b88a82ce9ec7a2fa0f09ed1cdd031692c8664c41f9ab71831e177c7ce2df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.2.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 278.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for cachebox-5.2.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3b798052719f09a2ce7bf9fa9452dc0a7d4dc53b50a2d3aba6ce6ebc12d39df7
MD5 e126114acdecf95f810efe90c4e89212
BLAKE2b-256 c88a07b5ffd841e1ff534bb6e8721c39fdfe0d7cdaac1398e1783b2a0c37bd22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7b06a75a898b31fd73c4d8bf727a9b9f8b5b7738cccd0ab5e6fd2a9cf659d3c
MD5 71688fcf789d9db58d236041b27a6577
BLAKE2b-256 27ae2e1ad162ec13903e84469c8a753baf385f1bc324279d6c7cb6365e7099df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1e5f1b7e23411b748d919348c3b65db1f9f8927ab8f6f3acae19bd617543df2d
MD5 f0186f4b0c7fee934e24321ab95beef8
BLAKE2b-256 54d19cff7c2b9048d1c38b7ad8199ce856596d09720b3bea74043f3bad71970b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d37334fc218fdaee31db8a4f938938716e7c3b1b4059e25de27c8447fc95fde
MD5 df3c68c35678d54f22a24dde77fca847
BLAKE2b-256 8c63cad8a05db4d0c0f5ba6bccb32e57d15c472276de9476f56004445b40711f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5be17dd5c4fabcfecd5bcf6d54f9c6fb719daed3ef01ac1c03a14af0e2b26c1
MD5 988299f99398192ea9da465dad90850c
BLAKE2b-256 255d610b79479719951581109d985244d34c97f86a308c3d7c83443e2b1dac46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f4d2a80a5cd3380739c67f7d89e596634f5897b8d5a4a3dc1598312cb077535
MD5 0ac81f9e41789e282a61c7d074ab9e43
BLAKE2b-256 78c4c9b3fa764ac5420a9e079ad53fa8840d4a26b74c4ccda56acbef49cf76ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 311eae5079e256cbbfafdc3dcff1714b6598a767f9c1ef8c3709e74ea0cc12b0
MD5 517811c873402467692299b00ec2e605
BLAKE2b-256 6561e5231ad2ae952ca482f9b9df55df4b96add1a80de28de537c5f574605987

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dcbccf3015d9a42bcf41260fa5cc048a5bdb75aa10997d514d6c976117f30ee2
MD5 6f3f72ac9998099a0bf97d09502c6bf7
BLAKE2b-256 d4c3bc7838de51039f8c50506d8dc82f22ff9a652794339a223b12af595e1d2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e22451cde8f884051e941b21870e4fc91fcf58d0d8c285bb8964107e1f02445c
MD5 3e7ce0c8014fd52e2e8b6e397a6df713
BLAKE2b-256 be69c79b8a6a5b889ac4a60800bacea3553cb3b86f6fd13b2262bade1cb962c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7df1735ca778480d51b8232fed397ffe3935158f20d34fb1c5ed171b53d5a6e2
MD5 4216ea2028840dca738f03dfe8b9565d
BLAKE2b-256 9e0b3eedaf9ea4b41c931f4340bfa42056efe2bb5fe3a79649d6c8a1dce585a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3977515b727a5203f494c44c4566fb936c4b940351c01d3d8e7b5d104dff4f53
MD5 024c6be8911528f6f8ffbab35f43a64b
BLAKE2b-256 9b3ec4e3acd4cb04e01c5fb7cc7a4de16059b9594d90672fff85af8670275267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc6315902f2ef4afbf10bc8e08c54ff34de5ce124546b8e0016c9b0d327be21e
MD5 c71b93443d39d9a36e92f5cc3af3e1cd
BLAKE2b-256 fc6233aaade81b181d5191cc39c867c297aa7c65f3191aa9749bf99b77496b88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 37fa0891f0defee053c09f5f43f802f731e36e6e6ca055d7d174af07f77232ca
MD5 f63e405863bc5eea7b598b45adc73540
BLAKE2b-256 b88b72c0e80aad08e09867ce14a621bce689a733552f20cdf2ef96d4b052da10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 67548a05cd41fcc4f7af80a2f97f742fef3d436537ac2e1a1dce0fcba5d41190
MD5 28fded590938659d19c97bced40e5a88
BLAKE2b-256 b006fece190ad5173d06b2779494aaad5528907f2e55c809618e5b67c2e3dbb5

See more details on using hashes here.

File details

Details for the file cachebox-5.2.3-cp313-cp313t-win32.whl.

File metadata

  • Download URL: cachebox-5.2.3-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 271.6 kB
  • Tags: CPython 3.13t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for cachebox-5.2.3-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 5fee33549877c03c2494ec5359a57a7667f872fe8e296a7f39d3dfe08dd3914c
MD5 89ac81b0dc54969b0f811424817db5a8
BLAKE2b-256 9c0bce61907a803f75854e0cc91b84c16e14dce0e4e939efbda26293eb4c8784

See more details on using hashes here.

File details

Details for the file cachebox-5.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a94d0da8133b3a0707ae11c9ea321f8fc37e3b5a14517019a05d632218b0f56
MD5 736f3306e4431727ebbc248a472d58ed
BLAKE2b-256 a3154ac98277f7fd9d855c8ed337e8e2a3386d17997cce2dd3eadb23dedc08e3

See more details on using hashes here.

File details

Details for the file cachebox-5.2.3-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8cbfc007ea78af61d75d7d26e5854df53dc5da6877d074afd4b4696c074f4ee7
MD5 c6d542234f91574dc2900f8cb864c470
BLAKE2b-256 aaa3f6a9e75f1e602b67b6d67088a9a766adfc4e0a740a9c4b68e4e6207c1006

See more details on using hashes here.

File details

Details for the file cachebox-5.2.3-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5e48a405f699fb001b8af120a6e0b4a981277f84eb5dd66a1faa21e4b6fe9485
MD5 483ea28fcfe73fb40951875e83407135
BLAKE2b-256 9bfca453813c6d000d69a41a06c6a3143a6c4d0d0e41f23c155db2f82ea0edfa

See more details on using hashes here.

File details

Details for the file cachebox-5.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e51d9c59006b53447f806145406eb37a7fc3c25553d4fd24c3887f3b268d214e
MD5 a0d29e6bd10ff9a537c19da5b6c7264c
BLAKE2b-256 c90f43f62355846cae3dc41cb4daccac0a4bb2b7b8b3c7d77d1b6a220bae6d54

See more details on using hashes here.

File details

Details for the file cachebox-5.2.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41e99c1240106d39b63ce7868a6cd8c9da9243fef08848b85d428164e0769fd2
MD5 37f15d947adc3e8fa634858418efeca2
BLAKE2b-256 53d6615a3c16c1d63839f2c67644eb414c4dc9769ab2e169d935110fd8e268d5

See more details on using hashes here.

File details

Details for the file cachebox-5.2.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a8b0b575066fc09f6fae0d4bd30d6ff56584a6870cbe7d202916c5e0d725cfd4
MD5 77f69c3fdfb7cd524875fbbfda2cf265
BLAKE2b-256 f582e1f833be0d57e29a8c5eb0a0275cd34b962f3c7f5b9e0517ec4bf75e7cc3

See more details on using hashes here.

File details

Details for the file cachebox-5.2.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 94aae393ec1d9b26565d346445bb6afa3963d2a0d3eb5e4188d0e510fab871a0
MD5 4fa6c09862f8c635451a163c30793621
BLAKE2b-256 d72e75db4bda3768658f5baa5a54f6a4f643bc2de1a16788e40581a080e803c7

See more details on using hashes here.

File details

Details for the file cachebox-5.2.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 405f9cc8492fc9d953b5a6b9e2b661e99583755c6639ab8d09a287fdf336503c
MD5 a6208a0b07a69add1ff7a9ffae71579a
BLAKE2b-256 63ca1bacb4efa0b0ce8065d1fb7c8dc7c382ec4e1cc3f007eb08417732be2725

See more details on using hashes here.

File details

Details for the file cachebox-5.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8342ff350ce86f062492752d612e9f056ac5dc56375713d75c3bf6e83b4d18db
MD5 8032b2487ee29c37a826b205117fcabe
BLAKE2b-256 47963ca013e2e48df5c1d7855669b208f4bf8014ccb842ccf7a3a0eaac07bee0

See more details on using hashes here.

File details

Details for the file cachebox-5.2.3-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 432ca62b99f7eafc21af669d76c88c1b7377db179b89fb6fca3ea93b8f9fff19
MD5 73cf9a749e44c040f51d67cf81298c2d
BLAKE2b-256 2fa67844c9c84b170dae1005b22da174639968e64c8055d66a209a1598663771

See more details on using hashes here.

File details

Details for the file cachebox-5.2.3-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f57afada3d9327adf87f3b5cf0094348c6fd49354ab2e9bd20b044648eb094ae
MD5 9bd71299050879656bbbefa12f12db8c
BLAKE2b-256 8eeaaa5162273238e84f9e41b33600c69299572dc1c8f0f768d07660b71be07d

See more details on using hashes here.

File details

Details for the file cachebox-5.2.3-cp313-cp313t-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a4b7559fa4994c4032dd07466c2041d57e055feb814762e1f73f4e8beef188d0
MD5 6f1434f488037765fdfe05c2704a0271
BLAKE2b-256 c90bbf83bda13ef6fc490d208a1d4dd712034624526a88f61713cca0edc9884f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dcc5edb6ecf2b516e90b773d232360c5e4ed8fdcda038b19441da2ed9cf208ab
MD5 8d2bd6c2d4331a617ffdf2c8a13d6c36
BLAKE2b-256 e07fa49420670393bfea618de7a893d45cae9294cf3293d7b158e7af20e8f39e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.2.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 279.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for cachebox-5.2.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 55003089d21c2f5515089c307be063b45558e884a4a1cc9593944374c89975c4
MD5 9795f15c1c0b9d2a9233cacb44a6ffbb
BLAKE2b-256 c5c5b26c4b046e296d0e249448fe297626b3caca2e851837712f03c358662cb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fa325306084aa2dc0b21e07723d7700f4d43dece3732c7fdaf7a269dc5e35aa7
MD5 ba9212a89186ab45d118addd933f55e1
BLAKE2b-256 d82551783a4c6f25ca87ef1b4b762ff0364bd98053a02d597b30d26ff4cf13c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 64057caa6b741320655cd3c5997fe642dae5dbff571eb530e6f53e58272bb43b
MD5 436d90844c7067535ef9a4d23621eea1
BLAKE2b-256 2d8ae5b58f0bbd6fef74da5d8e5ab49e67898ce7e6df28c16280a0f2b78461f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f3d628b816e28a6e7661d460e02dd5b421247cc2cd275814f80ea79621245fc4
MD5 8aedd29bb746743eab9315e234bfe56c
BLAKE2b-256 10357249885dfed3602b3b48c1e67781197dcdc536c50f72caeabe3944348af8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 26ae0b68979204d360327f4c0725cfdc95cfc34ab73ab1a8f528e3bd2f6d023c
MD5 04f2cd355b4f66c5ce1ff2565175d248
BLAKE2b-256 7e2080d8c26ce63e78da3874a5bb07a3a78de53a2b0356ba80583a4927f0a074

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10bedf96db8f9766cc956f9adcc623e604264e5d6fa2e255432f8c2ed7519143
MD5 b6abc744a7bbf3353f55276bf58fb6d6
BLAKE2b-256 1395450765b971a3bed9d7cf003c3833c1976482eb83b0241b6dbb840a25b43b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 df5135a168f143d186b1cc3be0ca16b66446897ab5cedc03bd80bcc926fcd403
MD5 64f722909f63428676cd844f185eff23
BLAKE2b-256 051747dc9687288fa55486573627089ecd9aae124de5924a4bce008af96d80b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ccbdc54a6c4b5758408c1083bdfa217bd382894a8331c7d0a54b84ba0cf51e5b
MD5 5b2e33387340b07f388b1179d3ad0b08
BLAKE2b-256 6c2b72813f80397ed4640e337cbd1a14ab7eaafe33e479291d3623b6a6a55fec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 82e7002dd343afeeba2fcf0e483131b342a27ec3bc34b2214dc617691bda40d6
MD5 40060ca43b8623230e5df02591ecb93f
BLAKE2b-256 23199470b1a96de6e480192b1a92b2fafa72aa052efc2509a5418a5652205b33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5ff26bfd8f7e95b3becf6d5f65c25edaca50fa68078868648b70d79bcccc260
MD5 273355c8641147f06fcf9ec40e31b6e6
BLAKE2b-256 4617794e5f93e0a172aa14ecd692f6d89bdf094f71eb35fa923d0a0af25cef1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f22732d0d69bb84ad2dca7480bffdfd0430c647152d488936e152ecbbfee52fb
MD5 80f36dbf7de1641aeec3d2e4265528ff
BLAKE2b-256 5f3edd8f4c1f92e58d479913ce9cbaa3227c911128e6046c82f4fd44309f685a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40ac878af00d5969862c1f6bc076de1e34ca248662fce6aecca1761f52e33e32
MD5 889feaca15b8bc8108ec72d14a3389e7
BLAKE2b-256 cd8745f834154f79721e5b64a80ffab4f9710834c4f9c01fa977f94a9116c32a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9527c5c70f8735f2d696331d8bcf77254f03b4dc8542046807823bd36ed4e8ba
MD5 f638d14ae511df5a7ce10f79183e407c
BLAKE2b-256 313b16d5c295f6ec2913ef595b39986dc7b7cc179fdd2e73f5ebd1814c38fd51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cfd69114141ab362acaa2099e425a1b965cf7b021a539a4e953143d593930b74
MD5 14aa5227e49e9d1a432aba6a941ff8e0
BLAKE2b-256 c5503b334f887accfa811cf5c7533b8ce22c523eb009363a86401198899dadd2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.2.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 279.8 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for cachebox-5.2.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0a17aeb4e5b1c6ef1c3db8fc5186f9986e215ba5ea5a5d08baa45bcf55f261b2
MD5 d6343d9e21f9bbd18303303a6299f094
BLAKE2b-256 d71e313f650467ac85824c4199188f8f1ee3386cd12eb665dbf7c88d372e4956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 649d18399f13735bb82daa33800196f815529c49e967767c40ca221723e68afa
MD5 c9d1d27e2100d14253dd126c9a53e5c4
BLAKE2b-256 0ad655859981f5ec6a9e412baaa4db6aa5973a00008750b3f054cdefcb6491fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f1e086ab5ffd082a68bb63699d517655a59b06414927bfc84e01df91b81e34d
MD5 093240538ae2d3c154f15f21b6fdb59e
BLAKE2b-256 a522cd4e4c1d624b8ef9fb4b8bebf0bf5d2d74a399cf1ac46b667bb79d15359a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c48c10e498d573511aafbd545570e7f43b40a7428dc282183bf5adc334d9e1a8
MD5 691ea016f14aaf4060c16ef269c1442a
BLAKE2b-256 e8a2baf0e5a8392e64e352b137ccd7356b3d98068c842fd19f510a7790c05d34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c7f0c72c51a3a9e7049ea6ff2a43cd3877ab7fee966eb65771a59621563b75e3
MD5 ba5c46439a04ee457bca7068e3e893e4
BLAKE2b-256 a83671845b5c7a9ffbd85e6fdb470c11a174f499bd5238fa37b1214157c2454d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a1e7d3cb8a5e7e68996a8619e3ef8771a124d14568c251f9e586eba88d759c1
MD5 0ff95c94df3a76c84bc8702a03422faf
BLAKE2b-256 01b11a3c4e436ad8a4c4ba3e70f4c62e1f927cbbb3c943a9bba5813b8b815bde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 85ccd827193b3e3e887a88a16b88ef7ed174e7e65be515b5253322aa75e665c3
MD5 22e9d8f5b8e4aa5e0110b0eb13eea3b1
BLAKE2b-256 71943ec55c946d300cc4eaed3a0f79740051ac6e11ef4032421332c6ca15f5d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f81474dc19d3865fa5e57263f834bc6bbc00e471a594fb9d934ed552732c02fd
MD5 f535e0b7f65b3435778f265804ec44ca
BLAKE2b-256 78d4fd20b3a5362651303fa12d3ee62f56af2bd396e4a7303d7014a1a1e5b392

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 410b67baa99d433644199b11289627f7ebba4ee5786f95ca9858f238afcee157
MD5 c5a60dfa24c1a8081b82bcf3133563f8
BLAKE2b-256 7a0db8492d6ca53278499a37c9f9d51afd4ad77bfbe813d6281944d45b97a1e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a189a780c3ccd7b9d157074ba6bf3e191e522b39abbdb590075111851f02d50d
MD5 3dc5796bb1c341003f6913135b02ff11
BLAKE2b-256 d2abe533c2751e6a3411ebe369277aaed03199b9e4586a48f0a3712a1f4b418b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 adcedfcfcb933b21e7fdcfe560c79887bc8287abceab0586aa3730417dd0277d
MD5 e3925caf28552f43cbdd3a31a0be4146
BLAKE2b-256 0aead36ad3976c4396b350b96a1582411b7a00e56c144eec0bb5ba5f36ce7d86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3162758792626685ec34950eedd565d015b115d0ff0d751d2716031fc32d51b
MD5 73786544ce4942332c4235866d8c6ca1
BLAKE2b-256 3a7989e4423352d0ca33bbf80fc1b4b665e654a93de8b16cf41e96fcac81801a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 09c0340e9daa7b4530801e5a570cb0c1a1ad941a85d245d360020d3986d0e787
MD5 9155edcb94b136852e66a6e5b59d8133
BLAKE2b-256 e4e76fa6abfc9c4c07b88f09a88466fa93c7081fd679d8e06f8f558bb4ac845c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7e45798d6b969794840bb302857946d710ecb32af78dfcb3ab40f4e68ee7fdaf
MD5 4fb767994f19325ed5b5585d754aad53
BLAKE2b-256 038367c1bf83f815294d2c3acd7631f25b5cbe6067e1d56495f76829dd60057b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.2.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 275.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for cachebox-5.2.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a7cd2c81347063ab6c512d0f569aeb5f75fc2dfe686c8486258ffd08052324f4
MD5 499dff49f8e7a2c249842a295a7f440a
BLAKE2b-256 a1a40fadb5e6a00f373cc3fe56b4415cdea2fc0147f6ec475611762d16eb4b05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 38ce67b7b45713e49459a09411d07f82de04022c04aecde6202cd32f934c2b1f
MD5 b949f418c207d40fe1432e8f66a17339
BLAKE2b-256 04905273a412855fdc11f674e4749aee6d5ec0a91f5c1a9f6e922f7fa0cb7a83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 33368adf86669c29b936fbae5d6219cf90aacd4b1db71dae2e23d584a8219cd6
MD5 a6fc95c8f1f715a7c6d7e527fe3b28cd
BLAKE2b-256 34295a9e92bdc7b32dc865e73dd776638244f900136daee5bb0591a67e1530fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7f691e25572a3ddbb018e19d796f774713bd6b0f7ce9be2e71f6e18572de264a
MD5 55d6b497a48caab3aec0cec3da9ed4ca
BLAKE2b-256 db2331cbc8623ecc2e25900f7e8f20f11bfb84786989a59a8046e70b27cbea6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 577c781f18b559f4dc9eea176c6aed008843ef4b8e045cf61bb519e09dccc9ef
MD5 b2f3cb5848719395342dfd3fb28b74e3
BLAKE2b-256 36013ec8aadceb0dcc66dbd0b9b32966cf7b6928ed84471424c24d21b0af62d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae5bf8755bc66bcf42e7ca5c42d703a041a7aaad58f9a0c3be54d5b1cefd2641
MD5 9bbc1074d3f0515f04fde0f8dc872ddc
BLAKE2b-256 b3508e4d59b3e344405d8393d6cc5cc92754d3cc1d81134041ebffd3f5ab73e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5774d06f0da37dd566239a4376d6ca8cf983d3e4c3228712ec22b4130f662f21
MD5 dded191e4a16b40df8912a28309006b2
BLAKE2b-256 4b3dcc02066d5ccfcb8b35adbaf867977fdb54572cda56ace56da396f0caa3bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 569966efcc6309aa7d774443e3513cdbb8671efae0158138ba2ebb7d8cc9d8ed
MD5 69bc7346e3efa5efaee9105365c4783c
BLAKE2b-256 dd5295bf883ec9b69a76f3a7d9fb14d015d9a4bdab0143a3eff62ceebc8b1419

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ebd0f8d4ebc3943c1ddcbbdc54f1a8ddf95505c862ed5731319cebd1eb98ae41
MD5 ddf76219fac1d48d1e452f3a60ad60f8
BLAKE2b-256 01dd1522aa808f94c904c5eb3640991799fed14dd43c1dd99a9f7b71bd95b1e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79c63ee1589364caa04c018405e625d2e44e0bf9994f2715b2f322075d8c45b6
MD5 81412bf02cecc587fa86fe4ae4860107
BLAKE2b-256 bb9b8da38af731e3832e9f987548e4bfb610d7f3054019e12c44a94ba9272b37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 63f061cc6a5ca70bbce2e6be0588fe2fee00a93a1b0581b1086d54b10288cdb6
MD5 1d1f15ac9b3e48fcb61c08e9b41c2f3a
BLAKE2b-256 e5d4d731cff1c4cec22404bd3ddda05b233c5efaa5f13d7abf4e2728905b7cdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23a3300ebbb526fa12ce6fa53699002f5fba6da23b4bbbaf8ba8b18a3f03e6b3
MD5 5383c28c085403c62b6e6276ab1b5bce
BLAKE2b-256 7d9d3b03f2e063161bcb1a5e0969d521b5c622c2da02252a5c8bd4ef0e4f9914

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 996f49d04b234082530afcc650bdd00556afbebc19c6c0daaafb85950340cb3c
MD5 97fdcec2b0d857f20bc03efe179b9688
BLAKE2b-256 8188154179d492f2c000fe6efab3c3ff6b8eb94fbfaa09efe47999bce6b1e29f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a87b19c0a3d8d665a9805b5b4afd64b40082395b70ebe2756131ed1edb0c8f02
MD5 f3f76c969b885a512e6280f925a47f62
BLAKE2b-256 3172fb10d6f779d041f701b89f0b7830329f51d1846fbc600869f9f7d635b7b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.2.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 275.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.13.1

File hashes

Hashes for cachebox-5.2.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 745b805fdd99931c3ce1d87d2ee21ca3fb62cba6b4e1f674907af87aad73dce4
MD5 fa519a0253af6ac6f4019a466683931b
BLAKE2b-256 6e2ecc5b303746418fde00c93ddbc295733b4e2d131d2e8f5afbc6f45f50454e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 223ccf7ac60f595def258e7bc74c0b1d6f43991c9cae6d06749c803d22786d99
MD5 5e59c315f994f3bb0854c1ae1d24fd99
BLAKE2b-256 51d982627eb8cecaf5e7e601bbc65d474a1c3053a2fbc21618ddc6aac19c47dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a0dfd97b0968f8bd48c33098a03d10f797964559c3a437c84bf97a9973545714
MD5 2e0f7b3e1abea3d0b441370aa0562a4f
BLAKE2b-256 d9bc52d154aa0407bafce94d1d8d3ff27ca5e842f8311be43cfabdefcbb0f6b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dd01fc0c1934cccb76493eb4b149a9232d299e5e0275f557adf875c3d25cec81
MD5 00fed3e9167cc344b9bbe8f97fb3ae9c
BLAKE2b-256 4e6376cd5405b0339f15bf86593258bf9bc5608f10a5e0fa6f37a282b42a6caa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 be89497a011eb7a638d13cc520244d77579c0f515b95bf759b3de0b90a015203
MD5 71bc345f9988361bedd3e556115f2f5f
BLAKE2b-256 cdb4fdac1bb902b954c03d23eb301d645a328c9664caff5898930fdbd92fde80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad16d733219f4cab3eec6533af30ab7b9c919c6e3e22ad1ef4eb82629a62edef
MD5 cba63f2b0750ea791b3e5b5a70b26ff7
BLAKE2b-256 112f5abff74666f8388d2c9516c265f99c33484c827f7fcb3cd703c2f3cbb17e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4974476d1779961df89d6e6f79e6103a1659289d3ee11c92adcb52e236a8aaeb
MD5 fd1e7db7dbed6bd1c616129995d262b7
BLAKE2b-256 8c5853f1fab8bcc3238fd6c533ef3ab146097986a8acb722863c688a2410c1b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bbe4655371d19fc9f4f5874312bcb6e5b5b6182989979ac33d93c34c8d10c012
MD5 d381be7143665af54d9fb04df2c3e1d4
BLAKE2b-256 3b57a1fead35cf481432bd87def0653cd4a069b1ea5847589255795e49ae74b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a71a71df463ba4c86bc843fa01c3a2a721033adefad888af28c6b65e1915a75c
MD5 a8fdff75d96387eda9f1024960bad824
BLAKE2b-256 e42f79a8a0057f354581c25a1a00ddabbd5db4b8631d192670d7a0cc4271dbb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56cb03ec6289a2ac5daf7422d755683324f02d821bfa796087100df2a7ebd5de
MD5 8e05597c7117058e7a98436a5c3eae60
BLAKE2b-256 bc028ae1b63dbdebb2ebf600523f48b54e9bfb10db5a28551c3432346f49e1dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 12a9e0a93774ca2b3a9fe8a2a0d0812e399fac4af0fce6246a5bca1e7009b8fc
MD5 36eb46afe18817e25d238011e7235870
BLAKE2b-256 dd1130b429db12ab5df663aa108bcfac42805f733da65b0bf452f60bfaf4a530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7f33d24e90dc8aa26762e25898c91a1223b66685420a28a3628fa2e006924f5
MD5 df502ad7c8f1d6186f1a0af70032e0ba
BLAKE2b-256 988de0b13d9bfd43f295cce7824ebaac1970f818a7027c16f290de404934cafe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c2c89720547271d36e10cad2c7302bbe11f46eb39eead0a2c321c2d371b8f8b6
MD5 1f9b0a553807f3e9b97c5b0481f0cd93
BLAKE2b-256 139e88193fcb7a2a43fe8ed9d9888374d43fa5c7176aa802651e68b28f1aee4a

See more details on using hashes here.

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