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.
  • cachedmethod: this is excatly works like cached(), but ignores self parameters in hashing and key making.
  • 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()

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

[!NOTE]
Recommended use cached method for @staticmethods and use cachedmethod for @classmethods; And set copy_level parameter to 2 on @classmethods.

class MyClass:
  def __init__(self, num: int) -> None:
      self.num = num

  @classmethod
  @cachedmethod({}, copy_level=2)
  def class_func(cls, num: int):
      return cls(num)

  @staticmethod
  @cached({})
  def static_func(num: int):
      return num * 5

[!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.

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.0.2.tar.gz (64.0 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.0.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (517.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cachebox-5.0.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (541.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cachebox-5.0.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (607.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cachebox-5.0.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (499.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

cachebox-5.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cachebox-5.0.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cachebox-5.0.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cachebox-5.0.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (342.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cachebox-5.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cachebox-5.0.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (364.9 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

cachebox-5.0.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (517.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cachebox-5.0.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (541.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cachebox-5.0.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (608.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cachebox-5.0.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (500.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

cachebox-5.0.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cachebox-5.0.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (365.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cachebox-5.0.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (343.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cachebox-5.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cachebox-5.0.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (517.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cachebox-5.0.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (541.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cachebox-5.0.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (608.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cachebox-5.0.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (499.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

cachebox-5.0.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cachebox-5.0.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (365.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cachebox-5.0.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (343.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cachebox-5.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cachebox-5.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (355.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cachebox-5.0.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (381.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

cachebox-5.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl (520.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

cachebox-5.0.2-cp313-cp313t-musllinux_1_2_i686.whl (549.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

cachebox-5.0.2-cp313-cp313t-musllinux_1_2_armv7l.whl (605.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

cachebox-5.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl (496.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

cachebox-5.0.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

cachebox-5.0.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (361.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

cachebox-5.0.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (340.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

cachebox-5.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

cachebox-5.0.2-cp313-cp313-win_amd64.whl (242.3 kB view details)

Uploaded CPython 3.13Windows x86-64

cachebox-5.0.2-cp313-cp313-win32.whl (233.9 kB view details)

Uploaded CPython 3.13Windows x86

cachebox-5.0.2-cp313-cp313-musllinux_1_2_x86_64.whl (524.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cachebox-5.0.2-cp313-cp313-musllinux_1_2_i686.whl (553.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cachebox-5.0.2-cp313-cp313-musllinux_1_2_armv7l.whl (606.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

cachebox-5.0.2-cp313-cp313-musllinux_1_2_aarch64.whl (499.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cachebox-5.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cachebox-5.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cachebox-5.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (362.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cachebox-5.0.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (341.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cachebox-5.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cachebox-5.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (379.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

cachebox-5.0.2-cp313-cp313-macosx_11_0_arm64.whl (295.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cachebox-5.0.2-cp313-cp313-macosx_10_12_x86_64.whl (326.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cachebox-5.0.2-cp312-cp312-win_amd64.whl (242.7 kB view details)

Uploaded CPython 3.12Windows x86-64

cachebox-5.0.2-cp312-cp312-musllinux_1_2_x86_64.whl (525.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cachebox-5.0.2-cp312-cp312-musllinux_1_2_i686.whl (554.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cachebox-5.0.2-cp312-cp312-musllinux_1_2_armv7l.whl (607.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

cachebox-5.0.2-cp312-cp312-musllinux_1_2_aarch64.whl (499.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cachebox-5.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cachebox-5.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (402.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cachebox-5.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (362.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cachebox-5.0.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (341.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cachebox-5.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cachebox-5.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (380.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

cachebox-5.0.2-cp312-cp312-macosx_11_0_arm64.whl (295.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cachebox-5.0.2-cp312-cp312-macosx_10_12_x86_64.whl (326.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cachebox-5.0.2-cp311-cp311-win_amd64.whl (234.7 kB view details)

Uploaded CPython 3.11Windows x86-64

cachebox-5.0.2-cp311-cp311-musllinux_1_2_x86_64.whl (516.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cachebox-5.0.2-cp311-cp311-musllinux_1_2_i686.whl (540.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cachebox-5.0.2-cp311-cp311-musllinux_1_2_armv7l.whl (607.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

cachebox-5.0.2-cp311-cp311-musllinux_1_2_aarch64.whl (499.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cachebox-5.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cachebox-5.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (396.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cachebox-5.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cachebox-5.0.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (341.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cachebox-5.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (318.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cachebox-5.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (364.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

cachebox-5.0.2-cp311-cp311-macosx_11_0_arm64.whl (299.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cachebox-5.0.2-cp311-cp311-macosx_10_12_x86_64.whl (331.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cachebox-5.0.2-cp310-cp310-win_amd64.whl (234.9 kB view details)

Uploaded CPython 3.10Windows x86-64

cachebox-5.0.2-cp310-cp310-musllinux_1_2_x86_64.whl (516.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cachebox-5.0.2-cp310-cp310-musllinux_1_2_i686.whl (541.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cachebox-5.0.2-cp310-cp310-musllinux_1_2_armv7l.whl (607.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

cachebox-5.0.2-cp310-cp310-musllinux_1_2_aarch64.whl (499.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cachebox-5.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cachebox-5.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (396.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cachebox-5.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (365.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cachebox-5.0.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (342.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cachebox-5.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cachebox-5.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (364.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

cachebox-5.0.2-cp39-cp39-win_amd64.whl (235.4 kB view details)

Uploaded CPython 3.9Windows x86-64

cachebox-5.0.2-cp39-cp39-musllinux_1_2_x86_64.whl (517.1 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

cachebox-5.0.2-cp39-cp39-musllinux_1_2_i686.whl (541.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

cachebox-5.0.2-cp39-cp39-musllinux_1_2_armv7l.whl (608.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

cachebox-5.0.2-cp39-cp39-musllinux_1_2_aarch64.whl (499.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

cachebox-5.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

cachebox-5.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

cachebox-5.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (366.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

cachebox-5.0.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (343.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

cachebox-5.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

cachebox-5.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (365.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for cachebox-5.0.2.tar.gz
Algorithm Hash digest
SHA256 1ad837dea82329aeda81e40e7de78fe81bf7c0fbb2355377966e62369a7985ed
MD5 c658a339eb5ef5fcb5f99f5f9deacfef
BLAKE2b-256 704c6c9ccd7cf776c346a2ecd7266762581e6e49961f12a6a8de62fb84496b1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7f02315c4543b8b44acee3a8c2816bee9994fa30fef688a940d187609dd00e15
MD5 e375f95f8e9ec333aa70cbeccf2a8bb9
BLAKE2b-256 462461a0603387770bfd5bf765a06cd7ae45d48069ddb18a6cdf14349597a44d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 375b915a2cdc93c88154ca3b3babc852a324712d1efdefa4eaed82765e1f286d
MD5 af3b0f1b2ffd35c7477f46c68cf935d8
BLAKE2b-256 63c73c8e6b9088cb3a285db0939a210c62e0ff8c3a895d2a6bce0889792b997d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8a098669caa367976463baf8e7dbe785d3cb9598c4a7afdb97c68404901cf750
MD5 4dfa31ed9560733e82f06636e03be92d
BLAKE2b-256 3a40953b3b68b0e0469b4f84934d42d6197942fabcab93da151dd353354ce321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f125f3606e4dd4db5349e3c493c5ae8c67e34ecb6ca6651f945f6d76eb0e0974
MD5 37de0b0e139af70427042474c332fa75
BLAKE2b-256 33810dfef592655b38168095b535480670105ad722e0a52700e00dd282f529e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de2334b4d9342501d2794b3cdb64ef01ee14cac4369ce947bb92d7303019c68f
MD5 e0455f890f252b0d3befe3138c077bbf
BLAKE2b-256 fe522787c32cf63828da76d0170ddd216f0aabb330f7094d3f1ab879261e9165

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b76a14be74c4eb91aadd93fcf1827ac8c6a3688e4bc9c5b3887de847cb426e32
MD5 8e0035d4a617fc0766d6efd9cc7dac6a
BLAKE2b-256 05a3c8b3b44e70fb7b993d2ca20dc27ccd4f795566741ed655115705753bf9de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 09b275cda4b0a7e614d23dfd89d34520cedaa5865b1241ecfcada38df380003e
MD5 19fe2d4a397b90601ad711f39d94d2bf
BLAKE2b-256 46898c1c647d3c0223a91d0a1c8f9ecace7d1ccbfbdb97fc41721bbb04b62119

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a45e385b4dbc4cabacd4f1cb36ee44d55a3d95a9152659d2f81bfdbf0bb34420
MD5 d76360e7bf4f66b35fa750404f92461b
BLAKE2b-256 2fbcc0a9a1d9082bd64b49711d50c2ba5179b1511fb4f8e5e8486aba56ac00f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dbb4b135bfcaccc76344079dd8e94eaf7bbf1058aae3b44c9e18fea3ba3a676b
MD5 293c135cad38bc20712ada5832261e96
BLAKE2b-256 ab1bfefac358614653312925ba78b457fd021321cbd38dd068cf3704af337f0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 edafba76f03d30b69356bc7c39ea3e5a50d721c192204486147abb4b823b7e08
MD5 900d609924bee1b2971f212e82b872e1
BLAKE2b-256 7440c7870ffb8c3d31f098b7468c1605a5662af0c95621381bdfafe723b7a3b8

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9f514b3410259bfd5e71c4c5aa9033a2e35749889ae9037a8683ce28d6f29697
MD5 b1de84d297a60a3a85197839cba93152
BLAKE2b-256 bd7827118ada9902a7f765434f7f1b2c6274547dd4ce57559543e9b481de5a2d

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f1f4fd284e16659bd1efdf6a87118e1c384cd5a1429d1afe33d9cd7ce7f9e53
MD5 3570b642863caa0fc512d82d9f4944fc
BLAKE2b-256 a9c9b4d919858d48299c0caa519f31903347ac605770aa54bbfe56886ef45726

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d7185e821f1cf613ea6921dc1f436acce281d72fc8662d27f46719f6e147f71e
MD5 00a7fe9f8405c54b49d52d908da00d13
BLAKE2b-256 ad5ca4eddac038a659598daab712fef356a887edadacd55ad83bb5f1b365bd61

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1ee27c46fb815c8545928997ba7d39f726195d49733d1cf0520c263c55ec920
MD5 38eae4d2ab661786428a7b180a20a572
BLAKE2b-256 eb17695ffcf8bf27748a2657dd32792651a2bf4f2c763d00abcb91953842b5b2

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 93e6f7d9407e2272c435bbb831dbb0f6877af2f88b2de37d310a23958f602888
MD5 f97963997a809d28ce471717cdbb1421
BLAKE2b-256 3a10aada32b67e72fb7f442c3926c9ab82df87ef6e9dd689967d9e729c524df6

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 989dfdc9693b3683b24d16f50dd7f091bbf3a4ea4050f245713f4917696afa34
MD5 e06407c16a4cbdcfd7e3a6292da05159
BLAKE2b-256 709daef1dd1b145bfa78359223441eb910676d583766e81b52916c56c66f28cd

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f44aee3376f6e61378b3c750c22439409cde54ec6eca27ff4f89baf1630f6750
MD5 795a09b864e14aee522d221b8380b4f4
BLAKE2b-256 6577d6c561a3357597d1a6e0b930c7ce672445dc39d0bb4821a2106afec2db1d

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98494a7caec56a0e5efc29ae0987aa5ffd9391b748f835f6224102f5521fa071
MD5 7069c8695b89f7d97862eb947723b85c
BLAKE2b-256 b02b7cd78b6744a9115694b7395b2b885ce4c9543a438888ce920f1a091e1cd7

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97a199ca95d647ec846145a5a92e909205bd869ba633f8d31ce7cad9e0031b52
MD5 7b5267aee154079d510c37f5fb99aa67
BLAKE2b-256 1d689c30f39c24574de2898679de190d5f31324a1bc6e309d91fa0631b125b46

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e0a75d1de8427d74b9d00c65f4df108a838bbf670660fc5321877ab81809734a
MD5 fb061fd8bad85790b4b5d65bb9b3064a
BLAKE2b-256 c77057bf6c80a09710dcd7bd65f2647da74ad139a7cf97d23b921a3f16cb0104

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ac43735112e9e38505c2fc434caf4810656fa800e95483a880c77b0decd2925c
MD5 b79beb477d1daaa5bcc8f036db51902c
BLAKE2b-256 f94cada67339ee77626e83c34c7ee933a27960e860d4e42552e981482c4252c7

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f9eedaad5b404b84fed6bb61caf30746ea33478532f67e1f262922daff22332
MD5 1ebd8a43b8177be41f2e72b4ff92ee4a
BLAKE2b-256 4b3dc3c0f48aa6c102788a0ee4dce64fe09aa99915e6e281b0d3662c16502264

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 993b77f5f82f50d9aeb079ac06fb5de4ba22a753d880a61a78b3074937a08b3d
MD5 b0993a66658b47ea1d0e9b2955e109db
BLAKE2b-256 aefbd4e1f3ebae373baa37857b81951f55e391f366c996545a5d749f69c7fe20

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 87b78b14680c47c555f9c7edb8dddccf04545c10edb78ef44600fe2ab2a0ffea
MD5 f9eb520a8c00675bccbbf79b48c86a92
BLAKE2b-256 77d3fe8d7129ade0b94c43d174f679e62f9c63736077963cc2142be250390470

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 da1a6249b0d7abcb7b3a8e40506ea8eb140f213c3f5969018d9c8c8d59e6541c
MD5 6d42e64e715e4b96c78d5d68dc09b1b8
BLAKE2b-256 aebafe0b11ba72c9f2d962bb68a88af8c0d50a4e9abf7c87e2d2c03c9773995e

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6651006ded324a8a298bd8b3f8df3d85abebeb0cf7fe1753e279ca5ccf15058
MD5 7e049aa875ed64b2e89c2b441c7eb3d7
BLAKE2b-256 40a020145a62acc895a07cb97aaf28b1f0eb53b8b3de4150ad6da248594f8942

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9465200a8ccd5a944caf6a07f564fa877fc2b13e95f9834e75dfe6dc4efe717a
MD5 6e8416b04bf34dd98d03ea7553f2af69
BLAKE2b-256 6816d1ca354f8c3fa8502ffcc6af33586f746e8d77b2a4c0641d48a2dbbfa240

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5e186f7d8a3d52f79658efde9f772cf98721f29d7b7af225d693b11049ceca87
MD5 50ae165c0dee676689d7e1543aa74414
BLAKE2b-256 59a18125622d264e3b45b2c314e75658b95ecafd710675f9de76820269c06ff6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a53737f43ffb06c1f4e8c4166eaeb7538de692bb8c9cbcae25a173662666403b
MD5 9c9cbe1b81a6e07386d23d8f9c4873c3
BLAKE2b-256 366df303fb53c44810bf9f56508ea1988e02326713417cde97c59d13e0bc6865

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fc2a682faa93d8b43b756f2616fb21cc82faa81f8ba220db5ca19cab14aa6c9d
MD5 27b157042fa3bf9ffcc0bfb3b89b88cb
BLAKE2b-256 5119f8a474a15cbc1548a9f388164a959b22cd8215c77acb38e2aa8936f239bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ee3a70cf1a9279c837901e34ba1fffc64cbd544016fbd851ab6ace9ca9fbe6dc
MD5 f8ff7ae06d2b4dd9598ce3c8c6b10110
BLAKE2b-256 e4d4aeb32bd6c38b1678451f4606a03de29efa69161b21ee405dd7aab858db2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eabd3fdd02668016c47ce61c7307da7bc522bdc7c33def24d6d1099116e4a1a9
MD5 8215295c185f14da96aef06f5bb705e9
BLAKE2b-256 cb7c1a7d4aba457e0b6f81f90db1a7bf1bd46995bfccfba1f2b7496946faf122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d044120c6e832a9ae17e6916d9a84d8aeffc824b0934407e857fc98eaecab29
MD5 31f7d1ceef34ba9f598197738fc7682a
BLAKE2b-256 a5363b6f855f8a577dd1c40d35ebe3cd185b81291a3090b712e25f03842e067c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db9eba465691059b9c7db805b5266aa62dfdb3790484bfc90471b40a72704e29
MD5 45d40e8b12bdd7d642521aa509c89bc0
BLAKE2b-256 1795284e439be5deb6319aca3a2f7cfdd1055c21ad71ec6f83dcdcfeb07aa8cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 28a6f413b4f57a6458b93f8774adeff07b216c2749f6aa10e99c7a7515158726
MD5 9f919b090ed56fe22927dcf068321b7a
BLAKE2b-256 c54328294c1e12affefca79022daf87aae6a021aa317dc907beb7684625d76e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc86f1852d8ad97d9ff9413093f903036665551fa1e4fbaf96c765814a7cf0b0
MD5 93fe848a770b4292e812c948d0670556
BLAKE2b-256 c7a33c03f768d1f99d12bb4ebeade43799343563e1109ebc5cb669e884276eba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3f7f02c90be031805d8e9937d76c384ac6eb36070ba84e36bf2638117d612ae1
MD5 1bdb5f83099702d1dda226321bc8769e
BLAKE2b-256 b91d72eebb78dd67424a80db7c2d056ea07534e3b34fe6e6f03a49984b56a85c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-5.0.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7ee45f7241ffb77ac38380f2c902371ca5046956fc1f6720138b2d14e638097c
MD5 042642bbe64da573f0a8347143182eb2
BLAKE2b-256 6d8bcea850214f2cb10c8d45aabcfc1971970bcbb98ebd05fa9ac03391fb2f49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0094b374a337d8c339f80651a26ff64212f013180b446ea650a621f9479268fc
MD5 b9ed687fb0b3cd7b61d0a69520cb4e87
BLAKE2b-256 69914fd759df811bf82e15e1ab497b924f253b7a24c934065d54293099841cb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2706ed2b333183664d59fe712257a0a423d683689ddeef9becc359aa720f10cf
MD5 812efecc1b10b59fc91f44ada066afd3
BLAKE2b-256 e0616305b53cce9e90ad05c1617a189f545c0b5d03bb8a0fd774a4efe510dea0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4b628ce5c44d5eae7da4ac9b7eb814966d17ab19d76b3cd257f9188a2a64caa0
MD5 fc4fc9d899e10e815b4604d5bc379ede
BLAKE2b-256 77252c2b4be9500336f5580f83ce3573891b077ebbe69bef13aae9c44a28e11a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f071b07cae93eca227a4cc6a8a7bd249316b4acccf0286a6d3029ae0b2e8f3c
MD5 05c1360e9b17c3abdd1f5325e650f864
BLAKE2b-256 1613525c4268c623ec2487979ed6b669759028432858da9c0a6d23a1dcce3de1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c08e8a1cc74a33b9d6a5a75d6447ffcd5c053d24cafe2a9396a00f3ef5a782ad
MD5 35c2d52ee69d3c9786a3d43ae246e3a2
BLAKE2b-256 ff588fe712e9ca2c009595186393ea8b3f3543778fcbaf514fcf2d50d21daf9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1b8029620be5b2ddcb48febcea330d27fe62278e5110d351a0fbccad76e4d8e
MD5 3c1c41deed38d0e30aa15cefb8a8fe39
BLAKE2b-256 57be4a64d4cbee2ace2a0c0e542da6562fecab4b7d4a32f40d8ba29d0b881de7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f3193b54bd2d82fe15b13c2889e721acdbe39eae8231b669c4a42b120d13a0c3
MD5 675826b7217b8c9496c50f942a94a9e0
BLAKE2b-256 6f01072e4d190fe7071b6c7817e7efe34e6c8cf5cdd3e40ae07154ec086ca915

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b858c5d50e8a73d9e3a4e566293fe560c119780f706823f0f5963151b93773f9
MD5 2d8f7b48c4394c8baa615b458ad0204c
BLAKE2b-256 8bbe7af017ab5bcc9b614177a3f6d6fc186578567b1f6b6e3c61a90572654e0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa27b4f6825a14e8dee02274291dbec86f797f8cab1ae0209e83cdef51ffb332
MD5 f0d6d4135ce8a5751639cf6b93767a76
BLAKE2b-256 efe71793ae515def21e5f5a4b2395ef66341aa5be545d5199f1da753295e92fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c5c9df5334f4a816e352621cc6e758e5c7a4843543ef591c5ee6e63a70c48098
MD5 ef8d721677f0e30c2323c271ca434c81
BLAKE2b-256 0295de5bb2e97c625250ff4158607bebdc7dbbff619e7cc89b96513b4752b32a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8de0ef22f7ea6cc643fe3c48812c1396c836767bafc95c6dcedfe1cd3df34643
MD5 801c65fbb3ac78c71d8c6257a9c19582
BLAKE2b-256 d16cfec1da24a7386607a5c7b1e833252bb7377e04ebe3ac181e3683442d38f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 27b341c6ad5c5579d52beecde8e413a72471b406c212ba28039239059e59b39e
MD5 4339f589baa293bbf89b6e0f6e50e288
BLAKE2b-256 e8a0272e0cdbd035c93269628d562abd1de9c9745821742ed2bd99efbb9a7067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 62e8b1e9628d566ce7604a815b6f3610889a400e97369bc735b2343e9ad97aac
MD5 9715c3b925ab88dfcff5a2d22c0ac929
BLAKE2b-256 ae4e5e702b9b5245a79cdc01f2ed680f177aedb8497a68e6b0749892cfb31f5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 280056b9e6a2fdb3a8f04b504b5adc54d92c6b948faa56c92fddc67a55a05d8c
MD5 83699797672fe32bdeeb4083185d63d0
BLAKE2b-256 b6f48f42872025d93119ffd32e3a2162c19c6ae449654e4a349a1e032c030a9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a91f27da7a86398dd231a45e5b4649c830ae295a1ba3f20845c4a5c2fd61a624
MD5 eaeaf8649d487735a8fd6b75cc8bb974
BLAKE2b-256 977e0b814d783154a03885f8a6f829c02f865ec71a53d7a0b791f98b1cd7853d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a63e747eef0e0190e475b2546a2385b940777eb67b0338456fbeb36547e8923f
MD5 6b63ef2bab3e7df55fcc25057e64ad2a
BLAKE2b-256 ca88ea9166e6786fa68cfa26b9bd9f8e27fe2f92221bb41ac7f4f29a3416bac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c87bec41b9e674cf9a2ca18fa58551118f67b735e16002916a25209586f7a034
MD5 b2b6dcc5882fdd2e54c869df0d2c8fff
BLAKE2b-256 1c79972cf565aff0d9b11bd69aec0e00f100ff6d2e2b1436265274ff96cd7128

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f3568d42ff08b2b11aa453c1d45bdae2c6fe3ae290e5c6daa030099ae566a09
MD5 ab35320139014bd14e70bcc101e9a9c3
BLAKE2b-256 54328e0a9e6e2692803ebfb2ac8c02cc9bc53838a16461543603decaf1338825

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 69ee3b96b89ef8e6f9c9b4ed1b7ce99f40f8bef583a4b66d0ae73a1ec8c5dc0d
MD5 48f71f92e7ef470aa9d5dd42c3130913
BLAKE2b-256 96d79bbb894a0af23aa19f126bf71403e07edad7523ce6a31565908573d12759

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 06171d2f05350515ef325610ddca2635afc470decf5b5920995fc069c16f86e1
MD5 f0b2ccff1e4607a9db73c3dc0b560fa8
BLAKE2b-256 f9f01f6448cb61a4e250c618012ce361f67c6fd42d86cc985408c05365046c36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 06930b485f0b5487b7002ea4e530007f91427d880bd558d3850371e6144b50ac
MD5 37658836fb7584a7da1d692f4367ac9c
BLAKE2b-256 2419463f540bb1ebe803af8c5732456dfa5ba4bd1bc8a04085f8af92333896cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60880b7bfb23ce8b5026965a747aacd9b2ce658241fd72cef4d3f12b6124463b
MD5 0bbd9c8a2ec436a3a2a64183ff0457cc
BLAKE2b-256 b648f1541e272b019571c8631b25261ce7a1e0bf808831b4319191203eda5e45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 50fd8224aef0408f1e046643d215bd149cf732191caa9d94393d1d143414e731
MD5 95f5df9dd5d911d0d52e7da7a7073d11
BLAKE2b-256 0ddce3dd0a5694166498d0af5833b69604c6a30667e2535e5614a1e339bb8d71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a3778a2798a23805d074833eeda30f165f918d24b7eae55a483698cffddaef4
MD5 692126b6b9ff3f077feebd0a3a7df5fe
BLAKE2b-256 e3db7c7519aac6358694c06bcde1d08d7489f7e7677711da08ee32b1fe8cbd30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0c9c82cda834877881436d6b61d8cac8a35184ca5625300f1eaf7c9fe3bc98ee
MD5 c8c6469b7f982ee8b9f3debd3e838e77
BLAKE2b-256 db7afc7761d19766581c82023d6e8c381a27b46bfa41cceba8e5a0ee674b3525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1cf4258d925039bcb0d2064422088daa77db919a1c300fed58787e3085310e3c
MD5 cec7b1fac676fb37d3d47c2cf4b91b71
BLAKE2b-256 a96e6387e8abbc5d474a76f52f06dec2491ef726490f7cc4db7f837fcf75ec12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9041595f3bf04cc17e3c15218d101aa7566b1a680a4fe7282b5d6c053b15d0e
MD5 11be6bb37c79daf1f62a7e72f1e2bbb4
BLAKE2b-256 5540f99a534fd4556ca956265cf5461916be8cd70fa385ac5eda301c616d8022

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d2f241c57873b3f3f5514af75d99261364857c24bc90d440b1a9ec71297c2efa
MD5 10a4ad3e01df256d687ffedee409d2bc
BLAKE2b-256 92c1ed4ebbf71c161c5a9f217616bff823dd86c6c8b64c3781bf16c4586a4b61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 13ec3bfcdf9792732cb0f0a1c4ea340e86b086ab2a4f5da236d64e29b998f00b
MD5 89b93208631e6857b4d450ae9321dcfe
BLAKE2b-256 8a8d21d101dec844be3833b9ce10d0fba9e95183602f667b2c1214d6e4d09375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eebb78200e5c4d5c6d398768fe7ce57140ef04bdb3f99d58d73a295787a9b2cd
MD5 47801bec1c804fc66e45c14f7c70f291
BLAKE2b-256 eb3e9032a1f8a8ea2721542f1a73707c870a4a4c1bbd9b518f6ad13feaf9c253

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8c81249d92763cb95553a9c105ae273216fb2d80251add3d032c48f849f9548
MD5 59129ad05a7b9deb161b9b55c78ca5a5
BLAKE2b-256 c2fca83f73390edd262648804795ebdfb0e7bc147392f129bbcfec7dfcea9469

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9cb9a64e0015109ebf0556b0d6ee0936cda86c1424ca87724e54d0af0f0e964
MD5 6263dcd19ebdb2f921374be7a79f476c
BLAKE2b-256 efe7e88a9cead6038f4b730adf27ec4bc695f6369ccf8475da98038cf4d256c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aaeeb2a4f4d69146c79da77e2a9d1171368179d591fc9adaa98f69fdfe55d9e8
MD5 847d2ad116adaf6baf41d982b16e8cbb
BLAKE2b-256 6f18c261af49f397a3307155e96abeedb11d396841f7bf54273a45a5fd0c7617

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0ca651f222c67e6e5d630d68b4c1329506d4c2d4e85a7ac0aede01b34688ade1
MD5 8e7f7f049801bcccea77ed51a532f303
BLAKE2b-256 6fb1073d4d7ff7e9f7ca5bc15606845aaab5b4b9c28732dbdabb1efa73e23071

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07bd32c808f1f9fbce2f054d89fa608b68defb14b131d3e175e58ea66a6cd499
MD5 65c78739aa358b973e569842162737be
BLAKE2b-256 d8065dd8cb4b954c48424241e9897a611af9b08c05588104c9db84b7dc7eff87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1380ec4b4aa813cc4eecf4612a01eb6fc2c938e6b67a1cf95d0a462ecd6190d0
MD5 1fe6d3edcc28ba5e952d3b02f82f8dfc
BLAKE2b-256 094b3e035b751140363d3a2cea9794a6eb6b811ac35fb7e40f25af6b307fb470

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57e91f16b9b388b37ecbb5a3300c590f66148dcb98b9bad300642e93dcd3f40e
MD5 817dd60dbfeedf2b5a173784e0229711
BLAKE2b-256 bc78cd5c9e01ce69cf9c6bae9bbd60e5d1c650d04b7278b68b6d589f6cce2b77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a24457836cd4553c4f0249521d8f435a9649fddd86c59641b058a3e0d7e7bfa0
MD5 74da1ca3ec2ba094ba7662aff2965c7c
BLAKE2b-256 b619ba257ac64501e5e793fd637494deb4f381c9f61a71ab427ae5e8959d5003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8cac65c23a5fa6aed17e14809266dd6a25da16812c75f2c14fabf3f0f4fe30c9
MD5 8061cc54c3b5add7e08dcd3f141968f9
BLAKE2b-256 59020b1e20b48436da57ca7cffcd2904d4bd9488287393665798b1c4e3b62622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 81aeaf402e1d07a018acb373fb2e3c561f79938f2c93a0c586d9ced3e32f45ed
MD5 be0a338197842bda100d6cc268cd4ee4
BLAKE2b-256 79856f56c837bbd6e13e838ba9a6764a6ca89b885e7a0fe35b2c9a5fcb6f5dfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 39957f73f97c201b968fd426504c63e0ab38d13395023f238f3e9e8b9c10d2ec
MD5 e04f677d5604db976b8b2dfc4642f20c
BLAKE2b-256 36f34cca9c186a1ef19f55fd21146c9dfa19ed41ec69ae9ad431fc8c2b101834

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 88cd9b528a4fb22f09fafb645578b1c3b3cf67091c6b45dae17a35a9b1546f2d
MD5 9ac1d9da77c11f4d7e7e525fcf056347
BLAKE2b-256 fc8a44edea21cf5be4ddd7cdb658ba3a8459a33cd615d94a3f17f55f57425597

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 575395099d032b02708ae7ce434782a6fc30465472f378f5f4726d694e3babb0
MD5 c46d4e184bf3123b3e3c3bcfd4b72f7b
BLAKE2b-256 531944926a2029bb8cadbc7e42d48373bbc706132371bc8d59a916c64195b871

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6285003aa6c33b3a8c5778d851a59498cbd606f61c4f78236d9c8a5bcf56bc2d
MD5 68d92e79c4eceee7a7f5dfeb7a9b1283
BLAKE2b-256 315ed7418c357bf5fc66f33207be7385e0c2998de3047747403d9be7e48193d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5108cc76bc2542f235e625b99cd17fd17317c67bff4d0b27062e64ecf6aeb214
MD5 d983e9cb24baefa851dbfe1f8ac0480b
BLAKE2b-256 f8e736b6ef7662f0c34161c150b44756d1733731862d8144fc66c665c9f9e9d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f10f0f1bd77557d3e1cc21e4d8250859638121c507dd39bcd20af274bdfb62e
MD5 6953d1e9bde19d3e561f189ca1068509
BLAKE2b-256 ff17cb5579bf1cae56c6812baae46de23fdc7d1fd8133e82b269e12d6932c7fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 922a1a927b1306a808256d7e2b9b267eed5a8eaa9bdb6f551c56a2a4fb6803b5
MD5 47feebc7af996e6066359da0e87de660
BLAKE2b-256 0b55d85a098c1a988c8a143bcf256573f15626ee5c8f3dbe98dc2029e138ed1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f1a10e85e0b9612e6567360d499dfaeb66e227796b491941517c86a0cd75a31
MD5 098ee16f392826791e36c73fa2858737
BLAKE2b-256 393ecef0e16e8c4b39553b9bd12a0b6a38c4d0f7a78686ec2aed2828f127afc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 89fd2bdb9f313ff13a5d534b617d873098602bafc0471c8ebc72ec22237c09e9
MD5 7bb11b5a2a833edb3411020533d0967a
BLAKE2b-256 7904068ac30f11f0a99f1299d37cd17df1ac00f811aece8885c63fe325dc9658

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: cachebox-5.0.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 235.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.4

File hashes

Hashes for cachebox-5.0.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7bfc4fef0bed8b77858f0b1177252a70acea97f29e7859d2507300d37601dc2c
MD5 a9db37a4f03a21ded685053ed30c375f
BLAKE2b-256 b0de75dfb940d5935fe6f5d308b396f09108ac13539d0c2474726e62e717640b

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8d03b576f1e854010deae785859b440def8598a30bd2bd7dfe032ad61dd488e
MD5 45b414731e4428806f000f63f4c2cb48
BLAKE2b-256 b2cd48e56bd17e3e67e51109b0f56f92298aa8d3cb4c9fd19a4971473cbc8345

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03ba7b327cab612daadeb7480fda5d8e5b1ceba19d5bff4d5e8da2ebd06880f4
MD5 17da6fffcc21828111b1ddb6241153bd
BLAKE2b-256 d191036eb46c7e8dd136bed0d5e7d2198a1f250849931f9dd9bced0cce5fdd59

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 19f76e8dd125593f6da19b4245842d96507c7e83c10357e1d7ce3dff909c4b9f
MD5 43d91468954db866b869c9571e4eb1cb
BLAKE2b-256 a1de030fcedd5fc9771019ced4f813d31893e50d8a46c822901434b22edce2f9

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 47dbe49ac815e0f289585051bfef3b10cd3b27770cbd9dbe3d1d98f6e9ec4cfd
MD5 7ab907c184a7c6a71b50f99781d456d1
BLAKE2b-256 f81b300414cf140e81c12c5f04260057ccd55fe0164579b0f830e1dd888981e0

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3067c276d075fcbf590ed37420e8de7e7e75214532ebd7188ab28a87a0496fc
MD5 b35c9973c60f37352f12298b762d3cd1
BLAKE2b-256 c638c87ec81aa13f4e65e4c13e67b7db4f14e1911bed0951f8f97a3b09992a0e

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1b824d159788b29f7a6a29ade1c9300e4e0d84d0b022a23f750493c5bb47116e
MD5 0e43615f6d28a4af825ad6a032087beb
BLAKE2b-256 3265c7230127897ef0064ff461a50be7cb139b22d995af682dff544138c928b9

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 64826c9c71c71d022f674e9d346ecb5a0fa234f4bb79520f3c7016e0b51a3854
MD5 e7d6c6bcf098f60af85088d4254eda40
BLAKE2b-256 527830f229d39e395413de42f8f203c24f7bc2592f924ebf43abe09d4b0df3b2

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 113749803e2cdd4d57afdd8153f7a6b6df2af972f8b71ee5bf8dfe8411c8fc43
MD5 8c215d7bbba814a1fbb98e4a203472ff
BLAKE2b-256 fb9a80ac4dc7b351962d93791c85fc159070881544f26b70810367e251483871

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e0bcdfe104699aa6545e38517b998f7a353cae86183672ef37762946e6d88ea
MD5 da93287522b96fd1db5526b80aefb8b8
BLAKE2b-256 965dbc466d1522135922f9c87e5c284c11821541e3c123bd817b473c1a836f18

See more details on using hashes here.

File details

Details for the file cachebox-5.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-5.0.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c7d529fd6d3bf14c0d6bb1bdbe3298a5bf28e6b9a1e1bec755054a405545dea
MD5 24877e12087468659748e88b585da06f
BLAKE2b-256 f639bf599e0110cf0bb07c91b5258af5098c2013966676d0dfe9ba02483b5c43

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