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 and powerfully perform caching operations in Python as fast as possible. This can make your application very faster and it's a good choice in big 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 i need caching and cachebox

  • 📈 Frequently 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 has high user traffic, caching can help reduce the load on your server by reducing the number of requests that need to be processed.

  • #️⃣ Web Page Rendring
    If you are rendering web pages, caching can help reduce the time it takes to generate the page by caching the results of expensive 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 Rust language to has 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 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 choice your implementation to use and behave with it like a dictionary.

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

Installation

cachebox is installable by pip:

pip3 install -U cachebox

[!WARNING]
The new version v5 has some incompatible with v4, for more info please 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 bound 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

# Async 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()

Also, 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 cached decorator -- just import what cache alghoritms 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 choice randomly element to remove it to make 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, 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 need.
  • Frozen: you can use this class for freezing your caches.

You only need to import the class which you want, and behave with it like a dictionary (except for VTTLCache, this have some differences)

There are some examples for you with different methods for introducing those. All the methods you will see in the examples are common across all classes (except for a few of them).


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, and which 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 that the wrapped function has to copy which type of results. 0 means "never copy", 1 means "only copy dict, list, and set results" and 2 means "always copy the results".

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:

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 also manage functions' caches with .cache attribute as you saw in examples. Also there're 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 that you can tell to a cached function that don't use cache for a call:

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

cachedmethod (🎀 decorator)

this is excatly works 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 that 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:

  • it is thread-safe and unordered, while dict isn't thread-safe and ordered (Python 3.6+).
  • it uses very lower memory than dict.
  • it supports useful and new methods for managing memory, while dict does not.
  • it does not support popitem, while dict does.
  • You can limit the size of Cache, but you cannot for dict.
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:
# By `maxsize` param, you can specify the limit size of the cache ( zero means infinity ); this is unchangable.
# By `iterable` param, you can create cache from a dict or an iterable.
# If `capacity` param is given, cache attempts 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)

# you can behave with it like a dictionary
cache["key"] = "value"
# or you can use `.insert(key, value)` instead of that (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 reached the bound.
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.1.tar.gz (66.6 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.1-pp311-pypy311_pp73-win_amd64.whl (282.7 kB view details)

Uploaded PyPyWindows x86-64

cachebox-5.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (607.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cachebox-5.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (641.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cachebox-5.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (657.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cachebox-5.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (565.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

cachebox-5.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (392.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cachebox-5.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (396.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cachebox-5.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cachebox-5.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cachebox-5.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (389.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cachebox-5.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (421.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

cachebox-5.2.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (349.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

cachebox-5.2.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (370.7 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

cachebox-5.2.1-cp314-cp314t-win_amd64.whl (291.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

cachebox-5.2.1-cp314-cp314t-win32.whl (286.3 kB view details)

Uploaded CPython 3.14tWindows x86

cachebox-5.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl (617.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cachebox-5.2.1-cp314-cp314t-musllinux_1_2_i686.whl (638.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

cachebox-5.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl (652.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cachebox-5.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (403.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cachebox-5.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

cachebox-5.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (368.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cachebox-5.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (341.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

cachebox-5.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (387.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

cachebox-5.2.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (420.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

cachebox-5.2.1-cp314-cp314t-macosx_11_0_arm64.whl (348.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cachebox-5.2.1-cp314-cp314t-macosx_10_12_x86_64.whl (367.3 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

cachebox-5.2.1-cp314-cp314-win_amd64.whl (302.9 kB view details)

Uploaded CPython 3.14Windows x86-64

cachebox-5.2.1-cp314-cp314-win32.whl (282.3 kB view details)

Uploaded CPython 3.14Windows x86

cachebox-5.2.1-cp314-cp314-musllinux_1_2_x86_64.whl (625.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cachebox-5.2.1-cp314-cp314-musllinux_1_2_i686.whl (644.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

cachebox-5.2.1-cp314-cp314-musllinux_1_2_armv7l.whl (656.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

cachebox-5.2.1-cp314-cp314-musllinux_1_2_aarch64.whl (570.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cachebox-5.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (411.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cachebox-5.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (400.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

cachebox-5.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (373.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

cachebox-5.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (346.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

cachebox-5.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (393.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cachebox-5.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (428.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

cachebox-5.2.1-cp314-cp314-macosx_11_0_arm64.whl (354.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cachebox-5.2.1-cp314-cp314-macosx_10_12_x86_64.whl (373.1 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

cachebox-5.2.1-cp313-cp313t-win_amd64.whl (295.0 kB view details)

Uploaded CPython 3.13tWindows x86-64

cachebox-5.2.1-cp313-cp313t-win32.whl (286.3 kB view details)

Uploaded CPython 3.13tWindows x86

cachebox-5.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl (620.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

cachebox-5.2.1-cp313-cp313t-musllinux_1_2_i686.whl (640.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

cachebox-5.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl (650.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

cachebox-5.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (405.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

cachebox-5.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

cachebox-5.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (368.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

cachebox-5.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (341.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

cachebox-5.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (385.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

cachebox-5.2.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (423.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

cachebox-5.2.1-cp313-cp313t-macosx_11_0_arm64.whl (345.9 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

cachebox-5.2.1-cp313-cp313t-macosx_10_12_x86_64.whl (363.5 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

cachebox-5.2.1-cp313-cp313-win_amd64.whl (304.9 kB view details)

Uploaded CPython 3.13Windows x86-64

cachebox-5.2.1-cp313-cp313-win32.whl (286.4 kB view details)

Uploaded CPython 3.13Windows x86

cachebox-5.2.1-cp313-cp313-musllinux_1_2_x86_64.whl (627.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cachebox-5.2.1-cp313-cp313-musllinux_1_2_i686.whl (648.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cachebox-5.2.1-cp313-cp313-musllinux_1_2_armv7l.whl (655.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cachebox-5.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (413.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cachebox-5.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (399.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cachebox-5.2.1-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.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cachebox-5.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (390.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cachebox-5.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (432.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

cachebox-5.2.1-cp313-cp313-macosx_11_0_arm64.whl (351.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cachebox-5.2.1-cp313-cp313-macosx_10_12_x86_64.whl (371.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cachebox-5.2.1-cp312-cp312-win_amd64.whl (305.1 kB view details)

Uploaded CPython 3.12Windows x86-64

cachebox-5.2.1-cp312-cp312-win32.whl (286.9 kB view details)

Uploaded CPython 3.12Windows x86

cachebox-5.2.1-cp312-cp312-musllinux_1_2_x86_64.whl (628.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cachebox-5.2.1-cp312-cp312-musllinux_1_2_i686.whl (648.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cachebox-5.2.1-cp312-cp312-musllinux_1_2_armv7l.whl (656.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

cachebox-5.2.1-cp312-cp312-musllinux_1_2_aarch64.whl (567.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cachebox-5.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (413.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cachebox-5.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (399.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cachebox-5.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cachebox-5.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cachebox-5.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (391.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cachebox-5.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (432.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

cachebox-5.2.1-cp312-cp312-macosx_11_0_arm64.whl (352.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cachebox-5.2.1-cp312-cp312-macosx_10_12_x86_64.whl (371.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cachebox-5.2.1-cp311-cp311-win_amd64.whl (281.8 kB view details)

Uploaded CPython 3.11Windows x86-64

cachebox-5.2.1-cp311-cp311-win32.whl (272.2 kB view details)

Uploaded CPython 3.11Windows x86

cachebox-5.2.1-cp311-cp311-musllinux_1_2_x86_64.whl (605.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cachebox-5.2.1-cp311-cp311-musllinux_1_2_i686.whl (639.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cachebox-5.2.1-cp311-cp311-musllinux_1_2_armv7l.whl (655.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

cachebox-5.2.1-cp311-cp311-musllinux_1_2_aarch64.whl (564.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cachebox-5.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (391.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cachebox-5.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (395.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cachebox-5.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (368.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cachebox-5.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cachebox-5.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (388.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cachebox-5.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (420.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

cachebox-5.2.1-cp311-cp311-macosx_11_0_arm64.whl (348.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cachebox-5.2.1-cp311-cp311-macosx_10_12_x86_64.whl (370.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cachebox-5.2.1-cp310-cp310-win_amd64.whl (281.8 kB view details)

Uploaded CPython 3.10Windows x86-64

cachebox-5.2.1-cp310-cp310-win32.whl (272.1 kB view details)

Uploaded CPython 3.10Windows x86

cachebox-5.2.1-cp310-cp310-musllinux_1_2_x86_64.whl (605.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cachebox-5.2.1-cp310-cp310-musllinux_1_2_i686.whl (639.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cachebox-5.2.1-cp310-cp310-musllinux_1_2_armv7l.whl (655.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

cachebox-5.2.1-cp310-cp310-musllinux_1_2_aarch64.whl (564.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cachebox-5.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (391.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cachebox-5.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (396.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cachebox-5.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (368.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cachebox-5.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cachebox-5.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (388.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cachebox-5.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (420.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

cachebox-5.2.1-cp310-cp310-macosx_11_0_arm64.whl (348.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cachebox-5.2.1-cp310-cp310-macosx_10_12_x86_64.whl (370.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for cachebox-5.2.1.tar.gz
Algorithm Hash digest
SHA256 13475eff19c9a73e852884463d1ac41bf5baa8f1fb4d2af8bb5a5e4a5fe0e279
MD5 2cb8b5533edd14fd033c6c7e04fc6853
BLAKE2b-256 580305fc3af39b97467d3524efc9ec063321f183f1093560d0cf6760a8981e49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d9b609969b33778c108676a05cf36e8418dd5e03cd43786b1ce07e0847f2b92c
MD5 8689be7e6b7551da03429f2be2b046fd
BLAKE2b-256 6c933b7eb811c5442243dc77d5661f24248060b050d80e8d5aa9f709931925ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee86911d1d08181c5efb7079274990e0a5119d4059467810dbeb2c93a0cfee06
MD5 3618dc414611b4a67f57409bd4bb23e4
BLAKE2b-256 874b8976ae167cbfba94a660d57122c0ffb712e4aeaa4f2afa9ce1ccb7df1870

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8c32c1cf4bfb5cefe7ff70861f67005f0e143cf4b31911211f5d0037fe232119
MD5 54d0d7d483fe2c55dd7f2311144500f1
BLAKE2b-256 81bcf513f510dc7ff249d415a10660628ae6a3f11fab8c82e56c9f129d2b6542

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b8be5e85fd6ae3e1b5c945027098477640a23eeb66a194e8c43bd9035632538a
MD5 1160f9e4c3c19eb2566179a49ede7789
BLAKE2b-256 093358cc31af848ea9ccf84ca8f00c2014fbd2cd816f3ba2c70b1ce6b4ae15b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1af79a9ba4c55c878fc70b5572d92d8e53365af3979c5f20cbe935fb3c926c83
MD5 fa16f1b44a869b31d1f758d789a246b7
BLAKE2b-256 2a9f197e8fb303c9738e7673e8bee08f6a2273acdf533b28cea79d9085209a5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1d9d38d8c5ee2eba9dfc36b65b94f30a973d9eb56b3527a24d67a193888bfba
MD5 369789419e856c778e644722b6a21bce
BLAKE2b-256 04898268762fe8ee913f3e0427ff29b9f80ebe167198d0f84e13450878b2628c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 afc1ea0de2dd50a37d819524a5cec62e88055dbec8ed8c58cdf1183eaeaed37c
MD5 872c6aeff1647204e54c87926e018eb4
BLAKE2b-256 c750db7a339bb324f37de5b1bbb1da670ae169958dfea3735930659c9f3961a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d732838c324b489f231b067646ce84208d802e0db555b013bacf38cd2efb3b21
MD5 7ce564f26ee1838852c6a604e49d28bd
BLAKE2b-256 16d58177f7200155d7f7b7e9ce1af995ba8f686294f23d27255d30c7de04ffdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5bbc46f601704ff4191b8515f0b70b75a77acee89fd30960e10586f1ddf59a3c
MD5 99dbe81eb2aca007633ffb09b6eabb77
BLAKE2b-256 06a3e034e94cb06480153c19d5b0af09981985be24c76b256d4897b1160a93bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a2b28a417f4a309d98042ae65d142a70467cfab4a7f298f069f54d77aded4b0
MD5 ac504f80f1223c597e2cae3e13fdd10a
BLAKE2b-256 b2e8ca718e07a03c8a3050505823ccb1fc2163fe3dbb3f8391fab00a729544fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dd62a66916d2ad704c197af2abbf7f180d6bd287ef07c940ed682bdb6477c5c1
MD5 dfac7610f66dcf2a2dc6df793399502f
BLAKE2b-256 dbafe5fac9cdbb4341acbf8c53f33e8c4016479977c50c535e6e334d5113e38d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 706d62f23cc31fe4306dbaf6fdcad9a11e1497b9dbaf008bd0a3f940ef974743
MD5 ab2a86cfb4fc47f721537e2271c20745
BLAKE2b-256 23b1175594778f2886d639ddd5dac2e26dfe64fbf7c511288be372315b96d71c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 721947352cfa6e17399b6861862a82b66cdeb742e543bf3337e06d35c7fe6b9b
MD5 6af9a8600d69f6d6142d69cbce2c4f7d
BLAKE2b-256 f49e1406197c384f7f9574ef4de23187b4b4c6629482a73d9e56ea9fd3be0d47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 328542d8273c430007e55c34427c330a6a6062dcc85ff04ac434e15826299706
MD5 ad4eeb2a881f0991d6f51dd97118b2bf
BLAKE2b-256 05961e1a9696a974f12e4e9399c8dc48b833c046622f1ea51e7a718971701116

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-5.2.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 723d8f82e413e377ffd35c8c2dd1989699299d33751cc774dcd5e3496c7a3ca9
MD5 f8728bbb2d60ed35586c2b95f0af0239
BLAKE2b-256 0fa79ad7fe0e1e097f4f8abd0d35587b6b9054d8ed78c788373c85626a671161

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d4c3ad81d55e0d69aef04776befa342879dcabafac32d3c31c87f4a8d345e485
MD5 93db6ee75635eac97ce548eb32f89e0d
BLAKE2b-256 9ce9e41797abcabf732fcfc94bb96e9d4aa56019b46a581206f77d67bcd4667d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ba156de75e26d5079d7fd3892b8390e22e9690a4a29718947c60dae8693fb6ba
MD5 a534e71f856326e522bf1a818f8378ca
BLAKE2b-256 c957150a5cb5c0bf0110fb5cb3129d3a26592fa1a1344c17dc71f1ce10be71ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5bfb335d75a21721bad435787a5007ad8227153cd32883c58bd3c38b8efcb66a
MD5 9c6e6af0b216516b49c73789fb196c90
BLAKE2b-256 4736a22a4445e9ad5ce34b90f055fd1ba4a0bdd41ca8ddcdb1a9f60cc3a14d5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7907a6773b1de71236f8073142489285416809226b8a50b06054c1dc258748c8
MD5 73bcec9050b9a209e32d7000657d7086
BLAKE2b-256 5311092869eb9e19310d0e4c77403ce6dd26ae7dba9a92ed1d15f0f385cc07ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5368bc01a775745087a2c39c4cffe5bf440ce3e9b6cba2617f265195c3361c53
MD5 a1baa95e6e0a48c472994139e3be563d
BLAKE2b-256 36909710a6c81a6da738c468cf6db61c62dc8e8bbc9cc113b3e984a492fa8604

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8e05ba9066255c659c7d34dfc4a91aca82c830c63713ca18c3e050a3b7aa4060
MD5 d034f673ea95985abde373b589cf7ae9
BLAKE2b-256 c152d872251fea6a081f2660236f13c49df7ba0f29e2b40792c52f58f53a8ee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2671ad1e480f6e191d82c6a4f458300dcf8ec46de222301c711acceb8941eec8
MD5 4c635282cb347f236d7320864b0eefd1
BLAKE2b-256 deea7129b852283c6e59979ce25d37a6f64c3ad1e2fdd52da76d50c5cbbe2c78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 68e3802d5e678d398017f14552488186a70ce48cc14d6ecec7ed7208d92721d8
MD5 1ae74411db0a5b0e4935881393187e48
BLAKE2b-256 83bb36eea8052f6be1bed7d23b5c50076299254ef8dad8a67dd85616e7081989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3cc67e55d9b04e723bb926f215ffa3c1855796435e0b576ce1a0085b224f100e
MD5 22d14cee9f04965cbd3c28f69e52d749
BLAKE2b-256 5d4eaeff98cb102184aea2ac9faeaf71085002e6141a9b44b9b091fe50d8bc05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 56bc4425cd3de9906ff721babefa6e72e4b2143be1d72c6ad9cb921145e41fac
MD5 18fcf84f148d94d3180078ac2f3936fc
BLAKE2b-256 e0d283e22fb268ffff52b3f8d63f6a16aa42199187472a4f185182fcf582e957

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 421c412f8d01dbf3c1a4ffa4e1ce42851337bce201bb9e3aec07619f58eab437
MD5 74c69e3cbd4a5db826d5a9728caddbda
BLAKE2b-256 9acf1de3ec11da8328182a5bb3e695393deb906b8e90c6ed94f372059e304752

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dd2b37dfc6003f65bf786f67091f9213c69a14063b583b197343eae55abef2eb
MD5 74aa9603497d90df87599f3a65786bf2
BLAKE2b-256 21e42b33c737c0454a7a4cc5c02ecd07bf44197d8a7d27c20fc29f1255184d5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 94dd0a408481211cd867432e009eb16cf5db874c758c35ee588e5a62aad20ca6
MD5 f391399e71fa223fc2771310a0f4140a
BLAKE2b-256 543e6a9208a7fb9cc42c43130fd39e4761a853d5b416e25dceff70c4d3b44155

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-5.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 da8695c103bb9feb37bf59833f559edbd87b0abe16dfb88e875ee386c260f1a0
MD5 6fe4abfb13279b99ba116e7825040b29
BLAKE2b-256 3f4f8f9220947ff5a87a016132d9b9884999651b8c96eaad43cc90ae0610c8e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7526f216ac3820208ccaa68fd0bd67b8243e5b41c5d588bb8e5a85fd4ccf97f8
MD5 0adc7b5e57f1e5e25067d7048e8f18e2
BLAKE2b-256 52538656369713038f18070fb2aa49ec75812d17d2e44f7f86299a4049b45edc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 37582bb64ff2034a72826a4217bd082397bb2c2ef4fd282d6fc91994b6e44b92
MD5 c1187bcdf97807490008ab9979b08e62
BLAKE2b-256 28ce777137784e96378909ee65bb1b49ffd9f0f4340f093a8e03b7dee8e78d0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f90ceff3a72f4230919b6888b0ed4b9eb8424893588c1f8058de1b9396aae3c3
MD5 5e2c4e1b1938abe289387b135121040e
BLAKE2b-256 ba7173836a4776f2b9c4cc3a767c31d7903d82d99c81768a5bdd4f8ef2a47b18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a8c19595fa72dc495d0155c73dec46fdc1ef71d05ada850712db2ccf4f826db
MD5 77c0ebe01acd9e6ed6afde44c9bca19d
BLAKE2b-256 c925029118af36ff7000bb762f0200a0a0b0dcd516c0ff87c9f8b032a7a25aaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd114784771f167a651af250e16ca33380087b21233efa5b9ccb91b3ee292dfe
MD5 49eac085eb3ff84a3dd33bd5447bb179
BLAKE2b-256 5c44ff6d864891b17f3ef6e1aaf1322026c4d3e0784577c87f2443095bffec56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b1645eec4edab0440ad73a3cab1752f5d21371dad19f1a63d150b89fe49a052d
MD5 234b0eb8259ace9a86745a9cd0e1116d
BLAKE2b-256 76088966b1265e7dfaa51fcf472e991a6f4249693ea9d4272718108f7942965e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e5713f7faece9e94ffa60ee3e9b6fbb17d9c8909ccc87581b4e4bb56fda4f714
MD5 6188e5b4d7ee4b2a689cdf5a9ec1fcce
BLAKE2b-256 57100e1477922ebddcab8147721082510f163ff16df701f5a43af9415c0feb60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a7bab912c2d7dfc771e166b3a2a821f5e64b31e6a4c792991ab8ac47c480bb4a
MD5 7c96742828e60a159ee269bda2baa0fb
BLAKE2b-256 47ab44795a5dcd877f1a6c3f2b872b235dd2060df126723f82a012d089424bde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99a06f64166bbd723200becaf951effd6fc5dca64f967635ab9f7720a2a411c5
MD5 cf308e28bf759bfcf5ecc3fee646dc62
BLAKE2b-256 e91241996d00dda7291e2aefecf0723abf14faf5abc5e3856bfef3e0665f1a58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a60ba391aa945d7d57d84322b60ed751fce17880346bbecd1a274958ba6879e4
MD5 62adc5bb4d9b482d83de42a887e3ebde
BLAKE2b-256 b6e23a7d0cf145db72534ebfa96e66c080892f1702986ce1db1d3e125f35482a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 276f624436b635e090c1b0dd05417daf8e38e8764849a7356bed8b78222b30fe
MD5 3413f7c4f7c9f7afaee4044c30c2e7c3
BLAKE2b-256 158d8aa3012bab2611a23e8c8fbfb15faba7929fbd5fe45844abcac9237bb79d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b3882be890fd52773d579faa7305ea7237c53f61d3694288b5237ea4be936dc0
MD5 a6089794e3fee2e608c032cb54e1db76
BLAKE2b-256 542be5fe7338e023e59c3ead76ca463094554135716c24cfbbcd12bcf1eb571e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 30df5239945f9bf92c445d4912a24223b0b6be5f3f84a8687cbeff043adf158c
MD5 169928278fff0f5a7c1d9356b5f9f2d0
BLAKE2b-256 36cc74e14fdb4a47fd1dfb1fa4ecb82f93501b73dcfa2368b7c0ee40386939c7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-5.2.1-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 0d07dfd7275f11cc53a5ac031a269cf5d6c61464ab74e10521201a8bb7f9600d
MD5 2d691adb6fc8458083ab45c340498050
BLAKE2b-256 3bbd9f0929e67d0cefd6e101918bfef9ffb455c258e8bbd4562ab59904433aaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a48dba153d1502feeb3a4b4cc00884c30165c562ec0fe47c222e8c5d4e65958f
MD5 bdac6acaabd336bba370d3eb01e018dc
BLAKE2b-256 739b5079b242ab2c122f70770dedfcb1d725a736b17e3c41a6d2582a1f09df8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da035cb7f02499b667632c2a385d5f67edee8eb93e5f9ed3afcf844d5f517e52
MD5 59c18b70f9a17e7d8349e070cb429404
BLAKE2b-256 44c0755c0b671ab58c769b2d752c2007e72d0bab90984a1cd8451df96ec41ff3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5ef4cd71846e95ce317caff385e45b1430de87f2401af48dfcf24df1615195da
MD5 ef7f04ff98909fd0299c9efe9fc5864e
BLAKE2b-256 16f03ae4d7efa7408e02ce13aa92e01dec5612e190f7c1c4b99813f05cb7c406

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79f3bb3729756cb21f2d1e09cb34775bdf31f375d62ed0cbfa7a0672555b2d3c
MD5 e08012a9465cf5ba2c6f1390d4a78880
BLAKE2b-256 3b542fdeb286956251894dded22be030a74a6f53e3f8433044e0929ea768df73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 481f4e71415e9ad143d6c74802fd50d3cb11d68b7bbe1ef8642d8b73d7fb61a7
MD5 6f389d6d97d49ea653a70178d5680309
BLAKE2b-256 c75c201df5b3f69adb56d32d9cb32b464981dcf7c5bae8e50c3a5a77d248d482

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8025b04689e8083582580b15f4ea61af576f4f89b15a26d6ef92163ae32ea928
MD5 d0a43409619282af27ac7fd9fcbeb19c
BLAKE2b-256 cda2b737fe9722d84b3a602ae339c05867f279410e5e06639f5677d31fe8a747

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 738638f8dfa3aa731a716af0435138bd60fcbc72bece735dbede1baf1f8734e7
MD5 7e0ebbd5e363b0ca0d4d3e389111caa6
BLAKE2b-256 caaba02d56e81bc038580a24c46669786d18accf96386e793ee7136b5a343259

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 702423ebc733875fa75867196e5b7e1d14ab824673a7540adbf4a1da217074c5
MD5 d8a6d7d1aeaa4f315c1c61bd301f1f64
BLAKE2b-256 80d67553c77215ad8375576c5958240eff7e41c861df4416cac3a7d53c9a6690

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f5a372c4a9ebd4ee061744e46f68ffccc5ac0bd036c8aa55cbb82b0466da2455
MD5 f9ca2cf1e71040735e593d31cad81041
BLAKE2b-256 bf1aa05ac75ded065a63a8fd09e1ea6ab14847016cfe9f699c96e138bdc7fdb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c36fff686a75ac0a717a51cbfaa05b6ae3041489759506d66902de11d1a08798
MD5 6bbbc0a035c0b67f7e4b8b961e770174
BLAKE2b-256 f20d69b849af6d7988dc2657a63b2a8d79b570b17a6b54bdb7f5eaed872a42f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df68bb2dd1daff3a103515790a6f6155cc7ae3412b625e095613b366b2057207
MD5 d1b47ac83303563a41614e2fb885d1ae
BLAKE2b-256 ca493ea2f8da16d251a821d20b42fd484908dfd8ed1c43e7bcf8787e3997481c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9b4945d4f2ba75cc0d852f8b219a9de86d1c415fc2eafb8c008672d84d11af2b
MD5 b3a70f24e86c95637167245027228d12
BLAKE2b-256 019e6d38b3e4f9e145c494f40a5b2bbbe6bff19b619a4f04ea3a46dfc0dd3efc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 0c3dccbaaa5f4923852609699ee7f2e7d10b917275ddfb3d5fd7f616ab210b96
MD5 337adc776d75db9431bd024d3880b548
BLAKE2b-256 772cbd8c038a0f12d2fd821e5b19cc9c25fcc75ac99e4d100dea350cf1dfcba0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-5.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b721b21e99c738a766c4ab4c05ef8573d224bc0d61cb1dcb6e45bb4cbf0e80ec
MD5 c988d6e51a33f7f50091114aa42c1f53
BLAKE2b-256 d2f095ff38b7b062c6fca25121270792722bcc36654dc151face3d4915b7c726

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ead7ed52ea0b9e9b39e3b222a3f054e1c2388f95671f11e39c864a55f5a83f1
MD5 47747511b68d43712079a677cd5a7c0b
BLAKE2b-256 3bba3a54ef05f1a9760db36a3f66fc252e58e8aac3d717c66ea4ee4fde56a3ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9c187e44dfff9d26aca6ab0a596597cb24ff20dc51d4baee1b7b79e26c9f720c
MD5 57677360b0f2c0dff4af31df5ff2ff77
BLAKE2b-256 7bf7b246384a3b83651a990e4852e1ec894f70c6e016e6bdd9b6d77fe0a325bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 52989213ea8a52f58e1dd515a9441e595eee4dabba3c04493831e59c86b3c469
MD5 8022dbc1f426c36ed9c20ab8d9805afc
BLAKE2b-256 1153ed6d62f760e4576929498321f9978133c27480e2009a425f9830d484f0c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c33360988c18a1a0b5f31b4cc45bdbf970b994cf36d8a022bd6fb20a08d1f2c1
MD5 b95e75585a5944baf5fa6784b4bdd3f2
BLAKE2b-256 6be3e060b45148a09fad9cfe375c2e621be7577f27896d43a6e565ab7654d848

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7a55e659809f521cbb36cc42ee9e69bcf5802302483138449511c78feec8a13
MD5 f168e1b1bd353318cf2f51758ed6d40a
BLAKE2b-256 c4eed3b05825a8b4ed1e9c272780cbb6b356da1bd198b8a5fe217c90ff97367b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f07c3ec456a25d6e11e8cbd581568fac86fca0daa2eea90412ddc8d9ac659fb
MD5 86ab2f7c3844f5dae50f33260330fce7
BLAKE2b-256 416cacc55ebdc2a823d5b42b4ed6afea0e4d25d4644dc89421cd0f202df29ea4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bbdb230048e688d9f26983b5140552b514508d6c3e8bd66de8b80a51af33e7ff
MD5 3544bb34ab3689b9495879aaf2c2d266
BLAKE2b-256 7e9bdd9078a213015ead5f0eef1a7e8f1df2e0df68fe7a0e215ea46430638596

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 122e74d6bcec516d5c6b11be854fd814f3faf0bb77a7ecd3846b11e276e98b45
MD5 2f9986b495267fb4277a1643c3aa867c
BLAKE2b-256 e5fd4b86df12c55fc45479662cc59716349340937614ae63568ab0429e6f764c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05b4489af707745c2602e8158f487d0c8517cec7fe23c28b9302cb0bc947d6ad
MD5 5bfddeddb2d55036f024bbcff1e2060d
BLAKE2b-256 b2c8cffd0ff8fb72cffedd8d723b2e05f0e448b7d12310722776c854f869ee79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5989e9bbbb9da45c9080cfa1639ca24418f68de092dd5f0d7bb17c22d68afc1a
MD5 3989fc7be6cd9282627d6d056d9f341c
BLAKE2b-256 c8eafedf58e492f533135fd51d0a529923938c1f030f17b246ce4bed33dc85ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9f36fa8d370bdc41ec62fc89f09776c5931ac51a0e7c69d9e19ad759c43183e
MD5 c33d20bc7b6beb2bbfa93c8aea448fa7
BLAKE2b-256 9df652b0feb73e70acd1b11474e5a9307df15740bcf43e1e986b7c92b9b81ed2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dfa448caa01dacd6410566c55e075c85fb133ded68ce08fccb20dcb92dfaa0a2
MD5 998cd585ced8f519d73af6dd452daddd
BLAKE2b-256 75278033648f92a122422c0af097162485543357ee41521b0bb0c7ce70de7ad4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a0bddac84a642155630f60c5375ed329fef3b6d59ee5ca0608ef422f74635c1f
MD5 c6f8a1f84d9b4d1e9958c776a8a2ea6b
BLAKE2b-256 5aad838d93d352c23aa775a2e6a943397ce63da2429d3c4ff9bfca28c85227d6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-5.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c0c033419422bb4d7588f213c83d1660db38c5825b181aeb3a0a1811ec6d83b8
MD5 2d82da9779a8a0f4e0055ea6cac91109
BLAKE2b-256 bf8ecd2117b039f72d720106a69703b3535b964e3b98be7b9737519f9bfb1641

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97b0a778d61e25b07b6af1da18581be8860f2d25b3b82b2270c2da624f2701b4
MD5 2decaa8f9639c4c9b197c18560c68a73
BLAKE2b-256 47552c48989e5a3c8307e439485ed819a3c76c42ce7f2bc34910ca9d651c0cf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 14b7b2291de435d611e15dff881f171442c4ac10ba2fb9bb3015ff4a521b8c01
MD5 9282f593e6f4343a5911b84fcf095fd4
BLAKE2b-256 e0c2c189f47c9bafd1ce87c6bf0e1f546800f5ce49755d04b7dd1e08a7d0eb3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 10ee1a85eae319d68ba341bdfd8a46aa7c49c8061f09dd63f07b4fa21e6771e3
MD5 8a2ea089b196e7d2e349cc50fab247c1
BLAKE2b-256 6cca916b399d93d76859dddd3936e9694be612e5c6834b171fa42aebe3797e5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5d1d40f222825e5c1f19d2859c835ad51b3dfd1f244390a5f3cdfcecbee3b06
MD5 5980a771f31907f07e563406e3b780ee
BLAKE2b-256 b18524dbedae01f6bf93c25d0d3d48da7667038cb4c69b58b15238d592539337

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c148b8c47835d5df2c26d1766459bf83ea7f8746aea5c65ba7ebb83f4b071273
MD5 baabe26becc9871e1facacf678883fc2
BLAKE2b-256 97ddef8571c352da469db6777b4750f1b3d44574943677e1860ab5583f135237

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 128e0b4a1e4c44e63746abb68108f105d9c9ae153889b51a8e14511c4507a6b5
MD5 35b8dd21de3df1d630c53a89de18869d
BLAKE2b-256 8cf60a58e475a6dddf456eb2f0e0ef6e26e9e0503a5a93a9674aa968c4e5618d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d964b96ba441807f767fad13eddfba078bf46f598d31d44e14bde6aedbebcb95
MD5 4772c12585afde232f7408e50ec182bc
BLAKE2b-256 1d03f7e3cb77f586116c2625c67afb7551cde4995d30f8b44e077d2bdd374383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1670bba16d65b2591ba7ec92b71365f711c87e0cedf8669e2c40252fa1102554
MD5 e5ed5f3e48f618dd2f040d039bf13a10
BLAKE2b-256 dcfadceb63ee0714a3068e609564df74b90c4a973a49aef3ae95e08b85829d62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c7a79ef01f7be83252d95f71b476d41ac29d859767c159ff9ef71276b6186af
MD5 4090c86bcc56b5cb8d20e539962bc2db
BLAKE2b-256 8c147e8d79b9ad50a1a89b8e68f956e5d289dcf2474b5d0416bd023562681c29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 552d8221f37b3c16763ceb9e5f4639b4d27b25a1429ccb00d8afc2c8b99f0d95
MD5 0bb027011b9386e6cc2c9ebbd49106ed
BLAKE2b-256 46a452680fa627f90fac9b43dd2ee2cf8d32315b2df6c8ac2ce86d186f6b4574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b7d32af961287f319c729df4a788b0ce2d3eb560f338fe344fbb95acf4859ee
MD5 40fae484ab34a5c45e92da07b0fbc7b5
BLAKE2b-256 97b6749a9885b0a5bb186a3fab4b0b14dc7202b9c831d9f6124146309fd209cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 00931ba34b592feb6e0f47cc934b574d241aff72352b680b1c5cedabdda31b5c
MD5 bd30d1d36ef6cbccc368f516acaa8aa7
BLAKE2b-256 b3bc5331b716b7ffc335372d3eb09e5233744ea8cd43c95ef0b683bb2e6056b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 96328ebbcead81245f21df04abd4f091a4e8d76b08c3ea35de711284a6fb484b
MD5 77eebef8a533252227b1fc3816589df9
BLAKE2b-256 e4133be70bc7d265e1b168b129d3f651c9ebaa95e2332aba8dcb262757524799

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-5.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3e607182934a6bb9c8151bda0ecca228d6402a08753540187d8262e3c4013d28
MD5 453cf2733c5fcfe6171b9303435f303d
BLAKE2b-256 70ef147f4314a14a55a2246083a9e8cecd3650b1e7fb4b42a44e9cf9ad9cc7f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57c82e365cbe48b31d46b492c4cc887d8fe73015eec9c476a3352b49d8cb41f3
MD5 530eb1d595a988a9574dd53d3b0f57e6
BLAKE2b-256 262b3accb4fceeafb0b8e469ecd5967b2dbc538449da750c9b4d31203507882c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2ed8df623fc338c91b3eee1cb0ba20418ff16fd95c031b0064735c917cd8096e
MD5 4af1e0fd98a0c50d516b667b1d8c02b9
BLAKE2b-256 5164a246208689e1401c729c075d700353daa70acd22450b2f806e76085cef67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 082b98a118e6de1b027f37641bafec3b761405c1a3698e23127ffadffd173a28
MD5 f119315a1228eccb5e4ae8ba82e92497
BLAKE2b-256 3496585491cdabf9d4811eb51a52a824ee3a28fe86de1c97365a7bd7996921de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03a02956d554cc44c4ad008a3ec104e9022cb223345e765a0ade5844f9d5d928
MD5 afb57d641029d814bf682944de266c89
BLAKE2b-256 a17abf9977542550910cf0deb5d478db3ea6cee43efec1e46dcd31d37bbe021a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34abc3e5239d5b7ef4c8bf91152d570347b69ad402e34f602e80006622795a50
MD5 e2814c412ec003aa987997d88b0200e8
BLAKE2b-256 4be1dfe4d6017693a3fedfe727591c914d7241132c025988bfe19108b87246bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 398fe5aaaf275bf81ccfd2992e7a1aee94f4dc8f27c00c8d2c2586772e906784
MD5 763e9d2f55e36e5e4763c0dbe0e04765
BLAKE2b-256 c58216ee7f6a42c1706f96b8da4f9fc45a8a369f3f081f5327cd17a9e6340492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 53be5d00f624cfd85b4f2e62b6506f9c7b782ec2acf5ab536753645fcd5907d1
MD5 90007038534753d194957abb607a4b82
BLAKE2b-256 2d258a230430b56dcab5f28a88a0a788b7d28bd69d22e4bf4eb9ad0ec67baa8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 661338816636ce54ecfec6594c742ee1c39b6ae49b8fbc3113a9aa5985370936
MD5 abc1781165417bb3324bc88abc4374c7
BLAKE2b-256 defa32e3430891ffcd58ad75e0f2990b530a764905b4d403150bf9d22677c712

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da133d6137714df1af52eaf6df62ef650686cfc3d45b945e246fe911e1453754
MD5 b2233ddf88ab14e7ce4e930e9865e27d
BLAKE2b-256 2e1f4cf2c97140e255ce14f28ccacd1bf7fa626fc346187e39d0e9a9b5ddb78d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d06e2173d9ef398ec86af83533dc71454aca734b130676636fbf81238cfc8b8a
MD5 5992394631388115c0213913cfcd1eae
BLAKE2b-256 7bc2a73c1fe7819832307a5cb520833c25d7cc6c4a3a060627fd5607b368bdaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3a0dbb961b28367cb9176f87e7b29b58195f2ee23559b8904a59bd58475b43d
MD5 443e3d03126860083d960afa585e4f95
BLAKE2b-256 ed1865908b2978eb525d04365f31b4654102745d6ef2db5febf49c499c6a5cdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cfd269ac5a755109d7f7cf80536f85152c17f29f22800d451835aee5730cc812
MD5 03c718c0515323ab32c166eb3f5ad05c
BLAKE2b-256 99f357106be451346a66fc6c610420b54f7636a1e41ac508fefa90195a685b24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 dbfc3a5b21726ac453eb59744a4eaed2d9df22a7cb9d8782f798ae1555446407
MD5 9422f52a194a180e0313d9ae9f39670a
BLAKE2b-256 64f7df2ec0eb893a08dcaf81ac9891e959447a12b786b5f1e99b2aa356e6550b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-5.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e5c6aadbaf4b529367a6eb7f258c5b78aecdb18af4736b14223f4b0334dfdad8
MD5 a5da51eef653e3930c4919c76513cde8
BLAKE2b-256 ffd4d715b62113b17afc03e28bf8e88c4c40dcb7bb0fd355cf1fe51b5cac2d65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 169ec2369865937761e6f0576e5318c9cb47e83b24fc44ced2cc46145f4d99e0
MD5 3c3481803433f637209b4c84b048dac1
BLAKE2b-256 8a175397944f098da10d7aca5c33bc6958b274def6164b3385ed74cf40bce0c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3f5a770fd5a784df6d33b6cd64810d9479626be614cb389c34d672aa85dbc5dc
MD5 e7ae8535a6fbef61af7eba4760484a4e
BLAKE2b-256 fb12f7aa157d65bf063a8c569c5fe094127205fa9fda40033fda1e05439272e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 eacfc5f43741eec159a95ce62a0c4218370580de51d55eaf7a52aeb854edf92b
MD5 02454f40c100aa154ab51f108f6cfd5c
BLAKE2b-256 77d330735edd56666fa00a0fe96d5ee4ed304632ac0efc19683e5586c0415c00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f39a71f070ae6dde1dbed81a30f1833e8ff0a04e2a3629ff3358b71d14c7b1e
MD5 470e735b7ffcfc6a65e36a044363c82f
BLAKE2b-256 81c429de6685e224f31c9406afc72744d45d99304ac80a60f8c1451c789a65e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 317f4f8d57de0d978433ad91987d2e2ebd5d6a1206cf0be53ae1e37ec63b9492
MD5 332c7fe5e99b5066d4f93864cec5185a
BLAKE2b-256 e8d5b0b5e097e5cfcd6cb80ee8f740b73093437171866ad4ec449a2eb0f81279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dabe88aab7942a9b769d6c0e429cee82de74bc551216fe0b9bbc6d347b7ee586
MD5 7c2c16d79b73bebd7e9d67175a107d41
BLAKE2b-256 44bb73613b02c3a43796e62c2dbc249b99c6818ea19ccec21d27386c507161a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 487dab1a787f484b7d511e0b5546296f13025170a88bbd188e7354f0d72da53c
MD5 e6a7600f3932963b85fcf13903d3a9d7
BLAKE2b-256 2e6de049f67a8bffad431c72a0dfb6466f55a39f30615c92cfb506a888fc36c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 987c270356648a8b82b6cc924862ea3b782722e0195115895b76335a67fd4d5f
MD5 c05d75bc43ccfcc62299fcac2d3c0069
BLAKE2b-256 008a58ffceb5cffb15900be15e86df5f02fffe0b54aba2918f4f188911a9ec2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b636aaffd44a330f6701ab78601c59b8019a25f1b090ab7a34ed7c7528ab9975
MD5 be0a7f51447496d6330ca3428545c54a
BLAKE2b-256 ccd9698bfd2e8c9cad39211899b01d07badacbf73fb898763a830110e961f567

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa0260d1505c171249b7a4c53531a74448c6ff5a40b795742629685e3b8f16f9
MD5 45773aea2b15a24c3cdd9bd8697666c2
BLAKE2b-256 7b46c5da4877d3717ada9be85b4c2580fa4ec32eedd77a87bd9d9db26d8c1495

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c84d944baa85100cea258eb8f0c0fea01dda78ca913acd904b5b6eae0a1db438
MD5 9269c8614a2c52aa8ab3a2c5ae6b02e9
BLAKE2b-256 1dbeb44702369efe6b141ae8e53b8dad25438a7569dceb8336050a3d10e6e56e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 83cbf577e9728120420601f89b38d10adb51997e8411bca3f749a4f63751f3eb
MD5 bd5f2feb1c5a6ab233323dbce8d6c0a5
BLAKE2b-256 82268cfcfe21f902313db260c3dd271904f3089240adfe64bd41eb8f28b1c15c

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