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.0.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.0-pp311-pypy311_pp73-win_amd64.whl (283.3 kB view details)

Uploaded PyPyWindows x86-64

cachebox-5.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (607.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cachebox-5.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (641.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cachebox-5.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (657.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cachebox-5.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (566.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

cachebox-5.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (392.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cachebox-5.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cachebox-5.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cachebox-5.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cachebox-5.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (389.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cachebox-5.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (422.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

cachebox-5.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (350.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

cachebox-5.2.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (371.6 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.14tWindows x86-64

cachebox-5.2.0-cp314-cp314t-win32.whl (286.1 kB view details)

Uploaded CPython 3.14tWindows x86

cachebox-5.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl (617.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cachebox-5.2.0-cp314-cp314t-musllinux_1_2_i686.whl (639.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

cachebox-5.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl (652.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

cachebox-5.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl (564.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cachebox-5.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (403.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cachebox-5.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (390.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

cachebox-5.2.0-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.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (341.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

cachebox-5.2.0-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.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (421.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

cachebox-5.2.0-cp314-cp314t-macosx_11_0_arm64.whl (349.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cachebox-5.2.0-cp314-cp314t-macosx_10_12_x86_64.whl (368.2 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

cachebox-5.2.0-cp314-cp314-win_amd64.whl (303.2 kB view details)

Uploaded CPython 3.14Windows x86-64

cachebox-5.2.0-cp314-cp314-win32.whl (282.2 kB view details)

Uploaded CPython 3.14Windows x86

cachebox-5.2.0-cp314-cp314-musllinux_1_2_x86_64.whl (625.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cachebox-5.2.0-cp314-cp314-musllinux_1_2_i686.whl (645.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

cachebox-5.2.0-cp314-cp314-musllinux_1_2_armv7l.whl (656.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cachebox-5.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (411.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cachebox-5.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (401.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

cachebox-5.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (373.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

cachebox-5.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (346.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

cachebox-5.2.0-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.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (428.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

cachebox-5.2.0-cp314-cp314-macosx_11_0_arm64.whl (355.1 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cachebox-5.2.0-cp314-cp314-macosx_10_12_x86_64.whl (373.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

cachebox-5.2.0-cp313-cp313t-win_amd64.whl (295.5 kB view details)

Uploaded CPython 3.13tWindows x86-64

cachebox-5.2.0-cp313-cp313t-win32.whl (286.1 kB view details)

Uploaded CPython 3.13tWindows x86

cachebox-5.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (620.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

cachebox-5.2.0-cp313-cp313t-musllinux_1_2_i686.whl (641.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

cachebox-5.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl (651.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

cachebox-5.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (561.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

cachebox-5.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (406.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

cachebox-5.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (390.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

cachebox-5.2.0-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.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (341.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

cachebox-5.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (385.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

cachebox-5.2.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (423.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

cachebox-5.2.0-cp313-cp313t-macosx_11_0_arm64.whl (346.6 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

cachebox-5.2.0-cp313-cp313t-macosx_10_12_x86_64.whl (364.4 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

cachebox-5.2.0-cp313-cp313-win_amd64.whl (305.3 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

cachebox-5.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (628.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cachebox-5.2.0-cp313-cp313-musllinux_1_2_i686.whl (649.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cachebox-5.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (655.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cachebox-5.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (413.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cachebox-5.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (400.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cachebox-5.2.0-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.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cachebox-5.2.0-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.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (432.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

cachebox-5.2.0-cp313-cp313-macosx_11_0_arm64.whl (352.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cachebox-5.2.0-cp313-cp313-macosx_10_12_x86_64.whl (372.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cachebox-5.2.0-cp312-cp312-win_amd64.whl (305.6 kB view details)

Uploaded CPython 3.12Windows x86-64

cachebox-5.2.0-cp312-cp312-win32.whl (286.6 kB view details)

Uploaded CPython 3.12Windows x86

cachebox-5.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (628.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cachebox-5.2.0-cp312-cp312-musllinux_1_2_i686.whl (649.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cachebox-5.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (656.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cachebox-5.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (414.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cachebox-5.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (400.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cachebox-5.2.0-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.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (346.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cachebox-5.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (391.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cachebox-5.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (433.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

cachebox-5.2.0-cp312-cp312-macosx_11_0_arm64.whl (352.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cachebox-5.2.0-cp312-cp312-macosx_10_12_x86_64.whl (372.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cachebox-5.2.0-cp311-cp311-win_amd64.whl (282.3 kB view details)

Uploaded CPython 3.11Windows x86-64

cachebox-5.2.0-cp311-cp311-win32.whl (272.1 kB view details)

Uploaded CPython 3.11Windows x86

cachebox-5.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (605.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cachebox-5.2.0-cp311-cp311-musllinux_1_2_i686.whl (640.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cachebox-5.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (655.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cachebox-5.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (391.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cachebox-5.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (396.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cachebox-5.2.0-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.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cachebox-5.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (388.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cachebox-5.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (420.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

cachebox-5.2.0-cp311-cp311-macosx_11_0_arm64.whl (349.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cachebox-5.2.0-cp311-cp311-macosx_10_12_x86_64.whl (371.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cachebox-5.2.0-cp310-cp310-win_amd64.whl (282.4 kB view details)

Uploaded CPython 3.10Windows x86-64

cachebox-5.2.0-cp310-cp310-win32.whl (272.2 kB view details)

Uploaded CPython 3.10Windows x86

cachebox-5.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (605.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cachebox-5.2.0-cp310-cp310-musllinux_1_2_i686.whl (640.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cachebox-5.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (655.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

cachebox-5.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (564.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cachebox-5.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (391.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cachebox-5.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (396.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cachebox-5.2.0-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.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (345.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cachebox-5.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (388.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cachebox-5.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (420.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

cachebox-5.2.0-cp310-cp310-macosx_11_0_arm64.whl (349.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cachebox-5.2.0-cp310-cp310-macosx_10_12_x86_64.whl (371.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: cachebox-5.2.0.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.0.tar.gz
Algorithm Hash digest
SHA256 6bedad541f3d860769f4bccb942bcf68e78c7d90d8d34a8fe946fb511fce71f2
MD5 067ed8700737db682fae698cef86e309
BLAKE2b-256 e63ba9e338cf3412e70c7cc543c9e1f8f9d169e773f001c93c4cc0302585c520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7d9cc4ad060a2ec263b59a30137ffa99e7ba889f5d7fc17c1d4094e08458eadf
MD5 3eaefc71e87c7d72580fc486a5b5e4ab
BLAKE2b-256 e70b97431025fc8c33bf201c17e499adbacbdeecef549d7d77975ecb9bcaadd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 188157aa5c9a82f43d898f184f95e5c2b9e8c1a44dd8c6deac6851697e03c386
MD5 9849ba22bdcbb8c92a06be390d4f47df
BLAKE2b-256 45ebf8c8bd46f134bec6e5c140dc281744bd14cedb85c21800b831f503ca2763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7143fd8468f0e1708ba3804a1e399f7808b188dcc58bdda3329669e20f98812e
MD5 e15a0fde75b2e25aa82597f06fefeeb8
BLAKE2b-256 309976c7574e1ce159604f352cb5777f9ddae243c1c3fc2adca63c2d91cf435f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 60d18b8866f31b96b8eb485b42dfb1d6ec0a20f942f5fe52b05b342db9f7a5fe
MD5 83e5b97e7d33758a1140b9ccdb869a72
BLAKE2b-256 d520493457e7ea42be9642a94cecf68cf1722f5160cfa367a87b6cd2d80e4155

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 022c4033f8602bb281d770c5faf7b60de2da0bf699549b13c950be0860aad04e
MD5 91056eee7f62e3ba34fca2bb0ec14c76
BLAKE2b-256 f36894a1adffde814014d518bc9b831f6d4ea988586442811a017972a92f5fe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9200f5308707b51febce2df10a4b2d628ff9314e24803be8a90b3b29b264efc0
MD5 e8b71a276bdf1f3e9f165e57b0f39f65
BLAKE2b-256 0b82020beb1f776f4564eeb7526c78140a19a079c24794bb170d6c6c9ed9296d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 840d5eb9d7604e3cbdf0c96d25da508706b4ddf62b42856450f723a2540f9e94
MD5 c65723fe6246e8e32d00a092bd53157f
BLAKE2b-256 272e35e85fb6795be8a283ae8c515cc2d8bb9e60d08f37eff84e2592266e897b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc33e1cfb94ed096d2af1c321923e46ce59a772be6483c0579466bfaa68a1662
MD5 bdc616bffedad779800b1b77385f26d0
BLAKE2b-256 5073347b7c3bc45499d775aaf7f46c607cbc535feaf5f0370f7d2e38f7b4937f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 49723131314993805c3e316788b01690b7ce7764f55a3dc1832398872c099122
MD5 8c75fad3e65400b4f78db678525f4416
BLAKE2b-256 24ff8e94135219b4d6cb66d825c116bf7d4e58cfe9c308acb87e34ebb61b0baf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82961f9815487b4c2ec6c7c75d1b37af803fb3422e8fb74508d70619edd82d98
MD5 8b3f30ebc1aada618404678e8e05fa5b
BLAKE2b-256 978cc5ef730dbbd0886818a0fc8e9db17557d0075e2dbb1dba6cf1cd9ff73cf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e09de9a88bf27771f1aa6faff813a43496baff0ce4d1e4e3a364025e3715871f
MD5 6b654f327db98b43101c4f8a881fd3d1
BLAKE2b-256 c351ba5a497b3d4e1ae4a580b1a662a2e5ba45147bbf4d9aaa98de027889c9b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4717a099ca251360411f518b8e912eeb6d1b8b5607c2fca33d289468aa09e633
MD5 770feab91788f4a854ccd62ec073e994
BLAKE2b-256 86cb1b1c935e8cb7c1761e3bce30c5b6df90831e6d383d7e851d025a69a2da77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a23ffb5cad45d2c429ba51945b293361c4490e6ac2c47a668f31b5dd4c7677d
MD5 61c56dc3e081b576d9ff3199375a65f7
BLAKE2b-256 2f17418fa6c85103755a3a8e16a0b752017af22139ee9bf240789c24783ab886

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 e62847074ba29187538e0a44b85396aa989a50f43123ff34984ab8a0b59d6e3a
MD5 1d2d2bc6d7ee9bec502a2786fe316691
BLAKE2b-256 14637c866840eec594207fa4fd584e4ba412031f6366279f62fa4453cd498089

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.2.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 286.1 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.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 ae892aa499a22cc7203596cf566a784d1111ada61812b25c69cf3aebbd77d1c7
MD5 1c79bc42735ba28a0ac0a7688f499764
BLAKE2b-256 df65f34c5c9140bb462bb8ac15c8922f979d713f0503b23fd844b2f007f18f95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bf1b12f7b72d82afab6b36abd15676c92be5137b4e0c1eca27565507b1c691c4
MD5 9a746ea8ef675ea54204a6245d1e581b
BLAKE2b-256 555213cba89e7b66b6a31ed22945acd8e6fce64ff159d35baff9e5a89ee9947c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04b228fe4b5ec5e6d33ae8979ef03844cb5354f9df3ae38762302d2b7a5c234f
MD5 54d5a0aec2734dc8657124052d928075
BLAKE2b-256 9cd5f0442c981854eb062dc0354aaddbc9de530fa45440b76a736ee4c7639d3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5b1e1fb8b92f23f304850b37fffa1449a978177b3a200fe3af4ad6fd3c9d312b
MD5 ea1bef47214f799997d9c0d8f2103603
BLAKE2b-256 57c468aa0a0d432a88486b693c5d398abdfcb3d94589f7fe9a711c7a42bd9f64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8443b3e7f4bb89c43c310806fcc73ade19a687c4b17b8f436dbd3b49385a7066
MD5 a46e78461b46c551fa2d329b685e6749
BLAKE2b-256 315637358483e8f5028a4e46be74af0f261a57a854cadfba35f4408e016caba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4feee237fc4f5cfc6df4e8bef607c122bcfdd12c41d7de4f04715ed192c21fef
MD5 d7db06a88409cefde50b19b7f7fdfdc9
BLAKE2b-256 1ad5f9ce181267e02a08c78e37467181ef7d43202b5ebf4a57c1686abfb5bfc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 27df9ad1d46847463d5516ad29564ac570ebc2ea8934eb532e96d04ea8d16dd1
MD5 c6fe6e925109be2cdbe12e591a8fdfeb
BLAKE2b-256 546964effa7f9d528e77221842174518be9c14a163e4f4dc1f2655d6baa1517c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b52b98e85f483544007bbe161928d7ad5de7dc5df17496c7eecee7dd808fd5c7
MD5 d11a3a373cb833b9cc12c5bb8b2b9838
BLAKE2b-256 690ac86a73716b3973edef1c15f425cbbdf3da4eea43a002945bf0d7e06db273

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 262e76551ad144a19a644a1f72ab3a20c89eb0318cb371a5daaf3cd6c1a9fd71
MD5 b9daada617f5665c56530b4936595efe
BLAKE2b-256 4782a9376ec86e60b79927b1a8e31e7f2d067c61e5581b13b8d92d59174de2dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b639b05e11f85be74eccd5bead6d5e23ae7664870d70b521236c8e92561c27fb
MD5 a4d189d353ac358ef4af14467bafe5d2
BLAKE2b-256 d04d7a15f8ba80cd70f15f86f9e4f812bd93e0a848a4f53f44301855f12ab012

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 48ab15b1036eeb83699d1ca1f6bdb3d402faa2361d31cb10612f61547f074df7
MD5 c2b94a9c64f62850254011b797fa9eec
BLAKE2b-256 ef9d2e56073602732fd7f12645c4a2802df2c9b4d986a51aced5465a50bc2d81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e80dee6fce2564d32318112273ecef363c64919738293e6a2940b325bc8b441c
MD5 9c7f6c9d3383e9968ac9bbe4097b8c4d
BLAKE2b-256 67c0bc9fb7c48cbada742689798706b2392d90e1923479a6eeb4a35263f2360a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0f403c4543b12d785e391e0fc72a7ba7c86f089a4ad297dcedee0d5ef2fe2294
MD5 81b5ca62c61e973782f3f35f616a7bf0
BLAKE2b-256 d08eec6a8c44f9464338bac65a2ad1b91a77700d25e0278fa5e5e3682752d6d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b44af0b230d67a2c3fa917c0076c1ff189450fb367000123263eb96dcd2b40b1
MD5 8aa0e56a6bfde5ca4833348c6ac13b4f
BLAKE2b-256 79dffbd0b096f85a2610f782e5de365c1eb455bc52574b0d329a8670bf23b131

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.2.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 282.2 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.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b41934bef6909e0b43cf5b0b3a3f53ce2fc664c4045d0070db288c470a9ed5e6
MD5 367fb15cdeb455d4911be60d02fbcde3
BLAKE2b-256 0668f784e537acfb7c675163a185efd4818fefab7f5d5f9e670bbc1f83f90a3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33af42f5cc7d6dd317a2882f792944efa79aa5342895e866e055351d300e3a9e
MD5 4b8a3b3315a43032c4ff102ab581fd51
BLAKE2b-256 8bb789f7bde220b2f925db8794b43dfc7d7860ad0953806315e31b968b443107

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a9602d31b3de1d6672cfc5c8d2b75e57e42518353963ceb519d9f693274938ae
MD5 d8a45ffe06d127d34d11f6a2426d888d
BLAKE2b-256 77cde6e86dfe844bab1d3b90fbc47b03b3c46d7e76a671dff8b5ebb7022a9401

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ea9fbeb34195fd20beaf577efc201a81cb9dfe0ebe0e9bcf26eff560081928c8
MD5 b869f90b3e60768555c0cd3f3de8424b
BLAKE2b-256 82a927ac928ec63bbf9e511c3b97d8c88b618728e4a9601b302d0ee549c88c96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71353a5ec5c66243520574bc0d16af7a4f4292ab8b2ce8858319d6dcac148f0a
MD5 417acc2489bf8925004c814355ae50fd
BLAKE2b-256 3464af91d12b1aa69b5f3151d17bbc9f3c794abb57647d7c38914a9bf57d7577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87797d3471b4d4fb047568bf57d08c561d7e78bffbd04dbc2257370c38aa87f9
MD5 3fec62d895b8610694c9aac950b07c2b
BLAKE2b-256 547e4044ae4333a4d7763b92b262d9e609a52669943b0de4af4f7114d188b531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b652bd317bf05f3f05b3654f4bc7e2f2243c497a2d1188fa6f804a51a7cf5907
MD5 0b37929aa570031fb378a4dc629551b1
BLAKE2b-256 36858ba8aed1622a2162a108ffb85e4aa04f8749fd1f9c726c1109862a359733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e1d102637bd9ff618d462c81ab8636987b6da4ddf355919a2edfd303742add3f
MD5 b8eeb23f4fb580a289ec836188650423
BLAKE2b-256 87702aeb84143f23edf6f3ca9a59815bec530951790e585ed904bb77c61f8b3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1bdd3f9a968c85f731674d36fdd2719aeea3a07d1fda9d05be1998572cb7641a
MD5 cfc55ee80e6e405d1d5547f33bfd0c5e
BLAKE2b-256 3e0789510accb8f6141bce4c87281a58f6642d6e097aede0f17df90526f61937

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 894810d111fd549e0e3806df566f6f87fe826ebaa90ed2b6fad945e5a0fda463
MD5 3d9f6bd790cd4402714164c56547ddbe
BLAKE2b-256 4e49026d8d059c85f8469faf378bff5a9de9663661dc7d6c57d7f1080f90c65c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6b802ed63203da38b03cb5945f24c88d91b3007c8eb505974fa63aa8e879f47b
MD5 5f9f5d1f9e00c3dc9db38b1184d88bf7
BLAKE2b-256 2fa72512ee7673c7b5230fbf44b969c2a9545b7062315efdb36ad3f649893d64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79f7612d7a8f62d702399f38706a50d6887074804f9082f9d20ef5e2ad8a934c
MD5 94c3048a47779d31a391155ab95aa1c5
BLAKE2b-256 56ee535571cfe7e9a04cb92ceec0ce15333d0d059bd79097ad5b80275e4f6419

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 95e9de0f0963ee6972c65fb57a6f1ce1067d27a4a3ca7ce7b129d927a87e942b
MD5 a8223cd3ef8cd9f04edd95e6c2792fcb
BLAKE2b-256 8343068b93759c593585d22f77c2d9c0b0327487d908f7bde0a3a0f14381d50c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 4c6cb29ac499078729d216600d0aecc70dcbea40be62d57c66c7241a5f6b9052
MD5 bf60af2d87ebcd9afcb2b69fd67019e3
BLAKE2b-256 2ff7c443ea14994e3e195d1a1030c551553bd4da2f784dd763b0df26f5c509c7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.2.0-cp313-cp313t-win32.whl
  • Upload date:
  • Size: 286.1 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.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 0c5f2e0c1f1d17b942080b54615ccfa6cbfcc82d865e681f043aca4c7227f9bc
MD5 956226933306386fe4ad1da72531d607
BLAKE2b-256 b7c82e2800d352b17e586af068a3b008af1110ba90e418043e972ef949eb009c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9fffc9020f4b4d7513c68dab195477ff6f7e3b9c77905e1057740022d4a18157
MD5 ec20dbdf3dc596caf225a1cd52b0d945
BLAKE2b-256 6340d3f484667c2cbbe7a537ab45727dfd615b908ea0af2f7de73d7f60c14784

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2bad0f2868203da2be865f0b7a7c9617394342c3db577de8c3d955e95317f4b1
MD5 f29d873cd5de6aae07e0373d189099ee
BLAKE2b-256 6ae7952fc037cd26b5b7c9ce1effc4725d1b5153bccdb68bef9b9fa798844eb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 dbf246ea4c99a3f00f1991cd91432ffb88fe434ad9603b8598d5f3aff0f285d9
MD5 38f11651bda52182557e550df9e4d8f1
BLAKE2b-256 683819ffbe11d32c7e3ac5d51a130ec46591d360f145eade26d4d603b694a44d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1b733ee0455106a1f3175c4b7f69b753009ee7c61e22a15886e356cbb1f7d921
MD5 9fa1280830064221454ee6547a8def96
BLAKE2b-256 93f482182e39de7c603e9da4976041ec9067a49fdc42209a0fc05b18e3cb777c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e66dcd8a1ab416431184133b119ed324850cd8b7eeaf9707372727cd40b056bc
MD5 f97eadbc028e0e20022f816a8b3555bd
BLAKE2b-256 8be189e20ec546ad0b0fe4f34f30581f170b31cb0a20b84acc3ee295acb2a2d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 01fca60e681367e31b216d9aafe41299fdc944ae40e62f61bbabb090b4f91911
MD5 b32cf272a5cffb1dad3a0d746646a49d
BLAKE2b-256 96bf2a18def6bf558a7d34e42aabbb50f82c80b722f6b49d03685f176437241c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8dad8d07ebdcd4d1eb6abe558b9618d7a012fb4f40f691609914e13409444acf
MD5 9cb9a1ac8c782bdf6f9aab8b079338a3
BLAKE2b-256 450cf955d1c7065f9f60bf403c88092f6eaa3fa32e9144e2b77276113118e5da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 95ef7f9363e7df87e911caa8c0efa98790b18586cf36adc89368c42812e77384
MD5 6d0684476f55f069bfdb54c5b681f399
BLAKE2b-256 372a0e0d2b5d37df0316c0e925f59168b549e33d1efb85736c8d8ae4e7b5e535

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb617851d86aacc1d25792c2ccfb2e970d306b4d8e2fb651f340316d9b93a017
MD5 0fb67035018a7058503467c75c4c0a93
BLAKE2b-256 0dfd1ed214ad4c0ac4cca016b3a576466d7bd12bc6e590121c7b3a625434cdfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 752cedd4090d2a71ba12c2c957bc803bd95206c109b06a898ff0031f1c18ad8f
MD5 71ea4f4e5a082f8638136d36326429fd
BLAKE2b-256 ce30da6c294ea600d83acf3d101cabde7265f9c611992a9d66b2855a5690ec0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58333236c2b73777d9cbe532f970e7fa6f49dcc086e4f53e20d45e3b6368da5c
MD5 e52b21cd07ec91a50b47af2307530347
BLAKE2b-256 932b6aa2b1c548fc289470675dd12b5cc4abfed5805647a06d49f58fcae155d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f769c8162c2858a49498d8a12201b74ef9d00de86eb89978d887139a1954431
MD5 59da9d9398f5e9f4bc6171678cce3a42
BLAKE2b-256 690fbf83fea2f91c19c914061583f8d61f3f8274f963e74bb8b991f55c2391ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5574825ff843506a06b8ab6fa4ccb16da06846c464fb388dc35f33831d90d153
MD5 638bbfc47d942ff34ce82cbda7e2a6ac
BLAKE2b-256 b12888d423b5778215f9089009679c1732d6008cfc34ba844f57ec99ba7aa0b2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.2.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 286.3 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.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 729ef09a413843cc40444f5e3c5c6a70ba16735d9c3f0e867e16d4ba1908447d
MD5 4ecdbf0def158a5dcd4bb2b1eac76faa
BLAKE2b-256 ab37732da6a844f45224937248ee824c88413cf7a6efb8cb8e1a1dca43b7adb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 daf08b034a75660588efd80371be4681c57b1cbeb7b1a96d36c74a7104457683
MD5 36df0367997815934e04f8686a8c3490
BLAKE2b-256 61475c91d3671a86a4d0f04ae3ff1b1202d4c28baac93e2121424fc3ea60d3c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a05a62d789d7fd73bfad990b9c008b33c0fbc0922d4767661dc8410376d11fa1
MD5 3c3f12aa710394a52508a860616c4739
BLAKE2b-256 27bf75cbf562c27faa11d54680d78ac5f95c7c7779482c14d322833add3ba20a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 658c151fcaf8585ce3519c4232d94a7864687f398e3402d8d5b3a7391f29a86c
MD5 ffe58bc19231d0fb969a34fc52de4b47
BLAKE2b-256 787429aac534fa3bfd1556d246ee52a01ba489802ab1307caa0676733cb28593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc036386d32c4c1ec210178cbfdc5a4ea730285aa208fa1444bb23367430272d
MD5 cff2c0c87b45a11c9524e1a303514372
BLAKE2b-256 f028cdd1d3176f00a0a08ee73535abb28015ba8f1a4db47c02051fe0b28250ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d48631702e4301eb74ba2438383aa0303f80244f8ffc8395f9347497ab3745cc
MD5 1aaa5e78dc8f8a901a0e4bd73cb03846
BLAKE2b-256 8bda156a85aa31e53212262ef2aedd6f60710f7a9ad2fc2e0e5937b3813266c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ebf17acfcf677c6ba7f830d7f00c5d9209c7d949329b6f22d2be1457c6ae64e
MD5 9b3152ad691ccc50876f58fa85c82123
BLAKE2b-256 698f0b048fc0c2dafbaac16e1d42a413e4b5ace7f73f7842a1511a3ab23fee69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f795f4880988de5a2462050ff969e979404ab737883758b4ba0eac04fbdf8bf8
MD5 e6318ad8de53f62da34a5f18ee1a8ced
BLAKE2b-256 6c5816ce3ce549c55c47b707ce1f8d006e00ce9309ebd14a5f9c75c428c8ce58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6bf3d8e63fe1160c2e2aa09456750ba50102694eccc4ecf78d02d003ffd47dae
MD5 683df699b727566291c48421bf2927fd
BLAKE2b-256 9cdf53ba96c43eac47a850d8a0a2651fdd29a6dfd122731e2bcab48d351490a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 606e0833675519b323c71d7afca77b94157c73c44326c0c3373e3efe0fcaadba
MD5 80bd09442b44c630edd4d3cc6988bea4
BLAKE2b-256 86b189e46be92bcf1cd32ae79b8bfdfe9eff39dc249808a4fea8cc221b167d2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 288f53aa0617b75f6fb18e0582b64e51f702a52caa72239a77b76c940a18e523
MD5 48dddd5dbc7ccd61dc656c5f03aff2ff
BLAKE2b-256 ba9f36afbfb75fd49d02b3501c0e71c5730cc5ba6ff4fcfbfd1092e59a9c8729

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fea0d39b002e8fe24ce8006cf19cc33d29ad0129f18fc7d008749b1a1beeb1b
MD5 b626ab66d73541b5d6e6561af1f11877
BLAKE2b-256 eb0d87f802263e907e2caf21f030e229798222ccaee6112273e976872bd86ee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 277867dd460ab1bbdd8c0ba97a90d712fd0eb93e68259174710dff2943d457bf
MD5 37a024b388651ed916bc5e3583d446ef
BLAKE2b-256 463abbae0c6d49c65eb78156d0a398dba2c999f26aabbf00c94f9096a5e90d75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6cc3879a1d1b1ed68e78c0956bf027fa74912167eecfbdc7bbc93d398ff15fb8
MD5 89cd5524532f35bf8d45f38530ca7ead
BLAKE2b-256 26c05354ad30abbb7f290554bc792dd47f7fbdf3366240c9a371fe4a737e335a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.2.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 286.6 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 dce9d3abcda0e432832c5729dab37076ced292ab6fbd7ac9b1a83eaed7f1a98f
MD5 51b998083248ccb8b205806cbaac334c
BLAKE2b-256 b10c424ab4d4b4021ea12a1c34f9874269d0dddda067365126c2ec73f0577977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b19c3ca8a7900897ea75cd23657c1b6d26dfb73d14e1c317cce0d32abec483ff
MD5 d300fabd80581731a543526af2aa9027
BLAKE2b-256 442a9969771be8a5f88c49e60f801e6a0a4876dddfd2b884060c1f5863c162d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f3a9048e2baa64d0992af0510862ed633cd4816d323891d1ec2c00d0f0da4f2d
MD5 340974cc9d2f3ba489c619dfd01e1d56
BLAKE2b-256 96dfc75f51dd5b31aa888ba5c508c35dc912e02c85b57a0d69e6e5fea006055a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 22a3cb97d66a7e1a96fa58b98bdb3c542be31d7845396bf3d08113ca07c21e39
MD5 55f3bfe0d2e5890f7cb904aeb480a60e
BLAKE2b-256 73810876d9dc8501af76e0dea6fd5fea1707ca52f93f3dbcdfdf7f3dcb346204

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1c5161a864b8831b7b497ffacc26a9dbc26c30457994d8e01bc4547f84c0aced
MD5 d9da71ab7e8c3a9648c0096356998a35
BLAKE2b-256 f06443c4a3f07c4900d1e762a6465082ec50372a2cd070bbc435f009e0c2f12a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79c0413a1ff7a176e0e2b55e563f7f4b508c94846d8f737c115e9cb95aa2b915
MD5 337156ee04d11b23fe61ccca4a959a56
BLAKE2b-256 fcdf4e21d95fc23f2caee9b1c7aed848c50f059b02acbcfe4f38c0a8975bd379

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f143a186b2d1ebf4bd5f86dfc7e85b510005e59417946f902da4d07cf18aa7b7
MD5 6abb55be40cbe3479cadf34f084e8e71
BLAKE2b-256 eb7fc01cff0d1e54fd7ced4c33753c98c0cb786e3d1cbe39c3b3469a06d034d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 55bb384677c3c5b47193ad56cc84faf57cd01a781ec1d226b3f903273b1acc00
MD5 7318d2593fc7bfaf0b6d846b124e9f35
BLAKE2b-256 05084342f4304d1e5b13c25da4cc5ee001886a54a499e9c64eb2e05095f38c56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6e29beb0edb4a8be4d1e4045d7a62d91f133d5726cfa74be55de72d648c288a2
MD5 c963edced184967e16393a47eaf655d8
BLAKE2b-256 654a91ef4bdbadb832f9b0fa31b8029c93c61107cc0c8c9abcbd7dbe2ea2c32f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ddd25d1b550ad0eb42a2a70d5a9331f367eb6888b29e44860a28883751abf7d
MD5 b19d69c70ece48367835c66b43e6a3d6
BLAKE2b-256 90d7dbe33f545c243ffae03745a7ad5dc1097cbf857aa34ef905cc0b4c72fbd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1d8c1d5ec8762999b58de4de336953da3debc8d5f016513375631a186dab18e
MD5 ec21447308d3a26fb75019054018d72c
BLAKE2b-256 b6b5250e0dd308c2502845b8eb8c092559e8e82355314a23523d8999d5692bdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f931f803dc30c9ed537117bfffb1bd8e0fc9ce5058d143ef53ccadefac7d5f94
MD5 40484178eb297d514551ea47d950119f
BLAKE2b-256 961b2d3914449fc7f95a88db48da71d3330faeea8f8d9a2810a651cfde512309

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 145d4c954c908f224e077e049652e07233c06bbded018a0b2ab4ced24a516d7b
MD5 3341255f020cdf4988760d7d1f972cd1
BLAKE2b-256 cf3b7b4257ba1f4ff37dba44c887079d1d60800ef9a84ba11ec3646a31c293d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a856dead893832bc05b6d05521892331c5502f65583d84206e257b16166b2b18
MD5 70e62fb17f502d58add3001ae620853e
BLAKE2b-256 08e1ea6432ac66e34da29c68b101c8629b13279e03ac45586fc4b356c21d37bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 272.1 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 53171305c7449fa91420bc56d0145bdd959f4630729fe98487594a57829a6f88
MD5 6ede05f191509e1f5e7d8d926f794c29
BLAKE2b-256 19d64756ec1d42c735fe612d25bb1fdfb0fdbaca78f00b956a5be9e080b2fe28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0ef543d42c7d2d7a7ae8d8af957d0c33bb8d6e133e253149f2cefa4587a2e02
MD5 479e1894d29dd143c06b6bcca6e528ac
BLAKE2b-256 96a92d73ca7d28f55b6b347dc40c496fb4c2e3dde8ce26a3cda7e98965f8c252

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 81f73994103cdfe9fdc51326395252b4ac1bed7bc613fabe720cb6b235d8d245
MD5 2588b1782fa0e476eccdf4fd26ba071a
BLAKE2b-256 c17769b950b3960aa0d1522dc79e694a2993ffc4a4e94144c4f9e654bbfc4ebd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3a262d4ebed4fb7bfc17163fc46618b666dc3b126ceefb238ba7a3c1f179d4ce
MD5 10a7b042d2ab6691292163533b4eb612
BLAKE2b-256 df881b56223cc71ea7006c9447babafab7752322215ff2c6b416a17842218091

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89c9004b059f2d0b3e62627f50db95fe624ceefa2147512a2e782455e4ad0531
MD5 31388d3d2ac4db260d3eb4505dde0334
BLAKE2b-256 1a424383263e162a341ccd29a4f57e14fc658fd27b0eb46c1588b4aebbf2ed85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9c72564f9a270c5340f380ee76a4e06202b1f484077897969841ad192489dd1
MD5 7139e5412890c4d8854ced886b41376e
BLAKE2b-256 cbe3952137883a20ae2e2f0a699951b4a1f0169284c3eb1d6d53fd000d18103a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a15d9aa993705a8a97aa3f80f53fef45b4ed487da3b5a89b95261c7663f5b852
MD5 cd02e6bb98562f139899b291af223567
BLAKE2b-256 740bb7c5ad075937c716be65576b69210052c708a911558388627e736aa49a52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3857223f88f474e2af2963747f994c7a2e5b7133ea66099f1f559ddefe29588b
MD5 308b63306e1bdbb3c66b7afc3912a9a0
BLAKE2b-256 95c769ce58b2e5994179bfa3f283bebb950a7f945f757bc3b67e628ecea9d25d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 afa392086e0bcdcbd50dcc391141096883a9bc8846b52cff669e61a9276999de
MD5 05a58c79ca8fe514b15efd386b10d9aa
BLAKE2b-256 4e874895f1b6c6bd0cf7dcbb3b413e239f9a44c917e3a513059040ffbb1e2329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e899ac96b89cf59fe1eda6268e3dd6fed52202f900cf1394571bacb0bc01857
MD5 95a80e792a9663b8b009c92a6af3a743
BLAKE2b-256 9c015743851502e58cd31b675d6b59917d573d4d7fcdcbae4ff910d2ac3bcf1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bc032043cba15259178157c70dfd4de18a3cfd1255b3dd9f4b8f265ea9ca9060
MD5 f23606a2ef4355bb2bf620ace025dd78
BLAKE2b-256 95f96f016a72fffdda1d5138150a8db278f61878f5247716485f2701ebd6be2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9398416684bce7502d10b30eb8dcec2aa6d6bd7117cf2dba80836dfb51c26efa
MD5 457a406bb53ea7709fd20ab992b4a4b1
BLAKE2b-256 d0ad326237b4d8b4c3bd3c6929bcaae77e42bd5ca01e310279942170a5731be7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f3940b3cf075ce2734b1d0b2ad84edd19236796bc6155d71c4ec2488ac39929
MD5 b27a9e3ea924664cc489f476d8098390
BLAKE2b-256 69e2cc8c8fe7c6933a928af5589672f6cae7fb8f9ef85b59257e90067b75c25b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9d488b81f476f3a87bea625e1e4691ec4f0215b33a7af33ae962d0db595f87bf
MD5 37f3f57f7123edd974e93b89f1cd1979
BLAKE2b-256 a2d6ad7e76b478f5af941da14617d086d3e0185985bb1fe8ac0b9e9ce0c64d85

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 272.2 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 57f7c481600b2a0a51354cac40269c8a5eaf9cb85c6a566b4b9ae3455a5e4b7b
MD5 f6734ca6f90c4d182f7ee1e19239fcd7
BLAKE2b-256 b5567f7119cae80bad550d543adb25f9e0bcd4363a06126bd13d4e631f9d88b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c9e85bab9f7db37da8a607b25a68044133a0453b918b1a3b32d0e9fc99f1c82
MD5 b4639b2b0eb5dd3d339450b15075e439
BLAKE2b-256 390403d4dd744dabf51bb39b5d5c26dd7e6e27d03a717bbe06847485610b2d72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 caccde5bce0b0387ec3a3b038a0219d0ee0bd92874457467b3089661c9ef4602
MD5 eca57cb963acf5b58d52beaa00ed9417
BLAKE2b-256 b09c991c5277975bd2917196bb5841d194bfa0c468441edecb67c1b49e1dd3f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e89bf17bdd10bc892119ea4cb97f4063c6ec2b9d920137373b6d912b2d2a9209
MD5 7c48fbe2ecf88f791e356c3b9bad2b58
BLAKE2b-256 c949261c6881e008c4517102857b7614a5424a3a4589f7f6320898aa5bee7a7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a80890469781c0ef4de834e6adfbb8fee4d25935be36e3231e9068ea0ca4714e
MD5 245a2e955117ded1ae1d472d7613f7f9
BLAKE2b-256 1ed1cada92f4d755e00716803f167bd074bb6b452e3c0d2f2c8e0ecf536032a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8baa062826140883646d6bc73b5ab30b2cc6db6337d9bcf89a5c42fab374906
MD5 007990b54e788ed1bf801fe039908f0c
BLAKE2b-256 c70959131658f7256236cd60058b22cc437d76ea1bfb2f85c6101314157fa305

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ed243391fae2943121bac74f53836e04f466b4b3fb4e5b6a636199d37786bd4
MD5 a4f7ab285f694885b8d7aa612be20d21
BLAKE2b-256 399ec4e8adbccaa0620cba59b8efa097d49bb39c8fe9c9baddc4da0b567538b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9bcfd3dbf811e9ff8b6215dbde330df10b5baf39b414cdca4217cb2738b360ac
MD5 88ad6f75159b2b30d0c2521576bf8481
BLAKE2b-256 b40b9a1a70b1bb17292c3da0858a6e827b72473fa0cfb6400e5f2c5d39613115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c7ba24df95a49fdb8a1fd2b5f1ceefc4c3bb4ab38d6f6efce84c4f9878a9e3cb
MD5 ce44d6f4241f0b66cd392c9cfe36d9ca
BLAKE2b-256 24fd6994c31258f02837cc7b685a25b7a9a84f132a9f7a9099d3696ee3d6ca3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e78752e39737522a584f81dd6df55d8915b789ac78de8105d041f7d7a3055215
MD5 6370b9a40bd91f117e9089beb44d257c
BLAKE2b-256 5cd73b28f44a037b94d291be28ea64ea84e9bfa3bf0f273deaec5fb2e1eec15f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 80e3e77e6afa94680ed74336922446496354803c934d61dbeacb157a23bad73a
MD5 199deef8151a5f8131f2a52dde226b41
BLAKE2b-256 dcf4530f76a7737cdeff4003af62cec85b7a8cdc82e2913ec5cc4681829e84ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d89082331ab05468ae6b43b023d3bc6d202a33975deb7f7df81fd128df7c2b0
MD5 cb4e98c30b328a82aa375db23e8a9d85
BLAKE2b-256 b753f5cdcf395e6a5565abd627d6c88c92eac0fed0ad1161fde35e763cc08781

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.2.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e3277add861dd266663b81866084388c407db0412ef3aaab97433b000814f0b4
MD5 2e4137142a766f1fba1fdad5894c2f55
BLAKE2b-256 318dd940f0965651382304925ba38dd05bfbfc052081218afe7c5c2ef3ce33b7

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