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.1.0.tar.gz (63.4 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.1.0-pp311-pypy311_pp73-win_amd64.whl (234.9 kB view details)

Uploaded PyPyWindows x86-64

cachebox-5.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (509.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

cachebox-5.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (535.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

cachebox-5.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (604.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

cachebox-5.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (500.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

cachebox-5.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (335.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

cachebox-5.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (400.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

cachebox-5.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (367.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

cachebox-5.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (339.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

cachebox-5.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

cachebox-5.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (359.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

cachebox-5.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (298.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

cachebox-5.1.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (327.0 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

cachebox-5.1.0-cp314-cp314t-win_amd64.whl (236.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

cachebox-5.1.0-cp314-cp314t-win32.whl (240.9 kB view details)

Uploaded CPython 3.14tWindows x86

cachebox-5.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl (514.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cachebox-5.1.0-cp314-cp314t-musllinux_1_2_i686.whl (535.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

cachebox-5.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl (597.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

cachebox-5.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl (497.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cachebox-5.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (340.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

cachebox-5.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (391.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

cachebox-5.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (366.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

cachebox-5.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (333.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

cachebox-5.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (315.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

cachebox-5.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (360.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

cachebox-5.1.0-cp314-cp314t-macosx_11_0_arm64.whl (295.1 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cachebox-5.1.0-cp314-cp314t-macosx_10_12_x86_64.whl (320.8 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

cachebox-5.1.0-cp314-cp314-win_amd64.whl (243.2 kB view details)

Uploaded CPython 3.14Windows x86-64

cachebox-5.1.0-cp314-cp314-win32.whl (240.5 kB view details)

Uploaded CPython 3.14Windows x86

cachebox-5.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (523.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cachebox-5.1.0-cp314-cp314-musllinux_1_2_i686.whl (543.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

cachebox-5.1.0-cp314-cp314-musllinux_1_2_armv7l.whl (603.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

cachebox-5.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (506.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cachebox-5.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (347.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

cachebox-5.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (401.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

cachebox-5.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (371.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

cachebox-5.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (338.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

cachebox-5.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (323.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

cachebox-5.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (367.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

cachebox-5.1.0-cp314-cp314-macosx_11_0_arm64.whl (300.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cachebox-5.1.0-cp314-cp314-macosx_10_12_x86_64.whl (327.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

cachebox-5.1.0-cp313-cp313t-win_amd64.whl (238.5 kB view details)

Uploaded CPython 3.13tWindows x86-64

cachebox-5.1.0-cp313-cp313t-win32.whl (240.0 kB view details)

Uploaded CPython 3.13tWindows x86

cachebox-5.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl (516.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

cachebox-5.1.0-cp313-cp313t-musllinux_1_2_i686.whl (538.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

cachebox-5.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl (597.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

cachebox-5.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl (496.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

cachebox-5.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

cachebox-5.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (392.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

cachebox-5.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (363.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

cachebox-5.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (332.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

cachebox-5.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (313.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

cachebox-5.1.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl (361.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.5+ i686

cachebox-5.1.0-cp313-cp313t-macosx_11_0_arm64.whl (291.5 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

cachebox-5.1.0-cp313-cp313t-macosx_10_12_x86_64.whl (318.5 kB view details)

Uploaded CPython 3.13tmacOS 10.12+ x86-64

cachebox-5.1.0-cp313-cp313-win_amd64.whl (247.2 kB view details)

Uploaded CPython 3.13Windows x86-64

cachebox-5.1.0-cp313-cp313-win32.whl (242.8 kB view details)

Uploaded CPython 3.13Windows x86

cachebox-5.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (526.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cachebox-5.1.0-cp313-cp313-musllinux_1_2_i686.whl (545.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

cachebox-5.1.0-cp313-cp313-musllinux_1_2_armv7l.whl (602.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

cachebox-5.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (503.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cachebox-5.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (350.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cachebox-5.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (400.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

cachebox-5.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

cachebox-5.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (337.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

cachebox-5.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (320.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

cachebox-5.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (369.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

cachebox-5.1.0-cp313-cp313-macosx_11_0_arm64.whl (297.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cachebox-5.1.0-cp313-cp313-macosx_10_12_x86_64.whl (327.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

cachebox-5.1.0-cp312-cp312-win_amd64.whl (247.3 kB view details)

Uploaded CPython 3.12Windows x86-64

cachebox-5.1.0-cp312-cp312-win32.whl (243.0 kB view details)

Uploaded CPython 3.12Windows x86

cachebox-5.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (526.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cachebox-5.1.0-cp312-cp312-musllinux_1_2_i686.whl (545.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

cachebox-5.1.0-cp312-cp312-musllinux_1_2_armv7l.whl (603.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

cachebox-5.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (504.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cachebox-5.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (350.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cachebox-5.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (400.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

cachebox-5.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

cachebox-5.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (338.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

cachebox-5.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (321.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

cachebox-5.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (370.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

cachebox-5.1.0-cp312-cp312-macosx_11_0_arm64.whl (297.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cachebox-5.1.0-cp312-cp312-macosx_10_12_x86_64.whl (327.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

cachebox-5.1.0-cp311-cp311-win_amd64.whl (233.4 kB view details)

Uploaded CPython 3.11Windows x86-64

cachebox-5.1.0-cp311-cp311-win32.whl (233.6 kB view details)

Uploaded CPython 3.11Windows x86

cachebox-5.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (509.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cachebox-5.1.0-cp311-cp311-musllinux_1_2_i686.whl (534.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

cachebox-5.1.0-cp311-cp311-musllinux_1_2_armv7l.whl (602.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

cachebox-5.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (501.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cachebox-5.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (335.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cachebox-5.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

cachebox-5.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (366.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

cachebox-5.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (337.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

cachebox-5.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (318.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

cachebox-5.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (358.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

cachebox-5.1.0-cp311-cp311-macosx_11_0_arm64.whl (296.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cachebox-5.1.0-cp311-cp311-macosx_10_12_x86_64.whl (324.5 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

cachebox-5.1.0-cp310-cp310-win_amd64.whl (233.4 kB view details)

Uploaded CPython 3.10Windows x86-64

cachebox-5.1.0-cp310-cp310-win32.whl (233.7 kB view details)

Uploaded CPython 3.10Windows x86

cachebox-5.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (509.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cachebox-5.1.0-cp310-cp310-musllinux_1_2_i686.whl (534.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

cachebox-5.1.0-cp310-cp310-musllinux_1_2_armv7l.whl (601.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

cachebox-5.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (501.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cachebox-5.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (335.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cachebox-5.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (397.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

cachebox-5.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (365.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

cachebox-5.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (337.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

cachebox-5.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (318.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

cachebox-5.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (358.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

cachebox-5.1.0-cp310-cp310-macosx_11_0_arm64.whl (296.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cachebox-5.1.0-cp310-cp310-macosx_10_12_x86_64.whl (324.7 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

cachebox-5.1.0-cp39-cp39-win_amd64.whl (234.0 kB view details)

Uploaded CPython 3.9Windows x86-64

cachebox-5.1.0-cp39-cp39-win32.whl (234.3 kB view details)

Uploaded CPython 3.9Windows x86

cachebox-5.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (509.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

cachebox-5.1.0-cp39-cp39-musllinux_1_2_i686.whl (535.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

cachebox-5.1.0-cp39-cp39-musllinux_1_2_armv7l.whl (602.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

cachebox-5.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (502.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

cachebox-5.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (336.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

cachebox-5.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (398.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

cachebox-5.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (366.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

cachebox-5.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (337.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

cachebox-5.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

cachebox-5.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (359.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

cachebox-5.1.0-cp39-cp39-macosx_11_0_arm64.whl (296.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

cachebox-5.1.0-cp39-cp39-macosx_10_12_x86_64.whl (325.3 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for cachebox-5.1.0.tar.gz
Algorithm Hash digest
SHA256 8965896466bd461d1d61a0d284c79659b37523cfcc826b7e1c0be4c32d70fc72
MD5 27d3449cfec319a5fa6b740171815e76
BLAKE2b-256 ec50c5caf27e1a4158c3553d208a23f48c4c89c8d8b3db1ec1ea3a3500c97daf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b788d18d0e7d7c60f6ea02b73ec477b47d5ce3c16c68a0b4c1df1f09d52d267d
MD5 070be86da7a01ff8518715aefe041843
BLAKE2b-256 65e9af20ec4212a3b388161dcdd60288c7e680158a965f4041e3843bbe6116da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 228acbf33728cb666f3d5187d6d454d9e5b9005efa2fdddceb3753d01a9c0701
MD5 c669abafcb6fc13ce6db120d94d41761
BLAKE2b-256 b02de8b052cf42c5264c880c660fb09807d2797f2e5c5ed35e057f5e9ed9e093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a4ffcaaebdb4b5030f99c65cc81ede1792a3fc9b06f236c6d92e5a216a16d158
MD5 8630ca8e4d6b69285182c200a15f9479
BLAKE2b-256 8baecdbf0b4c3ec599cfc1d1676a9a69111ffb385e6ba6a7999e8044ed23445a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6c8ce027de92ea227005145bf3ca09a90f3c9b37a823de7e610075b9ac8405d9
MD5 439caf224fef15d4f297a8d6b68110cf
BLAKE2b-256 e23e87bec60689603060c200fca286a25c54f1ddfa2418550af4671f37f5ed12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f88919551ddeeb04f693ed2f9372c92e5f597cfe3e4a21f9f6239d708997b409
MD5 7cffbf7b296a3ee281447c227dfa94e7
BLAKE2b-256 5eafd231a94c77f503406979b274c2d92c91fbd982c80fbd168299cbce9651e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2453aa6d95eccd9c407b4eb9b9ca13becba343d9a06045c6fddac3beb3197853
MD5 c78389b3908a3cf60682f64c4797616b
BLAKE2b-256 82bae48aa47ac893cd797e8d427dd8a3b1c98f445a00bd6c7a57239b3a9dfabe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 49af926cd4e7bff3be6a8750f6c3eeb5dfa5b7c7be1b786a99ba056af6817b79
MD5 42bbbc04c1615e555d31420ed881c63c
BLAKE2b-256 b24767bccbc2df82249aad355057ace89861e8a451fa38d9d712cbe6335e4e69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05a3183e5c698a895dbece0c2d429abeebe91b5a8efbd1d08993411f3347b5ac
MD5 ecef4df4ea2d0034bd77c260b3dacba5
BLAKE2b-256 11305ca23dbe6973e78c8db3d97ede856cc3e48a13878b2f4e42401d562686b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1dc8a16e30d4ed0c2e8ceef2c27c3fae6de64555b91ee47987b7f888f7d86e8d
MD5 d371641a56d293feedf91f7cd35b0aad
BLAKE2b-256 fc45502341fb1df1c6e52ccf27e7f48f9854d3052f9b85b4cdde0ba830282b90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02d46647c828bb712bfba6d5037996936bfc2a7ec36fd429540fa88038c32a46
MD5 f49c050cfbe071506039911537260fdc
BLAKE2b-256 e8a8feaa2697303fb8730989b00e55badd4a1fd6755c26e8d739454de78e09b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2631e0749dc09b107d087715668f4e0a56d4c9a9ab5d39d5f73415b4c4731b9e
MD5 52c607ceb6d3cc71fa73eb4efcee0d02
BLAKE2b-256 74c35d54eb5bac6bf43a7b9b3ea1d175d430d7f40310dd7cdba3325f1cdd2baa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66e8c13cc960441492327b3e6723e9bc17798fc16165846e009e1f60ee6c2905
MD5 d0d7a993c4625d616cf3a9aed18b6e50
BLAKE2b-256 33c6feb706729f9159feb3bf27afbe1fd4615cf797fff079b04d0ce98d4c050f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a808c7eabda59f610243279f17448773c9415662e483b634c69e7c8622ffbf4e
MD5 642dc4a9c339fde5fc0919ddf6d0fb61
BLAKE2b-256 22bb0108a15953ba12a2fe8ba0797361b68f131c93f6af78a45a7ef2a4489e20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 be57c925fb028b44673bdaa8d431ceed08c291cbbe547da8e47fe1c2e42f8b3b
MD5 51d8dbce16fb196434f0881bcc0cedba
BLAKE2b-256 a423f23f8ab49352a61c245e7cedf6ba428e83c6319aac896bc240692a44255c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-5.1.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 c1cc7c7c0126cd6b717a433a1a2e2072184ab04bf19ef605d312d77c2656ddeb
MD5 1a116bf7a53c7a936b5543cdb5b0c77c
BLAKE2b-256 40404bc4cb2a63b55fb20156f42ffceb7c3f409c997023ebd47f9738190c65cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4a05f1ab31a428ae11dc9fac72125b68e93a27ef592491ecdeee3b666a39d2df
MD5 a6a9a81b7bf0ed4cba598156f33ef642
BLAKE2b-256 3bd0113d459f388464a51363af5b16026be4b549de66f929f5c44aebce3c3ecb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 660ec6e5b1404324efb6f1e1285e1e57b0e5ca87bbee56026618a17fbea0bfa3
MD5 89dc8a22e1363788af8f08e1132aa73a
BLAKE2b-256 7e6949d5118d12748faaf0c90d550a70c5dd73ea216e7fee82133816cc582db0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 32e1e901ef878b1d94c3068500b4bf0254d094784d50aa08eea508b7c4deca8f
MD5 33b0a67c813b3fb3cd68d4be4dc84349
BLAKE2b-256 08d5b309fb7405523756fdf62d94a57aa9d27a735e4146a2ac1355fac98683b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7389579531ed61d5d5d4088083e9d0a46ab2c71bc2bafc2bc4fe52ddf608de8a
MD5 dfe171fc6ffb218d928536a11883114f
BLAKE2b-256 1cce5772d6dde8a104d2c0b1adf5317a4b815f8c2c557f93c788bb9a39ead4a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a051bfed9b66da47cd453d9e693676c041802ae9b507913e27fd6762367f7f7f
MD5 9d6f5aea24242dfc8fd461232aff5ed4
BLAKE2b-256 9e6ffb9d5b3b4c13c074426e227a3891c43865feaaeaac04bd5aae8c8664142c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6981f9951cce6c2539eb6fc65a561b7f798fc5bc862e0c86cbb12e0c45589043
MD5 b3d1889d6640e52a5c39388a5cd21a88
BLAKE2b-256 c681ba0887d273da5e0ede66995f6ba706384133b2521fab5d0b4040197f4398

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d12121e6cdeb2669058cf17f6e9bfcccaa57f71d84438b45acf0f2e0c6a278f0
MD5 89963a3ced9a185eeac6b249dae51d66
BLAKE2b-256 d81125c531251119949dc2f452a141940af972148e2f5e12903b86670675d74c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 04702cb4608d15812cb666867739c37cabb18d368fed03c800290bd62eba5f69
MD5 e040dc0407fcd1a8675ea60b6eca551f
BLAKE2b-256 a2f35a3c07ca6684732463f2a7892ac33ed30f97ef2407c3cbff2536703db5d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b48e584e027b028cb6fa1cc2123019c189db3e34fd0ab508f674d4f4693f9e0e
MD5 fcd86f57b48fb023b0f7223ee6713266
BLAKE2b-256 4cd17dabe7af1020b47dbc434ebed4f1c9f88d086dc2a5482d5a39f29004ee31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7673124d200586f697d166d48281538324677234e7e69141a681d6824d074134
MD5 907ae7e03ee4670f385fe32f562bf6c5
BLAKE2b-256 921a6f067944a57c1d1c884542754884dadac7acd2e4b590145336a68bb14014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3894c38f90ba9174a4de3b25bceb4789ce85d5fd77ea0b48590db676249c4215
MD5 c6690cab7c82ab4d7a9502b1a438e4b8
BLAKE2b-256 ca492b9924a8c4a55d13b9b8dfcd2c4f1d3a43327ff26436af801eecd6198a1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8bbf7d62f9f157fe4dc8a362deea14b8ce24b66926184e230fa5422afa163b14
MD5 f82f4cb651576691b844ab64a65bb0b9
BLAKE2b-256 f7d9f8c9a3d610abe4710ea0bd0c96e9bc0eefd3cf2885e62d34a57e3c07adc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 a0b80ce434aaf307ef8f99710f70a5c3b6a8f5e23c3bc795b56ec93642934ad7
MD5 ce986e810871de5241cb465b939f4a24
BLAKE2b-256 e146388ee16711cdfe6d5bb6bf136706987a4582c5d57b8ad986e33357b8248c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-5.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 6e987a1dda4bc136111ca38338dd61977242f979ca28d743976a46594067c2c5
MD5 05ac2a1506bf43ff2f12b8b149919a4c
BLAKE2b-256 c2aa3398187b8ec9b37e9404b606c9fef5ac352b4a1046ad9a3ce58a50b98ba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40f7d5ff696f03ef4bae4a48661eb90128ca65e984140793c65d3846a86fa0bf
MD5 ae92a74f5e3248bef4c1fcb10c8cba4b
BLAKE2b-256 6c487556a7a6189726b74719a4d926b1b3c95392893f3f9dce1d15ca900f5c64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e2ec7031dd862cf7ca1bf71402ce46bb2023ce782e716347ea0c8845b4aeb5c
MD5 4ce86831761d76f098209bd4cfb1c453
BLAKE2b-256 9df5de13bc75ce8358fe6b10a8134499535590e059045115e0ed9eaf349f0b6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1798a5fede64452704263535832e85d17f9a62121a476f8e9a3fb98f6067080f
MD5 e0a0b1a89e3623d6c5b122aa1842b2b6
BLAKE2b-256 bda964e683a9a11fb3f7aaa203417d79c000ba2608a1588ed981802b15a70fa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1296424ad3024b7ffb6b428c1ec906a6d189c543e73813d66a448468a8b2a20
MD5 f2c4d6af3fb51f4c61d39363ca05e188
BLAKE2b-256 9e62a1d4ce6ea55b46a2a868b3819819806e2571bd1e0d833aaba71cbf7e602d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2622d1c44fce962d5af7dbb8c2990d4756e116a21456622203439531cb1dedf
MD5 8000e83fc3b7424c2ee7a5c87c267356
BLAKE2b-256 e6556048f281f66a020579dd433e7677af2c10366aac83a28436f4078e5bbd5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 06cec01c5772b5076164a16068716b7b80ee69ed8ec3b435efe638fc21910769
MD5 ed38756df15a54ec23e1c05646591efd
BLAKE2b-256 0f766d5e70d7f3f4e94a0a5f7e1f199604f2e381cf5c9b805002a0805624dcd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f4160043c5b8d9be6e689605572aba26ca6c206734920c3b61c6ec53342ec140
MD5 551ae7975778754fda42eea0a51cbbd9
BLAKE2b-256 6b2a0365502c9c98a9f26dd39b6e79497f1668ab551965ad55e1f8a0ea67fb75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8789e6bf8cc87f5dbf24e081eabda0924a147a3186a18136f46a34f942abff6b
MD5 6396fb2f40f3b9706505df6b40bb22bf
BLAKE2b-256 a7605ea12a1eb1780095d3eae135b8c66193a34beab62928e9f0e286cef72a43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d678e1e1d35e14f6228c37038d84007dfcf45d2a2242eba44a89ef85e7012993
MD5 d430ff09ff32c39d511b31ce055ffa85
BLAKE2b-256 b975a331ac123f73b59443e243f7adf8d7068ad5119f0d862d20b20ddd88779f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 714f51ac740ec61a7a77ea1a0b6e64be2b8d82300bf4687c592c0b5f1aa6f175
MD5 1e67bda75ac2907df38691ee492b0315
BLAKE2b-256 bfe72aaba08f32f72561c645f2c3b2939e827738b88b8f28e5a2605379a575b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc8702a3a338a5438afe5a5905b09e4c61fd3e4f6d18990e642e3c61762c2f12
MD5 5b7d1d9f4d8d60068bc3fe7c18decb6a
BLAKE2b-256 2c4a30305acc069749f5fb210c9fba01bc3665a0eb75cbc837122b3f1ce2a2af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d80dea9085c9ce950bdaaf1a3fd921c10038827a4555b8a6851e1e800d114db2
MD5 8f5c972c7944cb477eee84304d60ba36
BLAKE2b-256 0ab86d7e00441856d16894f9088f76888494cb48b08869bc5b2131d3a44811f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 fee3be76a908adc3d087142c28445d844543ba882c884a0937f265df8f2a56e7
MD5 22a62f0b96346532e94114d1f8ce7459
BLAKE2b-256 93e4723c68aa13b2d53a9df944695486dcc9385bd55836a3b644b63bf07939e8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-5.1.0-cp313-cp313t-win32.whl
Algorithm Hash digest
SHA256 846f843ec966e9c2af17d410971d22b1e96604a4c6e44e2e70af86adf6746411
MD5 12f729804d129c3bd274498e1eef7c0f
BLAKE2b-256 542abaad584320e0881457a4f9dce5cbfd897e6d4aa9758ee82191622634efe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ef958c6e15b18d13ac3f9a42145818cfb74b3f1ac6439414ab17e145e046b97
MD5 d927dfd02bc8e0658ab2b904f69625f5
BLAKE2b-256 cbb588abae969d84112a2924ee278236a8e2e4ee4adb4fc76d891d85c505346c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04caefe127a26fb81b78b6699b2ccf69412608a2013311165e923d877fa64474
MD5 addccfdef4bc277d7925092d27dcdcf8
BLAKE2b-256 89f8f9af81288d4adba8055b1ca3de799fb085e94490bcddd9fc9465577efa12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 39de01cdab50d750550759e8d468a837621a2a463d39508028527375475e669f
MD5 98af5ef9086b8976e9f298a3aa252873
BLAKE2b-256 ab82db1235b882314cda2d8e0507a8a7feea5d1f66ffb19256e25cc37bfaf60b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4da0aef980fb2f082d0e01a17624bc4973638f2cf2c64d4f9dab5a756365e86
MD5 2674ab7de4e5f03786c630197e9770fe
BLAKE2b-256 6725ace2ff5298641fd347d1e8e78c5e7da71b3bea418c3807459ef1816d7579

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 130a6b3d15be757f826e98c5f35524abf459600ba5e01cde1a4784c441684453
MD5 0462c2c60ab0789f4f852f4689bebeb3
BLAKE2b-256 a3e2fab94188ad46a2562fa778f77e896824c8d79de0cadfc1fd320303866a8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5d15f664646bb847fc61ead94c9dd7143dc0c60915ef97e8f3ff84e800337fd4
MD5 0170d51cec94794195b271ac77ce5d08
BLAKE2b-256 97c446cc23797f281b7b4d371d139b9753d01a86a31efe0a0e65f281de41f108

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c6521aac66ab8fecd58a8209cca624679ccf1c6d48bcf863e655734fd6a6d9c
MD5 7fee4c43e4e4e9a0ee8e37a7395f2c21
BLAKE2b-256 011ffdbc07b13709a67a1d162eb92e9e242c98942ce6b6f7e39ba67d6fad132e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2733917cd72997951ff63d63a0c32f61150e671db9bc359d03b8e4bb030977e4
MD5 a66fc95507bf12dafa4879b9a911787c
BLAKE2b-256 f27bdbbcb9ee651bf162c7a006518a68fb428382db01e8f6a06053f81b974994

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4365a9b4eeaef94d0ced0f8222560e94f6398dd1b97d2bc54ed8481d64483c2
MD5 0ea5ecfdb6a81bb2e5eae0450c1c549c
BLAKE2b-256 906ccdb76f2f328edca9d3b77df28ae3538f99caa029916be3327a457e6eb0fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 77055db785d2db751ff2a31e7d34c4b235b82a402689954b60312b8ffefc19a0
MD5 704ac9b4bce7f9e3a897503b2fc186fd
BLAKE2b-256 dd47588f85829c2183f8d8fc1592c183df7f133d5127aef4b46b839bcab476a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8cc92995eb6256fb9c17c1303db84c61948c90c557b3b8833fd41278b17a0916
MD5 588c8254d355050bdca85c5b0958acb3
BLAKE2b-256 672f15ef8b4e56ba2ae5d19c8042685caf11428263e7345a52d428e28ed446ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a358b5fa793ecff2d4bfc30207b810573a5b06edc9a731c80f06f4a7c25399f
MD5 3ca516ceedc230d9e1e9badc75733ddb
BLAKE2b-256 d23dbf7df5beb5b8dafde9b7737388ddc90d1c696919592118406e02c3c0b78d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 254b3ae4bbb93a7892defd3334a73e06a69eaf1e7035ce60c7462f90aeb58195
MD5 ee63bec590e7e5a31516813bac365d52
BLAKE2b-256 c095716ae9b893fec75e28628fcbfaecf963cbb721c03e32cb956ad2c259b784

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-5.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7f9680bb67f5d5de5d733fc464a988a8f22c1bd097e425d51d5d9591e2e4844f
MD5 77cf49cc9343ac869f933cef10e61aa9
BLAKE2b-256 1be82989a3dd4e6ca6df02598c79f6bf752ad6ea241682f67bf9b9f81ed8e03a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c6999a56ecd9b693869743cbfff9f263b9bed1744152a66f35800a909138468
MD5 fcd048d17fa194b81fd119e4f0400c48
BLAKE2b-256 6f66d7ed49c3acc07e3f256dafef59af5e5dae6b58cde650863049d053e0ded6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b894f117de034eb33f330b42c24b64cd357de42e313a24204121696a5019d048
MD5 6d88c4aad826c684ecc1d8799236ff87
BLAKE2b-256 ee05a14a0bc3ebe83f3137dd97c7e969041ecdec1ea683450a009f4d3703c88d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 338a5fad1b77ebce1b4c7dad6bec0ff40b6e6254de3d94ebdea95cd8bf073bbe
MD5 9df7b6f48c362148e369e3e06da889ef
BLAKE2b-256 975b556fd48fdf10021d742dfe7691f654d38bf1be27a118fb422f7924871d36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 84816abbcd75e764c0a210edc96f00c14dbaf5f015553b3a2b4162395e1182fd
MD5 2ec3e2bec519508feb809d42fa56f6a8
BLAKE2b-256 ed23ce71b0a894d4edeb586597411c3f99fc15bbb5054dacc56e820fa02f4518

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 abbf99f859a2f0e4c144d2da800d82bcb6e7aa477546b5fbbe2fbe16c6cde072
MD5 715e62adeed23503d043f8e07320e097
BLAKE2b-256 fa15283e8b1e2fdc89e989c1f60bbb1c1efe2e3a76d433e113e09d15ae22b6ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 de4fe917fb67f235cc1c62e386d63f42e427b7f07177d2e7741a1040220921f2
MD5 250986d544fc8022b46d06013f235b47
BLAKE2b-256 0d0e8c9491fe588d0f55c52c351818d681ad9ced8cfd84589ade327583742f5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a035befa2ccdb5c3677f4fd7018458486d4218774d60938425479e1041b74e3
MD5 5079383cba34b9dbd47363379b641384
BLAKE2b-256 43b08825d7f9831b13b2c0e3f4d42322ba6963407afb6810d7f7b5cef2db682b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3196f2b3606aef8734a50787f7ef19275c26760eeebe333f8b7ee3d1c2f7ad28
MD5 e616ba9d310d19a82659579125a185ec
BLAKE2b-256 7607c0838d83d9877a17a01ebc4741caaf2a191e1c1453d8f0912a5b107a7224

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b074319869f91cfe704de5e29df983fed754e73873686cab2e14f022f056c6c5
MD5 b769b6406e9015806ca50dc7b6a26313
BLAKE2b-256 df18a4633124b1ebdd577e476fdc479df1eb125278a3a2d0059aa686c4fb240a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 62c20c38e3277d53ffd8ec9e55ccaf0211ecc1004857f897380089ac935a83e1
MD5 f07e9cfee9cd27ee7c02d5dde0fb2016
BLAKE2b-256 146bd574dde4d6128b493585d17c6ebae45422324ec2ab19e3f1ee81cfdaaacf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ae0196affab64960a37bfd6d165a217ef81a848d0c1852bd299d828451f3b27
MD5 f07f13aa53801b702d2ab335dba4f91b
BLAKE2b-256 3ff84159acb3543484efb079f9982e353da7bba76e297d48bb6ad2eddaa6c55c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6d6bed205c1080d921bb9e9931f48c996ed12f88066c7a68ba8edaf9a50125f4
MD5 ce162381950d591118c6debc150bff82
BLAKE2b-256 02485469ab84e255830771a2d4c195efec5ce368b59bc240f08f9912717d78d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d8597070d724f39a71c704135dec8899fedd05f10c0a910ef7c606fdf6ac7f61
MD5 95f5b907da668ba091edf4841f471891
BLAKE2b-256 4c1b74b59e3fb003b601a193c3f68a2fa479c04e89ca11455c36a5755d4295c0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-5.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e7d065c4dee0555513f381a8268731bc8cac486e946bfef947ff67bdf4507616
MD5 1e2b38af712a13914a522c06c50f4b44
BLAKE2b-256 cfba5d639cd6a4c52c1eb44052efb94997ef9dc1d379e5b32cb16c89f93c3a68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8e9a70de1ac22c0e1c5f37da299fce841dbac65b86634dbc3462f23e8f3ecc4
MD5 44b99c366e2f93eac16161e5a61b1af1
BLAKE2b-256 1d72ff88523d363193fda60f7b565504c19c443b13854d03235eb5f3cc56f45e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1d966ae55c759701d13173a6fa1033321cbcd540168539983a6beb302ca8cb98
MD5 a3e2c8c0d237e3aca121cd644a0e9d59
BLAKE2b-256 d2ada0dbccc2342441697ff3375148620149f6d3449961636d622cac2f491de6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d231a11a2c52e04541b5e3639e39d18249a7a05f9b7726f3787371cca3015d1
MD5 215817829429c967102b41601656674d
BLAKE2b-256 ccfacb1ca2dbdebf03251161ecd396889560fa91b9613208a3df2f13c5b375d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d82ccb355daec57b0e442d9a0440f852a08d436e2678e7e798840e8941e81e1
MD5 305acc017ad2285970f06cfefc041a00
BLAKE2b-256 32dca474d09d6715d4940b80d0025a420ad1ac83448c290b39613dcdcad05c85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 488b61e3a4b8d72017e6449a8d27c1dee426bf3a165fec320726bb05889689f2
MD5 d9dd007489aace7021bca2fa49357533
BLAKE2b-256 5c9e926c91dc0ecf3ebda969b141470c629f755af93a82d2b9a7053df08020b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 45ce4c2dec32e57891c37c9965e293c2aa05af59014ce3ba8f83330a50ce7469
MD5 2e70516c19de77583c278585123dd95b
BLAKE2b-256 b53a285674efed3ce8cad76598a3d2e2f0b4818b4947920bdf7b85f07ff162f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1050e0cbaf558379973b5d050e866731a289bae87ffc7fde17519f6ffd045314
MD5 319216d1b3f3ae05bf5715d52fbfc15a
BLAKE2b-256 5e1ab3e01590a5ae8602cad78c9e1e094cf5124d174e344ec94ca2d2b33b239b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 618d49dd7e76a29961436360382b864ca2e72e2a60b03fc3baaba2e39ce90160
MD5 0eddcb483c0d599f877bf724f3751bfe
BLAKE2b-256 c545736ac9bc46787147d39d3fa1d4265644a5e9eeb0d73474b68b471950b5eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70f7af6087630902a0e995045b5f8d54add3e29616ef96388370846575cdce31
MD5 bf8e85f43d66e252949376ed56eba63f
BLAKE2b-256 75373476295242ab960feeb256ef93818354819be9e384890a11937b67071ec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 26aadda04b251fa84adfc0d16ad284c5324c6b7f6e073c108db3d951a1566e39
MD5 ef26131bd7e024a763b56fe425383b65
BLAKE2b-256 4ca8d87a0a6ac376637abe2b5ebb4bc6f6366e782e6ba87d010d74d2fe2bdbef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1f99ffbba7f97f359751b9f510bfc4796fb560eefbeea1eb2e661a14539b392
MD5 10ae46a61c42461ae43dd253855e4c71
BLAKE2b-256 d80fccf36c88875ea623ff7b0d363abea134158047c016429c0bdb2a6606970a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 258bfaf13367cef9f1bcc8ce152be9c3824d71aafd5a29b85537a2b056608a7b
MD5 6e2debfd702c86dbe0cff19460034b7c
BLAKE2b-256 bd78ab321634111b8ab7726b2ca98d398bd100831114eea41eeba5d0c5db4a9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8181a8f552642fb1d32115ed7b058363df4a6225fcafcd44c9de6256c9d8f91f
MD5 e6f8d5e415775d5e4eb46fed7581d730
BLAKE2b-256 ca9ce88a9442277989dfb5c480b3b969378474450b15a4a0db69993a75b32ec2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-5.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 91e2eed4a5491486038282b8d12fcf78ebbef3ddf8cfda63fc566ffed6252a3f
MD5 90faa617cb788b265c4865bfd22665a8
BLAKE2b-256 8c02490b8029b2a5387f568b77869494e89299462045763e943a4469eccb24bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f249abcd801feb947fb00bc52e9244c775036a2a86423b96937e863cb673037
MD5 e511ec607b10ed142c2df55ba6ffd27b
BLAKE2b-256 40fd5528427c4add2dfc061600b7544b30b337695caaeddfc91ddf4594e4def6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 914691c956c695a78976f62acc4966f1a18b6a0d25f47c4b686fbe10611ac914
MD5 5ac59ef348dde7400e8724fea96b2ab3
BLAKE2b-256 6a1a5b83e2c16f0fcf306e516a4f0b00a62f56693a313621812d08449489663d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96e3d23bf13adccfed8340f848d643d84001ac3fac981f2167e54c5e6737914a
MD5 bbc734a955dbf20e0bc4c260ab61e8c0
BLAKE2b-256 27f608e4cd12377a84021a763f3684f166655af9e30835b30b78195f5abde1da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9d209803d95c022ad8854e34acf577b05fc7feeb80555a5052c0563a7b1859b
MD5 55b55659fe8992d30677471c6d9c2a0e
BLAKE2b-256 5358d39aeadf5ca7c0f8c73f79afd68f694cc74459b51de9698fc329de0e1f50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d7f90838c266c49a3f97149ab0975f2531a36c4365894808fc05622cbe1e968
MD5 e6f3bc28e1a346d7083c7b2662cbe53c
BLAKE2b-256 ef1f3c9ac3268e637d9c020a3d85bdce209a4794fc5a62276894550f5f66e6f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ac371cb20b1ded3ef7afe792c74b85178fdcaa7c5d358590eaab363f6e887bba
MD5 eff1d58235287869439e97acd8607ee3
BLAKE2b-256 55f289197620e43746f454a710cbfc0bf9bef7c6edd57b21a244f26177b2496e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3af8303434140dcb8358f0424df0831aec9c38625dc41eae93cab14709fc7d8
MD5 11cc815acb387a505c35c060c6a7b62a
BLAKE2b-256 79e38c3185126b308fd3d2bc8364e01419e8f26ed3f4286bf5359adb04d834ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ac85cf1ac91c3cf36f177c159f87c4ad9b833c56e8590d368377523e2a2b3f5
MD5 d9bd982a410668c53317b76a70013a8d
BLAKE2b-256 cb167e8884b1b630d28251b01b074c976b40b2c272808028f8a48b52817e8fa3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8623374f8eb917d78618106eab85b9afa7c04c7caf3ca7aa28480ead017d6985
MD5 949df6095a0eb3e028a9dfa1cf74687a
BLAKE2b-256 9063b775955578c9ca0ddf45590e38978479035524ea4d6841c2657a2891450a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bc46f1b3e6d79f819599330b871c9f7e87735dbff6333ba1d4ab18eddf0f77ef
MD5 1d6b454773ad7b02f274bd0d29d69c61
BLAKE2b-256 72c64faefe6528eb960b6ba3791e194784535f5bbc2a19e5197a7a8fb7ce28d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0226c9d438fd4c6354911cf491053a9a4eedf091be0b44f2afb384add71b3a77
MD5 8323b718b915ddfcaec2ac5344c9234c
BLAKE2b-256 9d445d4aeec75008aabb0c6f5717193762085af9c618d32c56a7a464a1bebaf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 945ee55a4f12d17878fb0d4d74cf9c1be33685e90047ca05fde7b526e7c1ddc3
MD5 950dc68a6b9761228a5ba9873104343a
BLAKE2b-256 9ccc6cea06869910a885f03d6c6f40198d1f5c5745054bb6cfae432241640c22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 177ad01c95f20ef7c81f2f8c839060223dce2aaab7388a677fc369456924fd9a
MD5 d4091e1c6baf9f8f1369509308eb3460
BLAKE2b-256 f91d5943ea2f3456e90d4bc31ba5f7f7a0fb7b5a25ca2599fcb6ec25634a290f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-5.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 14abbf5ec1f2f30d9e29597a5577250403bde0ff92003c62dd26863a156ce82d
MD5 72858ad7e676d1eb2c3dc6c6a1f87abc
BLAKE2b-256 6ce7ca0ed4665a2556c162f93e165d83af1f6ba1dda60312eb292a33d3fac810

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc733a274b1bb253b88057953f686b7bbc9e62668e6c67aa8600388afd9bd188
MD5 cb8e9bc21cd14d804c1952cc0c2aec04
BLAKE2b-256 316baaa9db3e2634895072f5a72deba4041c7137b8ec0fc55c33ab8de992f852

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f6cc0edc9a7c15e61eac13bbfae86960e4edb3ce528ef6f0de3a23915d86c9be
MD5 148d9792b7c761bc35a5bd273589a5d3
BLAKE2b-256 25a7783f0d2bb6d4a869903a2f10fb0be9c48a5788515d593590f4d6955c0a8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0e4e398f1582db1d24b74654e74203937129aad0bf4c473642ad1b9e3a78570a
MD5 264858325d6eb9a60afb373953891356
BLAKE2b-256 cc0f342efabab330ff4c69a4b8ceed9849423d57398a88a3ebb32ad7ecc0f16d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6e7a2a64cef20472ee341af215630a61a77e5de401f2d4a79fbfe21ace29d430
MD5 f0c01ed763eac2d69bc21f4585c06f69
BLAKE2b-256 045ccba6d3283961fb4c4a338cd4c5db76ff9d2ef89bd06b8081bb3268d0365e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a443a21fd701ecf26f45f5654ff3263dd2f3a924d9c0290d6a8a1562f679bce0
MD5 7adfdad9c5160c13745ee3e2266649b8
BLAKE2b-256 045e15e958bf64cbad4734a5fe35371a131fe337ab0a049261edae25d264511a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b5cd9c0708f001fb9eca19a938d2ef1d3437cd454632813a3b246fac455f09c
MD5 6e8c109c69dfc436f084e2493f8a8e94
BLAKE2b-256 2b55a94e4a4fa25c874200e2d1e548da74ece83b2692bc8b84afe814bbdaec53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 38ab581c9751987cb0989d99f2df25c630315047151dca98585f2fbc8d15e847
MD5 cdde531b6b93971945ae2b87b99ea3d5
BLAKE2b-256 078f53dffc7f1c363b40562b6b81739f515bee63bd1adc71ca3b0e985883f04e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 47180bc4f2f9fab0105c65752d21527575fcc8af13d2543a9fb42809875efcf9
MD5 82220f8e0082bab179ffd87bfcb2eaca
BLAKE2b-256 c6e47aa21fdd2b8c8728cd9c9921c488c712ee67c08c53f2bb30ce9c9a0d34bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd3e91ef8f9d1d99befe27dd79620679f0068ee0b67f2008aeadeffdeb791615
MD5 b35c4e47e012c4d42b4a13b105dea897
BLAKE2b-256 c437919c81d318b965322bd6d3c9c79e773a8e0c49eea8f8dc0a6c4e1192670c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8c6efd3d1af5f19e46874274c6cc3fd568bbc403f6b3b0d356d8341178a0467f
MD5 b11cd1326ac527135f54e3066c57990f
BLAKE2b-256 3bc251bfc49b6d4c192d41b667187393443c9ef7ab8ee47aa77a75eead986da3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 201df6bf7d079d53c208cf49c78c350ca143c7171736b753c8e1cb737738da0b
MD5 0775789eb3c3e9cc4f4425b6bfecab95
BLAKE2b-256 8fc04b5c12ca85ea9521b04e1e6e3d4bb08f7c4bee9ff9d73458d9c43d8d3136

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 28b9178e1aba8518380e9de09d0e5576276d25816b06f28e36245387ca39a5c6
MD5 64b4baa624878be5e8189d31ad74cb04
BLAKE2b-256 7f082d534c87a6c9e406609876441bdf847b5f64d78cd7766904f914d05f9e81

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-5.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c27c55a5e3a473014d266e584069b861b79fc5449d8e2dc97a7e4fb920f07157
MD5 5932bd17b7df5e8ec447e2b2ebdae676
BLAKE2b-256 e9fae6e7056a63a9565d829491ad5ad65307a6733e39b584c47c8b1def43f036

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-5.1.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 234.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for cachebox-5.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 a8b94fb7bf9425652ddb6f6e85a3c7df1b69b90ba7577185c27182b9b8c973fe
MD5 4b38dbd118edfec9b7253a61049ea024
BLAKE2b-256 172c41d9e6191abc1ed080a4a61e5604a1f377608961e58821154c1ace854448

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d771263ff384be7a3459ac60f6ab97742d330571b8527e32a80513c9d01c464
MD5 ea8681f543acd6fe38c7499b0663e959
BLAKE2b-256 56253bdf005656a2399efc9da8dd28f36b19e5d27054bcb727679839cee2b536

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 af667b149a894ee22b043dd801cb8ea6574c5a62b39b648c36d7d8b2f4f8524d
MD5 c638c40056cf5fa2d357cecce620e7fc
BLAKE2b-256 1c92194c30e30549663cc2bed9fd049cbd2ebfcc06bdc7f4063650ba8fd65ff3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5da9f17beda8d947fabae096f36adcfc667bcbd77d79b47d1c311eef7de6e030
MD5 d3d5e5c88d2dc99a25be0970a9e4d18f
BLAKE2b-256 c236ab37ddbc69923f45fdc6adeff25a446edb69e3eaa8dd3b95a36191f8d432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 660d521dcbbfd6598067c8cf50e442661f81dd79a41523d8a797c3989b544798
MD5 be4f97dd47d94eb0cb084609128b4f04
BLAKE2b-256 43b193418b7f219b453af3822f3c0adc2ed6f70e0940fdf72a3c7233e041f138

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 503bd04c566a6a99b35ae820aaf0938109017c039f7fd940b7ef50e1fc242266
MD5 416173ecf8dc116281936ea9b4ca8280
BLAKE2b-256 834820d6f37f605df8335a0506ab4897c5f506a7a4fd8b62fce94ac09f68ffd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9b35edefe403d4216d7948d79cadb85c113a0316ef56b9a39fea40cbf5a619d
MD5 ff8c4039d364c8fea89d16b656e53161
BLAKE2b-256 44a050a8e9f48aa824385d947560b0ade68860797c3f94672f424fab3ffa5770

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 35648a84754669b668a8acf4a6f7dbb773bf14c2dbd8149b7e7cc2210b0b07ab
MD5 2ee6a7003e9111f44225e7ec8f2ec232
BLAKE2b-256 2843bd07e993200a310da3fc21f1edcec152690400aada816804701144f95285

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba19f12640e0f2a333cd22f68d2821f202719fa568d60c4f118073ae4b97dfb0
MD5 7ee058e153f0a5899a86e33f20879a00
BLAKE2b-256 762180cbbdf19058823378a3d6ceedb21a4c35bb0fb3551f5d2c0aea60734795

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8831a28e18fc57f760acd3fac492dd91e41d0c2606aed6b5efb73efd13381ba
MD5 5801d8bf5bdbd88d0918dbe7237de66b
BLAKE2b-256 037f756223ab37ca702fd1132a13b384a2ddd91569b6fa1c12896f5857046243

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fddf1d777b855afc0e7262a2c5f85de4068e708f1b23f6e31cbec6939ed20b9d
MD5 fdbf1482b4527050f48ce44284c695c8
BLAKE2b-256 ed44f640e255d3699dabc9c6578b7fe1eceebad27cd02e840154e60bcc3c42c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cda9fd6389b1492734866957eb51bad71c3eda37d365d72383638a3cea7bd199
MD5 f904e78c08e4ba8d126a88e828df2ac0
BLAKE2b-256 e2e1ea0a9bb303fe421fd54c26e34581df5633e0616d95c1208ec248958c6fb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-5.1.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3890691369ef3ca36dfb4d251dedda3ee1d4f7e076e4e4d899a5d5a89239f5b1
MD5 17b9ea5aa923b12ba19b409efd7e0d25
BLAKE2b-256 d8021f0192a2f58e788102a80d1f6a3c05ac2b4309ed4653c1ae375eba45fa0b

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