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.8+ (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.1.tar.gz (63.5 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.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (523.7 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

cachebox-5.0.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl (614.1 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

cachebox-5.0.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (509.3 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

cachebox-5.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cachebox-5.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (330.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cachebox-5.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (372.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

cachebox-5.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (306.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

cachebox-5.0.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (335.9 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

cachebox-5.0.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (523.7 kB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

cachebox-5.0.1-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl (614.1 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

cachebox-5.0.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (509.3 kB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

cachebox-5.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cachebox-5.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (330.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cachebox-5.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (372.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

cachebox-5.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (306.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

cachebox-5.0.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (335.9 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

cachebox-5.0.1-cp313-cp313-win_amd64.whl (238.8 kB view details)

Uploaded CPython 3.13Windows x86-64

cachebox-5.0.1-cp313-cp313-win32.whl (234.2 kB view details)

Uploaded CPython 3.13Windows x86

cachebox-5.0.1-cp313-cp313-musllinux_1_1_x86_64.whl (523.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

cachebox-5.0.1-cp313-cp313-musllinux_1_1_armv7l.whl (612.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

cachebox-5.0.1-cp313-cp313-musllinux_1_1_aarch64.whl (508.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

cachebox-5.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cachebox-5.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (552.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cachebox-5.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (375.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cachebox-5.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (349.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cachebox-5.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (328.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cachebox-5.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (369.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

cachebox-5.0.1-cp313-cp313-macosx_11_0_arm64.whl (303.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cachebox-5.0.1-cp313-cp313-macosx_10_12_x86_64.whl (330.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cachebox-5.0.1-cp312-cp312-win_amd64.whl (239.0 kB view details)

Uploaded CPython 3.12Windows x86-64

cachebox-5.0.1-cp312-cp312-win32.whl (234.5 kB view details)

Uploaded CPython 3.12Windows x86

cachebox-5.0.1-cp312-cp312-musllinux_1_1_x86_64.whl (523.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

cachebox-5.0.1-cp312-cp312-musllinux_1_1_armv7l.whl (612.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

cachebox-5.0.1-cp312-cp312-musllinux_1_1_aarch64.whl (508.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

cachebox-5.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cachebox-5.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (553.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cachebox-5.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (375.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cachebox-5.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (349.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cachebox-5.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (328.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cachebox-5.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (369.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

cachebox-5.0.1-cp312-cp312-macosx_11_0_arm64.whl (303.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cachebox-5.0.1-cp312-cp312-macosx_10_12_x86_64.whl (330.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cachebox-5.0.1-cp311-cp311-win_amd64.whl (240.4 kB view details)

Uploaded CPython 3.11Windows x86-64

cachebox-5.0.1-cp311-cp311-win32.whl (234.4 kB view details)

Uploaded CPython 3.11Windows x86

cachebox-5.0.1-cp311-cp311-musllinux_1_1_x86_64.whl (523.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

cachebox-5.0.1-cp311-cp311-musllinux_1_1_armv7l.whl (613.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

cachebox-5.0.1-cp311-cp311-musllinux_1_1_aarch64.whl (508.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

cachebox-5.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cachebox-5.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (555.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cachebox-5.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (376.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cachebox-5.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (349.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cachebox-5.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (329.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cachebox-5.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (371.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

cachebox-5.0.1-cp311-cp311-macosx_11_0_arm64.whl (305.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cachebox-5.0.1-cp311-cp311-macosx_10_12_x86_64.whl (337.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cachebox-5.0.1-cp310-cp310-win_amd64.whl (240.5 kB view details)

Uploaded CPython 3.10Windows x86-64

cachebox-5.0.1-cp310-cp310-win32.whl (234.4 kB view details)

Uploaded CPython 3.10Windows x86

cachebox-5.0.1-cp310-cp310-musllinux_1_1_x86_64.whl (523.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

cachebox-5.0.1-cp310-cp310-musllinux_1_1_armv7l.whl (613.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

cachebox-5.0.1-cp310-cp310-musllinux_1_1_aarch64.whl (509.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

cachebox-5.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cachebox-5.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (555.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cachebox-5.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (376.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cachebox-5.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (350.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cachebox-5.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (329.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cachebox-5.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (372.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

cachebox-5.0.1-cp310-cp310-macosx_11_0_arm64.whl (305.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cachebox-5.0.1-cp310-cp310-macosx_10_12_x86_64.whl (337.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

cachebox-5.0.1-cp39-cp39-win_amd64.whl (240.8 kB view details)

Uploaded CPython 3.9Windows x86-64

cachebox-5.0.1-cp39-cp39-win32.whl (234.6 kB view details)

Uploaded CPython 3.9Windows x86

cachebox-5.0.1-cp39-cp39-musllinux_1_1_x86_64.whl (523.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

cachebox-5.0.1-cp39-cp39-musllinux_1_1_armv7l.whl (613.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

cachebox-5.0.1-cp39-cp39-musllinux_1_1_aarch64.whl (509.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

cachebox-5.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

cachebox-5.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (555.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

cachebox-5.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (376.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

cachebox-5.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (350.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

cachebox-5.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (330.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

cachebox-5.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (372.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

cachebox-5.0.1-cp39-cp39-macosx_11_0_arm64.whl (306.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

cachebox-5.0.1-cp39-cp39-macosx_10_12_x86_64.whl (337.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

cachebox-5.0.1-cp38-cp38-win_amd64.whl (241.0 kB view details)

Uploaded CPython 3.8Windows x86-64

cachebox-5.0.1-cp38-cp38-win32.whl (234.7 kB view details)

Uploaded CPython 3.8Windows x86

cachebox-5.0.1-cp38-cp38-musllinux_1_1_x86_64.whl (523.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

cachebox-5.0.1-cp38-cp38-musllinux_1_1_armv7l.whl (613.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARMv7l

cachebox-5.0.1-cp38-cp38-musllinux_1_1_aarch64.whl (509.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

cachebox-5.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

cachebox-5.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (555.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

cachebox-5.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (377.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

cachebox-5.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (350.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

cachebox-5.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (330.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

cachebox-5.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (372.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

cachebox-5.0.1-cp38-cp38-macosx_11_0_arm64.whl (306.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

cachebox-5.0.1-cp38-cp38-macosx_10_12_x86_64.whl (337.6 kB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: cachebox-5.0.1.tar.gz
  • Upload date:
  • Size: 63.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for cachebox-5.0.1.tar.gz
Algorithm Hash digest
SHA256 990d719958037907671a97998739db60494fc4ffd5e506c48e7ea164015af3fb
MD5 828d3cc71fa2309fa7c2b562de0bbe62
BLAKE2b-256 dc97345f643ada89d66aa383aa222ea79ba65d694caaaf5e3a7c1aeb87452b4d

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 077097c21dedd11b7c52f4d8f7ba028bbc912563b29e760d25e136ef80a26c68
MD5 88b10bb1a46b382ea7f8464b74db3e3f
BLAKE2b-256 70d776d79c6075764556947262b623f6ca43f9286438f2314e31358e05a0b501

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 ab430491c78de482e8f1875712db182466a232cbef9415efbce030f95433b76b
MD5 5915cf58f22fb512812844f130b167c7
BLAKE2b-256 bb66ba0d3a49f2c8fae1c335bb5c1c6b10b5d669b4f8b06e25de5cbe707efc94

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c2fea598246613fb6db143ea252bcb06feae5e259c1b9ad44f5e70fbaaf38932
MD5 09912756da879c7cc4522fa2173ecae3
BLAKE2b-256 032fd201aaa1e86bdd4816d7caca465a561c2e451e80d0177b662b3a911f0fff

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ca45f1ae7530fad3e9d3f8b60895df83f55c8656f3e3902a1701bef7225b366
MD5 6b06d25c985853474b4c018bd8f3a53c
BLAKE2b-256 3b34195ed7a5d8497f9e5eaa105c62f8f9ecb5045152a694e5191f645d7e0653

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d2c7062bac2422c619568fece05997aba8255d04216441014a0b8a24870112e
MD5 954f2cd04aeb0dcd2be5b8278b95f9a3
BLAKE2b-256 6c63395ee4cc61a57b307fff7ccf9948a9aab09936f47f80b6d1f0fb0c83a9d8

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8692573675188ceeb008eb9319c623187d9991cf73a842eb9ac0becc2d4762b0
MD5 3579e67a98d58574f23a26762c8cc3cb
BLAKE2b-256 33eef4bba5b227e16c4fd12d09b38b99fb8d5550158a9c1f7dff7bb5e2fa835f

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82d65bb7760dc95bcb5ce07a66d377d176965f2b587d6ed63c5915a2d83724f3
MD5 5b1f06df2de2e89fda065e06750cae85
BLAKE2b-256 dd3af6cc4d40ac1b8c808197aa4544bc01d69615b0223e1e09d0510055edc474

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 de1d2f1e8b9970ae276083a6baafe238bc8e816c38ebc3460f86b95a1fd7d9dd
MD5 e739bfd9becc29c065a6318afba1649e
BLAKE2b-256 ad34c8ad3c2a0e7e7da1fc5712f931c0a66869602a4acc877ccf63dd6f7d66c7

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5c10286863125bb741e1ea82a3b947f64c57121d2350ba72f238620bb6f3e5e7
MD5 999461209a15c11d05b38e5ee1c6a963
BLAKE2b-256 0d1d7ff911071b11691f820948da9a0e14859602d4a3bdfc708e3b7d45e6b6cd

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 063029446ead58261e838af4cf5cdd13ba8e77f11ecec6da1903e5dbd4a69497
MD5 ab842e857b5b9bd5c9fe41e6391c6fe3
BLAKE2b-256 f5f409bd40480a1a822d0dd7f7c20b6160846b0fe20f478eac62986fc93ad43d

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2edd2920f43b540cb8795746441afa3aad0a92c0afcf1d85c86593f706c87717
MD5 c5f558dfc1136b587ec4e80839ee56ef
BLAKE2b-256 279ffbf0dab87c2ce7d201aa568fee1d05704f9117cc197946385b5269ed343f

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc6612b3a78e0ee8fa3302c8d5918a9acab3fda782930fde51543b1ad56525d0
MD5 0c77ec215b072ae302361802817d47f2
BLAKE2b-256 9662fdcbdc9bc195bc51586f6d959350bcb0307f0e8797e5fd1fc7041c94c465

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4353678a3f45fb481aa90b6d0ff96052cf5723508fe919f90c7eeae6e636347e
MD5 446d4f578bcf178864410dd7e3801a6b
BLAKE2b-256 aef816f132b752f554dcfd3e87d15eedef9472bc5308a1586cc010be01972c05

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a37ea0baed69ad29a2148a07aec5ad586724df40209c0d1194cb08fc96f6e187
MD5 9586653de48a62bbdb2662847edcc647
BLAKE2b-256 1c64a0436269e939d5f49b9a1e69ffefc767165b94ce93092352c196df2d7ca4

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9efdfbc7fff57fe727b48f20bad5d93d7c2842e55ed7b5d1f98a3e5be7679a1c
MD5 2344abfb0da121134d32c4556e63a825
BLAKE2b-256 bccc226c554e21470df61321beacd6aaf48f03931a090ce3a933020d5d2846ab

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9e45f06cb859996e5913482afb3d1faf333e0aa1ee98425d09f58dc23e77dfc9
MD5 f4d8c33f1adb54b17dc8f83af6a5962e
BLAKE2b-256 bf1bc938536b152d0778184fb500657eef346459577c29150c2af2c7f93d5820

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.0.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 238.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for cachebox-5.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7824e2b16f94b0170fa6f0c704b281c82e2777e216b5ab8eb91297ecd9774643
MD5 65119ccc621d5292e3f64db9d9ed8b5f
BLAKE2b-256 d97168da392e2cebc7776773bb6e927c445ef80ddfcfad37cbe3caa290692d58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.0.1-cp313-cp313-win32.whl
  • Upload date:
  • Size: 234.2 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for cachebox-5.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b4f0b6ad99d4d9a75da1bdcb5b95650a707843a433c21437371e9a7abc7dd0e1
MD5 b2dcd5446dbe7d6f8cc6626460c4cd0d
BLAKE2b-256 303e8d38c47b1676e5e8fc02d8ee7384fc0dd16560bd8352f10dccecd444178f

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 34ca124ee831a6e7e6c07d3b39ad4265fe1676364167a10075d2887bdb902ebf
MD5 e6cdd9d138c300433492449e636fcd65
BLAKE2b-256 5babbe9cce7517a3184f959257e786d3fa73b431c7799b90c9b7d91fe83589f9

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp313-cp313-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 f4f1b823af816bfbc1ccd41f4ae70fb725ea65810b5350a90b958e57fd1e520a
MD5 e506db9868b12f5a46c9cc5ff8719749
BLAKE2b-256 4fb76b99f9e78d6ce076a062ac0f1aaa66fea4cc2ee7b69f3e66fe2cd36b7219

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 20c5d8edbfc83eea658b52865f4a91a3679c3c74ab9fbb0d2be52cb6e077e55c
MD5 6add1a661dc6cf8f5fc4566901046e3b
BLAKE2b-256 9b0a4dc9c2067e85251f1de9173f01c04e8a2751b7b4ca243ad8f5539f6f31ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88b463ec81c9dfa7d8cc44adc51814eb55bc38668d64a581426712a519a7a25d
MD5 d542e0df3a292d1f080d08bd50ea2224
BLAKE2b-256 e4a6cf405917ce7e91481709c6290ce3c98cb1d425e11457d0d374f096595521

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 caaf5e612ac8397dfdd4fdf037e8fc8879a92f93cff7da0b43309d3625fc3c5f
MD5 42174f1ad805fd7a1f26132327d97b41
BLAKE2b-256 830cb7c0ccf87e1b33981eadc3ca3f92e5a0234dcf88d27d64282e9f92ee708b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6ade27f1dae58897a2609db7b9ad3627cea6410bdfc709b4b2931f989c6cc023
MD5 c7a0a01861b18365949c959646eb3bf2
BLAKE2b-256 2802f7dbad33073f1d7a8a5acde673259e413feefa597cef41559a5f7e14d258

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c07b9bee0a22af3adfb698dac08e07a7a1d553f9f5b05bf42e89dce165f42dc8
MD5 9312471189a0e664dd0b9c8a9b76f797
BLAKE2b-256 9e23d8f36c00d1afa4957fc99b3a3206e8c3125283762be575e4284a08dc27ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f00ce2f130190e5d5d9e81ecb12988f7cded81fc5e1fe9b9c46b8cf20fc799eb
MD5 1933772630e0fe57bb549cfbce40c0b4
BLAKE2b-256 29deb44262b498ccdea7a2a73b04ef262f48620f0a1f97709b65e5973ec9f4e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9a50d5a593da6787642ed99c03c5017bf45a6df4855476a0c4eadc52c56952ab
MD5 e92c10f9b595c79391dc6c0e2667a88b
BLAKE2b-256 aac1cedfe70e7de316d9ae558b8f72dcc17d1aa5ba2ea05c6a145ffb83be1e5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7c0513fd4d96e60daf673d740346b825071eb415ca5354c9a33dbd5df003417
MD5 53c9029d85020e99e6d506c584c550c0
BLAKE2b-256 5d1578d10c1de622357e9e546ca88bd4459c76f169a97dffb9911c36875dea05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f3e25e4bfeca20885cec0f2e6eb3676f8808ebc6d3bdb2425e2727aab166933
MD5 c38dbc63a206e54a52251c3a0a4c8c52
BLAKE2b-256 56caae9911b2afec54124d08c22fe7c6a1ac46d26e339022c81e58bac3fef5cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 239.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for cachebox-5.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6659f3f632c982bb175d39eea15a8abd989684cb900b376428cda0d76da6b227
MD5 913065acb36ec6a3df9f177c7a1faac3
BLAKE2b-256 1d37ec04df3325f3cc0856d193f52688fe98446f05b16e02abb2fc86837eb774

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.0.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 234.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for cachebox-5.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b7eaa1668e5bb696c88bb28fdf424c9fe7ef1e2e0add137fb2279110548aaf37
MD5 d0a6ec79f166f886da4747cea617c479
BLAKE2b-256 25cb07a2a217c803411abdcefec5129292bf5d562f70ed1033e22d2a1a860bcb

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d1cbddd9abf44dca11aefa94bca1a6c407d3e5a6083a9eb68535ed66c6f05205
MD5 653d121d656566042726da4419b8f154
BLAKE2b-256 b598199243e7cf9d171424cf9a1adbee8cb01368843c307ac7fff23ed1bafee0

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp312-cp312-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 18ed366345be1e11c429b15a6178f1f491e5043077c0e133a0343c6165e6b752
MD5 6f10e702abec32ff1bfc1efc3340baa4
BLAKE2b-256 daa2f5b948e7dab65ba20bf73b6409cd79b3a9f8f1d1b631ca3a25c0dc944f71

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 090bee45ac309a56877393e448aedbc3848e5c29282c4b8f3b854e54e0574585
MD5 7a04ad1c6a45e5a27580f0c0f434fd81
BLAKE2b-256 f028d21ebfdbe27d3608736a110e781b6e31cb814d0179f3a994d3403ad2cc80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 043fbf1389e6747ae9185b319cbac58e2d45303ad873791ce16b2cd941867501
MD5 4ae48d135a5c50d1e1eccf6aace86beb
BLAKE2b-256 dae39a2fe670f6ff690676bca6e788d9468c9aa2f6dbddedbaaadb7637ff46de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cdbdbdf76d870e8ea57e04223a2d06c643932d123dffce818bb39f39c93481bb
MD5 c336894e07c53935df511ba4979e8972
BLAKE2b-256 a33c8e0e9ad76b91c24c92e437407b58319abea9b4c0bd2e5bbf1bd2c3dfa883

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 868e0524460310919c3dc604a91b5fb38a5fca715a44d51a4b95b94a3f8cb314
MD5 ba2f612f53720e92bd7a0487a3fb7e2b
BLAKE2b-256 5b88978ebc71b4fc6cdc829deb428f7d0f9c7b1be2f29c28e250dbf0bc213b31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a162280b9ecc60cf5c0b55c3d0dfaaad617b3fc4a6d19ca21e5e8828692010c9
MD5 1d91fbaf6cdfcd1a4f011d95a093f827
BLAKE2b-256 06f4920ee225592cc91bc15eeffae3a04c69db238ac753a95c2d57acc0c25956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bab06f4240e4f241bb7395ac6e5072c79ace30b50bef263c902494e6b910baf4
MD5 a9c793fcfb30311964e4ed9cc6bbb111
BLAKE2b-256 da9383f33074c4792e47d29529fb305c9bb175e16d659430eb75023b48779e1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 35700bde606567ac99a05d7734ee12cb665df287d7eb68ec881068b7623be990
MD5 154ed3a8d0d6d9cb7a3e7c4cc7424c73
BLAKE2b-256 7801c512dcad4cf6d4af3824b3f9c8fa00ed8740c4c6842e1d248272c0e24dc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad425f603db169960017184400263828ba1833e6da252b1ec94c312458c84319
MD5 444723d38b3edbf9fdb1127d082961cd
BLAKE2b-256 ae8d87a14a6ce64bbf9c6e644cf7e2638d97a2931defdd09ec0980a55aca4245

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 31a2d42f290ae78cf75dc00ea6c38a2fd4df48f354d64e70ae062ee69fa3a785
MD5 cd9a13ad5966b3167a951797ce38f55a
BLAKE2b-256 a91f94c6f669abcf0f144fea2c3460432a4e413b3aaa31fea7fcc3ed1bf9a1e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 240.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for cachebox-5.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e124a65ea0f2e6f009eab341944bb0995b9ffc00f0d7925137ecd5655292711f
MD5 a934084d7f1979f99bc8d729f42ff1df
BLAKE2b-256 134b339771bec5c0ce9a782f8524b366585cccd1df6aee69bd08dd8191d75005

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 234.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for cachebox-5.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4adb5d29c15b9f389be0d45b82ddf3cd04e4d80ae347acb8adb4c11fa743c093
MD5 6e11bb9304b30d9b9d90e1842568fcf5
BLAKE2b-256 59b93ccff0964f515e94f4df6eaeccaf24693ca2cf6463a7f8256352033385b1

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 25c492afc16c09e4a1a3fd60e37fbb3b96d9b63c9774cbabf2cd932d9d9d5c12
MD5 d881cd55bcb1d9c65b5c13bbe0fa5073
BLAKE2b-256 68b1200b27fd98777e6841c248eb76261c4eb9e7c292c7b5a693421da55f010a

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp311-cp311-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 de5c15c80935d2418f6be82373ad7a1f08069ade7f22030bf0f3a8525a3e6c7f
MD5 5702fe7c7c87dccc4fc77d1321bd84fe
BLAKE2b-256 1eb1adf0ac1f72943dd17d0cc295fb736bc479bd4f41249af4bf126a7d414b11

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8d13310308078d012b4732663c596ce18a54590648fba30973de151a4daf30f9
MD5 cae89d99a5b4ca25496007f90d7c1bbc
BLAKE2b-256 6bfde31634512636f0db24a31f1d00a29dcb9d4173fc2a51b1b13a07607a74b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6f55f8584668fc75587ae247173ffd7959e479de1a581c2b3ab2a0c82a44300
MD5 3db716d118bb4b57f23afab42bcb2e86
BLAKE2b-256 683159fcce1e5a0971ddb79000114f9b462eaac04b00415e7d8e5d87dc753304

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a4d9f7a01fdc3023b9210ad6d805136502291c932acf82cb19c733b52eb27e20
MD5 c51cd797d7ba48a7db72b11b776d63d4
BLAKE2b-256 6f80072bb92532a1aab0bfa8a7e010fe91752e6dd10df8358c37c7a090266fbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ccf7b20f3f090af4e79afc64e4c6109af4f7ea9b9b83f5c5755ef38a891405ef
MD5 d1be3e01213968f5303f339a91effcc3
BLAKE2b-256 468338b22813268ff4581f959d5ca3178179545dd2ec6c899f3b42516004c3b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3087a3c54a73194a5d312c0b63f02dbd65c759f0a933b9533f597246978fbbd5
MD5 1b021a1f417c071e2852e05bf89c9afb
BLAKE2b-256 344b24f591797f390463d2811f9b989754ca0eec864400b36e67ae660988ed94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88bb716aa99b894d02aed255e817f1feb1fdb26948a6a16d51bba4f5c974cf5d
MD5 a2fd7fc7d9b9d5b35808e7c84461c85c
BLAKE2b-256 4f13672fd5d78da6b49c0bcd114c32beeb2811e910ece803e9ac5f01785009c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 be74258841d594eaa1da6fbbcb69018f780cfc0f06bf604f407530340d2d8ef9
MD5 13d9ecd4750e91e157bc348cabba5ff3
BLAKE2b-256 c67327f71df1ff46d3fe922e5fb18c439f41db71a1f68d7540801146e4950c8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ab74483d3af68f0f71b57f3f7d9b3a2bed455efc8fbf301dc2e7e6b6cc475ed
MD5 a327b7ba945d3a5aaf7e94ab50b15f99
BLAKE2b-256 1cf36720415906c67b6e75e2d98d024fb2df0ed4671f769ee5dc12b4eabbd363

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 17329b52b62ae2e456dfd8231342063b6e09b73cc577000097e80855c32a17d3
MD5 54b2c3dd2ede9f3366bab9eff5e0c9ce
BLAKE2b-256 5089ac59ebdd1ebf8aed25d5887843ed33fc49645e83c1516e962588d04ccf1f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 240.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for cachebox-5.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 07cd9ae77d1af239d36fdccd97a8d2ec31d642213494cfaa9a7fbe6158fa21c8
MD5 c1a17d03f7ec99e4a7db59141815e189
BLAKE2b-256 8ab9074e5a32b2869e048e26487428bc40a58ef2af66b0fb331365ded3e0f62e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.0.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 234.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for cachebox-5.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4ae1960870a0af70180ac7476088e3ccadfcdb1c780ace564636fd88639884ab
MD5 c5fc042a7924c67fa9e295625defac56
BLAKE2b-256 3dd2d8a51779449aed8cc248239f739683a7536265e53d02e2272a63439a3ca5

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cebde6b340f5d6592e0cb878a4966b53d05123a9a8cd97c9e0dc189a84de4566
MD5 f6fa1b1a405ac7436af16a236da041d2
BLAKE2b-256 192359b9d9d15fdcb77fbc3a496daf0a491f1ec37e48e713110d40b5ddcde3eb

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp310-cp310-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 0761d09b5fc1347e3dbe4385712cfa9eb8ba8bf3cf1dadb67d0f0afcd0d83938
MD5 21795170b825d3db327442430b5486f0
BLAKE2b-256 bf0f50d18d0ab284019ced3df5a904b0804b265ffd9eff59acd8e62ab9dbeb2e

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fa324b1eb46a366e787a0fde0bfe2b2dd97ed8b89afc228d8fa786f9fab3ef65
MD5 2d03aa7487966a5240dcab642ef93699
BLAKE2b-256 b46fff3989cefcdfed126762800f6a13ab5e85a0f5f7458d5802bb001dd87bae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad6b0cb308f52da3415767a9e8324c1d219d89dd753e262bf3d325571b792982
MD5 d4ba083979272b19f0e7193ec6662987
BLAKE2b-256 983d50522917d8921f70c40419bcb47232ea007ebf53eb0a64b391b8115fa222

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c82e957706b0a60144cb76ec4656c61692be7a760a1f952de47dfa987ba9fa1e
MD5 b50b52ae660b4b684c460e127470d6bb
BLAKE2b-256 073abda3711e01dd569ef085c3d7fc8ebdd00b9127f7061ae371c16c6a4e5cb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3eee6a7729a0d10ae9240a0569892f3beeb343a943283108a9e16f67ecad5593
MD5 ad55c4b2c6e9e1f5e07f901e7b452ff1
BLAKE2b-256 b2090155822457b878024cbe8726f76757956bb156ac3aeb94b39ab8f8937fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1e97ae1041a05ef075933b92f6b7743b9ab16b3b23f4a0155fe90702e4f12692
MD5 a0d30717e0bd4d40c3e21b8887cd9b97
BLAKE2b-256 a1d1f0c1a9df90545515d3e0985acd5e3f8bd4f713ecf8d336e2ccf7c79554f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8171dd6c70150e4850c24d3ac4841f722f33f497cea4c69fddd1455a12d91efa
MD5 cd5f21c914ca1d557041182868be1e85
BLAKE2b-256 4ed34f6e2163d13d4d6e195e379101aec832512f72b43a744c48fe190cbec3ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dc8ebdba6c9dd1a5020da78adca5179c4e274ea929e80f1040954d5c91021c35
MD5 7772650f7f648c56e8393396949a7cc9
BLAKE2b-256 1158e1a0150b2295c517859f15aab2284cba508053ef4f6069cc895045968264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e66b4a57f9737bef158082b365fe7046732c18f6ff59d0db0a8918d4ea26ff20
MD5 b6a5445e28face2d930279f7b64f6649
BLAKE2b-256 3dda64f6e6da3ef4cab44d651dd090991f657d1fe285c49479affe6ade501c18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5cec5ac96ad774dfdca343286adc7d002683146e3177855ddaf866842dd942db
MD5 eef1a03c2a588e633a502d9b4cf4b5bb
BLAKE2b-256 d1699524c6cad23c54c96bbf43c1a0079e7d98986d8bbf2a5aa3722779549ddb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 240.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for cachebox-5.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1ab93dcab7b0f46b09566ca6e9254f42a664d47ade42aecb0bec0a3e24cae68c
MD5 e6c5fc64231b1b506317cfab2aececff
BLAKE2b-256 96b84725decfc0661530a134ac087196a59e1dcd96367b352774577acbf47c7f

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: cachebox-5.0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 234.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for cachebox-5.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ed7324d09c1b1e7e71f98dedb12d24944f6b57998af580746d0a8a48718f1ca2
MD5 34aeead8d25e76464e9495bb6ed44c5d
BLAKE2b-256 0fc4417895b01edf0425916233170546614dc2e56022be83b7ee7709b3d66b2d

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 981e3bd15504099c6470ab8e255538151bdab948ca2aa37dba2248c5847f8069
MD5 cfe09012ab9e5a49bc0e8ebe083383dd
BLAKE2b-256 79cdc7459a9d79d2d37afb83c613bad1bb8b03323937ba4b4915a1d4d63b9f75

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp39-cp39-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 17963528177e953a2b5fe426c6201d3c259f44bdc11bc6b20831e703864a2296
MD5 f15bc766e13f4b5f442e6209309ae8a0
BLAKE2b-256 dd97a4f7962c801988f11019cf2c0b12e7c4cfced24727fa3b8e51c699dc4796

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 246db97be1b35ba22b22925a593e0a343abd639207c3d21f2b091ecad27541b0
MD5 0b7d6c9a8ecde33268b45759fb258954
BLAKE2b-256 ee61ede611ddf302905eb6dba25c1d46a1cd44ce28e375b07cbf3e6d45853977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc570984514dfbbc69672087a03715042a7147bb0f3ca8d97b8cd8d083d7ea5a
MD5 dc955b86aea436abe4dff2301a7a6b57
BLAKE2b-256 440557b4587402d5b74795d35937208eecd69e3bb327ccea1a7d938f8d833c36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dab201c75ef8d4f2e39eb431032dc56fa4ed6d02a79f44d7169f80419cadfd9b
MD5 2a66b4967cea83a1c34b9b734391f93f
BLAKE2b-256 58e007a1522c70d4bf0a0eee699eb864dc5a1330e4c9518a6dcc495cb62baccd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cb8c7fe15f868f38556abb9d54f0bfe2bef17c7bb785f264ca68c4e6823ecce8
MD5 38c984cf4eceac8ea7fdea28cb95e8f5
BLAKE2b-256 463441224c0dcbc4027dfd2236b472b0dbd76a7f68ea42ab3ae0890a509b02d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 18c4951e0679e9b5b21ba9793c380ef757e53ffe6ead104e6652f8279dc3204c
MD5 fd2e959daa0b18970ffcdcf3a0dfaca4
BLAKE2b-256 257e4b286e6ba8bd8788efabbe5dba71d6ea243c005dcef9fef3a25674bbd05d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b79b1e74107a9ea08ef514184505c98653d9ab8ba1a6c3260ab99e4078f2f3c9
MD5 d9a55ade1253f6673cc7075a48eb36b9
BLAKE2b-256 ba944e89f718abe0f0d87bb36067b833497c66192e3fb186ce05314a59fc4bae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 60ce34edbcea54ceb0539eda15c92496fb298801fb44aa25b91d51a004839477
MD5 cb6c54697d96469d8b586c3ef00a406b
BLAKE2b-256 1ed7b30739dff892e832975d20b2c4565ec2beb2f3de6b6ea51deaec6beffb39

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 893d403eaf925c07cc552ea3de1b1966fe1a6c8bad457d84fdab01c2e5bb488e
MD5 08a02f24b805eee11def8d716677b3f3
BLAKE2b-256 e186305cc2536e5ae8c22597cfcc09ecb3e4d66f2fa5a70ffb85ac220cb31814

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f506df069b04840f1a5d3d6fd56ede97ab371e83b88c87237ae598e89ff67d52
MD5 91651239ca395caa9053c048135659a4
BLAKE2b-256 0cb00bb28c40008a90a77bd2cd8c6e782378141598085fec34a2e47a7c07cdad

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: cachebox-5.0.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 241.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for cachebox-5.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 297e1c45ffef669c1aef96a68268b2422a831650a4a944b6d989be79230ae972
MD5 b42cbce9e6fdc6c6780f21614e4d572b
BLAKE2b-256 8672209bf8d045a2c3c63dd033eeeb9ae7a919a63aa4fe3e81f4c5878b2982c0

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: cachebox-5.0.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 234.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for cachebox-5.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4388880c8a825496c4eab8e8d1553950fddaadcb50903af5c89238e69e4390e3
MD5 1802438c7f06899942d57b0870320216
BLAKE2b-256 ed6f39222973e1e9bd09e27e4773f20dc9aaf15fbb21a6292c8112cb55cc45f2

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dad1a41d0c3581f92ffcad880f0800081b650223502fa4417e8b3190eacc1657
MD5 c05f6637bc7cea087a730332161d4862
BLAKE2b-256 05910fc7436d77b6582ba90e3e218f4da466c8b500328b67398cd2c0305682f9

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp38-cp38-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp38-cp38-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 f5d0998835d634e261c078687aa2a981b81fb78855529a1c63ab44b604a0705b
MD5 3950f5e1f7456bf25db14f92e0266139
BLAKE2b-256 0eb2b1be221e23899fa8894c5612bdf6cdaf08ac02125bff3fdb5e995f65f7ed

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 544a7ad0202a3d44d810e4fc244205709f200218e3ea938c237db5fb291fab60
MD5 a86ef65795617d7323cbab46b1ae2f0d
BLAKE2b-256 498730bc521b9e12cbfe864d42a6d14c93c7363cb9e7498226a03bc2e8f61dec

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b28ad1a478115ca9f7d4e50604e4f05931be0c3438fef8186dec87d25d33c180
MD5 f081614ef387ceb2b0f59b413931925b
BLAKE2b-256 603bcaa716cf0dba83f3209e46ff51d8f3a6e57286424db84a1646e1a499e66f

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e39ff11e480da96a8d978b118494fe19794f9e7efc67be39327e85119c4cfced
MD5 1a8205e4e3c14292880b5d96fd6b5594
BLAKE2b-256 38c09c58033f31029592c0bd4c6236746592e365104d0e1fbcae6532bf663208

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec69f894679339dcc617ef13826005d810c7b527fd93d741e1525b17f110d0a5
MD5 948a1fa89544ac0488c6d97b990f5177
BLAKE2b-256 513052c2beb3d48ab1746c73e641eff2d8d86fa8a712cfbf86b6561b97656dca

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c88434763d6e073a07ddba506c8c54dbc2243992a28c7f344da751b6ef08aab3
MD5 f0246e7d34cf8d644dc62b36906fe4bf
BLAKE2b-256 5f4f1b217e8040502e87588779428bb1713697449c284588809dfd7fe06b1e03

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 661362f4662d2c416730b8e3f354a6b0cf86e924238912041e0d13942324c577
MD5 ae011e550322e5f65a3f5a9da664858e
BLAKE2b-256 c1648e3b6b400523e6b807aa4b8ff5115407471d320179c7ea8dcfccca1dc022

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 af9fb8016a367b1bb73c4aacc393f346d5cdff3d8125e53a9f6964d915a0711b
MD5 e94c1bf71775c337201031a6a19db19e
BLAKE2b-256 6ae7d3b2ab291237b6eba4fe99cb8fde7ef7fdef81418031fd6eb1b25b44a88b

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7c1ff4a5eaa74f4c28b10838b646b9330d4022ea966b50bd35c3a3ee3d92088
MD5 2223da935ebbb749c846bcabb576796e
BLAKE2b-256 902459a71dcda2350c1400c38f639d2df49d3dbb8d89d6ab2bc0631a897e0f41

See more details on using hashes here.

File details

Details for the file cachebox-5.0.1-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-5.0.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b93d01edefdc50e456d3e4ec67f219b35d497935e3671e89b96ff68fa4f94f37
MD5 16f362c787a3c45bf5a9e6f935575679
BLAKE2b-256 0d37c56a06272c0ba0cc684d6064a4b07835fb108ece2d7b02a6d1b0de96a61c

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