Skip to main content

The fastest memoizing and caching Python library written in Rust

Project description

Cachebox

Cachebox is a Python library (written in Rust) that provides memoizations and cache implementions with different cache replecement policies.

This library is faster than other libraries and uses lower memory than them, you can see benchmarks here.

from cachebox import cached, TTLCache, LRUCache

# Keep coin price for no longer than a minute
@cached(TTLCache(maxsize=126, ttl=60))
def get_coin_price(coin_name):
    return web3_client.get_price(coin_name)

# Async functions are supported
@cached(LRUCache(maxsize=126))
async def get_coin_price(coin_name):
    return await async_web3_client.get_price(coin_name)

# You can pass `capacity` parameter.
# If `capacity` specified, the cache will be able to hold at least capacity elements without reallocating.
@cached(LRUCache(maxsize=126, capacity=100))
def fib(n):
    return n if n < 2 else fib(n - 1) + fib(n - 2)

Page Content:

What is caching and why to use it?

Wikipeda:

In computing, caching improves performance by keeping recent or often-used data items in memory locations which are faster, or computationally cheaper to access, than normal memory stores. When the cache is full, the algorithm must choose which items to discard to make room for new data.

Researchgate:

Cache replacement policies play important roles in efficiently processing the current big data applications. The performance of any high performance computing system is highly depending on the performance of its cache memory.

Features

Pros:

  • Thread-safe (uses Rusts RwLock)
  • You can use it async and sync
  • Varius cache alghoritms (supports 8 cache alghoritms)
  • Super fast (is written in Rust language)
  • High performance

Cons:

  • Does not support iterating (for values, keys and items methods)

Supported:

  • Cache: Simple cache implemention with no policy and alghoritm.
  • FIFOCache: First In First Out cache implemention.
  • LFUCache: Least Frequently Used cache implemention.
  • RRCache: Random Replacement cache implemention.
  • LRUCache: Least Recently Used cache implemention.
  • MRUCache: Most Recently Used cache implemention.
  • TTLCache: LRU Cache Implementation With Per-Item TTL Value.
  • TTLCacheNoDefault: Time-aware Cache Implemention; With this cache, you can set its own expiration time for each key-value pair.

Installation

You can install cachebox from PyPi:

pip3 install -U cachebox

Tutorial

This package is very easy to use. You can use all implementions like a dictionary; they're supported all abc.MutableMapping methods. But there are some new methods you can see in examples.

At first, think about which alghoritm do you want to use? import and use it like a dictionary; In this examples we used LRUCache, TTLCache and TTLCacheNoDefault.

LRUCache example:

from cachebox import LRUCache

cache = LRUCache(10)
cache.insert("key", "value") # or cache["key"] = "value"
cache.delete("key") # or `del cache["key"]`

# `.clear()` method has new parameter `reuse`
# pass True to keeps the allocated memory for reuse (default False).
cache.clear(reuse=True)

And there are new methods for TTLCache and TTLCacheNoDefault. You can see those methods in these examples:

TTLCache example:

from cachebox import TTLCache

cache = TTLCache(10, ttl=2)
cache.insert(1, "value1") # or cache[1] = "value1"
cache.insert(2, "value2") # or cache[2] = "value2"
cache.insert(3, "value3") # or cache[3] = "value3"

# It works like `.get()` with the difference that it returns the expiration of item in seconds.
cache.get_with_expire(1)
# Output: ('value1', 1.971873426437378)

# It works like `.popitem()` with the difference that it returns the expiration of item in seconds.
cache.popitem_with_expire()
# Output: (1, 'value1', 1.961873426437378)

# It works like `.pop()` with the difference that it returns the expiration of item in seconds.
cache.pop_with_expire(2)
# Output: ('value2', 1.951873426437378)

# Calling this method removes all items whose time-to-live would have expired by time,
# and if `reuse` be True, keeps the allocated memory for reuse (default False).
cache.expire(reuse=False)

TTLCacheNoDefault example:

from cachebox import TTLCacheNoDefault

# TTLCacheNoDefault have not ttl parameter here.
cache = TTLCacheNoDefault(10)
cache.insert(1, "value1", ttl=10) # this key-pair is available for no longer than 10 seconds
cache.insert(2, "value2", ttl=2) # this key-pair is available for no longer than 2 seconds
cache.setdefault(3, "value3", ttl=6) # this key-pair is available for no longer than 6 seconds
cache.insert(4, "value4", ttl=None) # this key-pair never expire

# It works like `.get()` with the difference that it returns the expiration of item in seconds.
cache.get_with_expire(1)
# Output: ('value1', 9.971873426437378)

# It works like `.popitem()` with the difference that it returns the expiration of item in seconds.
cache.popitem_with_expire()
# Output: (2, 'value2', 1.961873426437378)

# It works like `.pop()` with the difference that it returns the expiration of item in seconds.
cache.pop_with_expire(4) 
# Output: ('value4', 0.0)

Frequently asked questions

What is the difference between TTLCache and TTLCacheNoDefault?

In TTLCache, you set an expiration time for all items, but in TTLCacheNoDefault, you can set a unique expiration time for each item.

TTL Speed
TTLCache One ttl for all items TTLCache is very faster than TTLCacheNoDefault
TTLCacheNoDefault Each item has unique expiration time TTLCacheNoDefault is very slow in inserting

Can we set maxsize to zero?

Yes, if you pass zero to maxsize, means there's no limit for items.

I use cachetools, how to change it to cachebox?

cachebox syntax is very similar to cachetools. Just change these items:

# If you use `isinstance` for cachetools classes, change those.
isinstance(cache, cachetools.Cache) -> isinstance(cache, cachebox.BaseCacheImpl)

# If you pass `None` to `cached()`, change it to `dict`.
@cachetools.cached(None) -> @cachebox.cached({})

# If you use `cache.maxsize`, change it to `cache.getmaxsize()`
cache.maxsize -> cache.getmaxsize()

License

Copyright (c) 2024 aWolverP - 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-1.0.19.tar.gz (27.6 kB view details)

Uploaded Source

Built Distributions

cachebox-1.0.19-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cachebox-1.0.19-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cachebox-1.0.19-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cachebox-1.0.19-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cachebox-1.0.19-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cachebox-1.0.19-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

cachebox-1.0.19-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cachebox-1.0.19-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cachebox-1.0.19-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cachebox-1.0.19-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cachebox-1.0.19-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cachebox-1.0.19-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

cachebox-1.0.19-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cachebox-1.0.19-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cachebox-1.0.19-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cachebox-1.0.19-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cachebox-1.0.19-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cachebox-1.0.19-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

cachebox-1.0.19-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

cachebox-1.0.19-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

cachebox-1.0.19-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

cachebox-1.0.19-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

cachebox-1.0.19-cp312-none-win_amd64.whl (281.5 kB view details)

Uploaded CPython 3.12 Windows x86-64

cachebox-1.0.19-cp312-none-win32.whl (262.0 kB view details)

Uploaded CPython 3.12 Windows x86

cachebox-1.0.19-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

cachebox-1.0.19-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

cachebox-1.0.19-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

cachebox-1.0.19-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

cachebox-1.0.19-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

cachebox-1.0.19-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

cachebox-1.0.19-cp312-cp312-macosx_11_0_arm64.whl (395.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cachebox-1.0.19-cp312-cp312-macosx_10_12_x86_64.whl (406.7 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

cachebox-1.0.19-cp311-none-win_amd64.whl (287.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

cachebox-1.0.19-cp311-none-win32.whl (265.0 kB view details)

Uploaded CPython 3.11 Windows x86

cachebox-1.0.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

cachebox-1.0.19-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

cachebox-1.0.19-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

cachebox-1.0.19-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

cachebox-1.0.19-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

cachebox-1.0.19-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

cachebox-1.0.19-cp311-cp311-macosx_11_0_arm64.whl (397.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cachebox-1.0.19-cp311-cp311-macosx_10_12_x86_64.whl (414.9 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

cachebox-1.0.19-cp310-none-win_amd64.whl (287.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

cachebox-1.0.19-cp310-none-win32.whl (265.0 kB view details)

Uploaded CPython 3.10 Windows x86

cachebox-1.0.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

cachebox-1.0.19-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

cachebox-1.0.19-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

cachebox-1.0.19-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

cachebox-1.0.19-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

cachebox-1.0.19-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

cachebox-1.0.19-cp310-cp310-macosx_11_0_arm64.whl (397.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

cachebox-1.0.19-cp310-cp310-macosx_10_12_x86_64.whl (414.9 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

cachebox-1.0.19-cp39-none-win_amd64.whl (288.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

cachebox-1.0.19-cp39-none-win32.whl (265.1 kB view details)

Uploaded CPython 3.9 Windows x86

cachebox-1.0.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

cachebox-1.0.19-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

cachebox-1.0.19-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

cachebox-1.0.19-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

cachebox-1.0.19-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

cachebox-1.0.19-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

cachebox-1.0.19-cp38-none-win_amd64.whl (287.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

cachebox-1.0.19-cp38-none-win32.whl (265.4 kB view details)

Uploaded CPython 3.8 Windows x86

cachebox-1.0.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

cachebox-1.0.19-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

cachebox-1.0.19-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

cachebox-1.0.19-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

cachebox-1.0.19-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

cachebox-1.0.19-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for cachebox-1.0.19.tar.gz
Algorithm Hash digest
SHA256 73556df4f354979e124464e5da600d6a85334b8540cdf76a82d05b509f93bcb8
MD5 168ed779b2856772d7249da889257c69
BLAKE2b-256 957c9ce229a97a036b5683988c95a2eace9cec7c3e13b1e3079a0e1f31e670f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dd3cc04eec659e52461e1fd93226b27d55eb29b92b1d121c95ef8c02bb07f43a
MD5 94dbd8540292da4a2f2466aabf2e8567
BLAKE2b-256 0f31c8a745d6cad460a45ffebae50f5f11b9220fafea886658d4d5a4bb9d623a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6b3e7c25d54fc1669f214a8b9db3a4cecff9a49aaecc03cd78a3b618577cce04
MD5 0a17adeb96410921cad4e38dbb3c3f56
BLAKE2b-256 dba680913d28f258b245c8c65f1de3cacf895fe0a0978759da5c3d6f606a330c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4dc2a7a1e841de4c393401f13be02e3d7eaf5b697e95c7bab80979dbc2ca05a0
MD5 42e54d50db09375187d4f5802b860d37
BLAKE2b-256 c689982d5a61b1976431b8434f85439ae42a842e6ab7c68c6b98602fae33a76c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 80b3cfc55073be2174ff3c80992de5ebcc543d28ff06e14a09bdc77174fb717f
MD5 4caad8a34da73544c94355c3ce5a9891
BLAKE2b-256 eb2e19f1c94c9defe0fe8f3cb8b597751e7adb801cb9a1a03eb650b707d1ce1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dabbaded6e012cf63ea8abd31b94ff96687d4813d2df5ddab0f690819a4aa558
MD5 03df5ee3c1fd233b5818ce62c566968e
BLAKE2b-256 8a23e7db1c1a355568b034dcb843270ce57706175326d360541b40a8bc9ce761

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e1f1aac4fb1d9e1bcc2ac689b4e6e79fd6330323939ffb09b6bd6e6e84e58cb9
MD5 82e9de6248558a8baf4fcc5d74e4ab10
BLAKE2b-256 e1fc30c73aee1e77fba2efe82dad9fde11670ab24244a9aae1a7049f66321920

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45cef1ae5c926ae0233198d70b64566861621605f44ea9d72d73804c1ec3c921
MD5 1c01a7713ee5c42122fed4520d1c277a
BLAKE2b-256 530a4cf6f1187b787d2d0e96d8cbfd90968d65d99051d5d6163aeaa2835d91a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bcbebdb1e9f00b029e123030d65dfa9c4636f6b4f56328b97e6b6118bec9b223
MD5 67f7117f51c8ddb07d35eccd74dc1343
BLAKE2b-256 f7c03561a2bc07c69b4f90333ca7c07f954c59e254843b463929f9e376fd1c60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 93b07d43978537c9594d3eaac4008f4936dd44d48d9cc59e32c981b586b8daf8
MD5 fce3bdf6685aeda69d24ad982e83e4fa
BLAKE2b-256 e5ed85452a1fb15dc047609dafd1541dc4dc2e961b502449e8557b9396df67cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 34efe7aff6cbafedf6d3dc8ab093677e45e2f5de29ed497022ecd50bda0bbee6
MD5 8777873b53130b86e3a33b97409c0697
BLAKE2b-256 95a7f72658f90d3928aae53e2db6bbb2ae88d79081cbf29a9029880c07459f6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f584233a92b99562801181a0e47dceb0c33bac11f3e1bc0fe8f54b7f4da8c207
MD5 97e949721e83a7b5e77a81d8c1d082cb
BLAKE2b-256 7147f6156f68e2ef12803d2e0c71638102eae85f11ccf2943f2ab87d3dcbe08e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6163cf0718281310fa99607bec5ce6605901e32f373571f5cecbe60df92cb1a2
MD5 5bd6d9ddb92622d6170906f16deef47a
BLAKE2b-256 41c4768088171c7e7634b6a28c3d000cc33392adf48bb0de2e82fff232543894

See more details on using hashes here.

File details

Details for the file cachebox-1.0.19-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-1.0.19-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2e34a565613c38e825f89c935079988bc2b00f607563d219330ee812bde97b6
MD5 1601336c73c42493f1dd994ba199c75c
BLAKE2b-256 244821e4b17243956d30e4106772d874aee09fde887ac0be73ce438a552e560f

See more details on using hashes here.

File details

Details for the file cachebox-1.0.19-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for cachebox-1.0.19-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9368947ec5c000dfc700fcae075e0c3579ff06d8910dc24377de22df61bf9910
MD5 83ea3fc14348aac2b839b54313e2910d
BLAKE2b-256 0e5a24ce25395b8996400bb8e4e19900a150c652dbcb6e9f45cb0a95cb0035c5

See more details on using hashes here.

File details

Details for the file cachebox-1.0.19-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for cachebox-1.0.19-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a46326f3d7925ce5aba36ce4413d7e6817b67ee4a5138a03e99ac762dc38650a
MD5 0edf2888213c114f5d7c3bbc722f21ff
BLAKE2b-256 2a44444b5d1b5729dc515542aaa9a255c4c2e19b4d9d64c527cb221219534f8e

See more details on using hashes here.

File details

Details for the file cachebox-1.0.19-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-1.0.19-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 39b89be85ff1732d878aaba7d9ff597fa08a324f3079a36a99eace10788d6b16
MD5 9cc9b896a03707077efb94d3317874c2
BLAKE2b-256 26c9ca0894ac5005adbc7563b985ddb9d110bafe29e9423f8f26f22803088e64

See more details on using hashes here.

File details

Details for the file cachebox-1.0.19-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-1.0.19-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 644b3ce982e3518590810b4d586f5b9a57cd06a0487fa5332379aea9787376e9
MD5 09accb47fa902fa47057b618b4016ddb
BLAKE2b-256 c5bf604be529bb64425761227b674f2546cb3821395ce80cd0f3125cad0f8bfe

See more details on using hashes here.

File details

Details for the file cachebox-1.0.19-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for cachebox-1.0.19-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d1e68814e3565bf5bb7869e2a56dcd49f1ea52fc44729671dbe21694f94b1dfd
MD5 da953f47b44dc6e600be67bd13e3516e
BLAKE2b-256 36421b1b78cde0cb079c81487209de924c42f3c82b3637e4f7bc45c169504f9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5cd062756ba880676c71575bafa3bef8ab52a2bf5163c0dd9fb1dac7d516eb21
MD5 e4de03118177f4ce0a3aa755db04df84
BLAKE2b-256 5c4fc6ef7c4467f6fabc98013a23ba772b67b666d1875f470b73ce7e30df419e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 77c07d7191ad68c6d716a64ef6653076f2ea3413d74d10f56e04a12ec6e59ab2
MD5 b3c936719d0b33002c472c13fde91c96
BLAKE2b-256 ad909b4df909e5e284a83f50f3c4075707f8a77a1b1a812fad43fe39b839059b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fc79e8eed3bef953f3224d59943f266af6b5d7feba278703a159749f293a836a
MD5 c1620e4b10f7edb33d85d131a7322876
BLAKE2b-256 fa52895c25548c8bd1ef2ec7132a38c6bfd7596236bcf1fe8b0f058f81ca0941

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad516e86068813c1ca28c869b93a8b2c401df448464fd70db7acad5c2504553a
MD5 83b5fd79c5f34299e7d5465483ff80ee
BLAKE2b-256 11ee07174ce8afc10295e056780fb8b907d3dbd658afd2dd92a4788774339d74

See more details on using hashes here.

File details

Details for the file cachebox-1.0.19-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for cachebox-1.0.19-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 0c077eae4299202faf4f5d4bf662db4aa66a1842d2b3f14908f56773ec515948
MD5 49cc6574707b9943b8fae25209692aee
BLAKE2b-256 52a01e0ca4dc0fdde3caf5f011a8ffc49eea2076f2935705aab6b62537a99aad

See more details on using hashes here.

File details

Details for the file cachebox-1.0.19-cp312-none-win32.whl.

File metadata

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

File hashes

Hashes for cachebox-1.0.19-cp312-none-win32.whl
Algorithm Hash digest
SHA256 a6ae4ac1c6cac3aa067e34511383f65c4b3cd2427e2e89076694850306b41400
MD5 309edaa83055e911347db71ebebaa90d
BLAKE2b-256 d48c0596ab525467339e6cf181194c0677e16ba6282fbf69b7f5af2bb7319322

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 343b0fba8138c0fb42e1ef7b66ce470921387634e0ae6b1c6335d84017768c8a
MD5 3510eae2eb254388474836200c7760ad
BLAKE2b-256 4d4ef5e409c7dd3b95a3894d259f0e47701afab84fa771f2455adfc3b136069b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c98784a5639ca09aabb28cff1185ca2cb792e9ef8a4771f0f106858f75a8d349
MD5 729783c1584b75fb17342da45f3c3df3
BLAKE2b-256 2fc6c0ed05dcc2faab3e7a4056aec2a7ee18aab2e7a0355b011e5884c651494c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c1cd0fcc08c9bbb3fe60f8a847b187dd4738909bf52cf309eec2673badf01ef
MD5 9b48fdb7285ad78791cfc65e7690f7f1
BLAKE2b-256 f4a2997ab6d3547178164600762e759e07e9c77369e978a3385e8968543e72d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dff70b17cb84e71b073ad4df57a03f54cc8196c93cbd9e785cec4f3ab81493ef
MD5 439ab2798f925c3a2d12a6eb8649be50
BLAKE2b-256 3c2cd849e02d3c3886baac2ca525051f940b73b5cdc8160ff8da1a8aea567cdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c358d708d45456ed235caee3d30d2cff18bcfa35f83fbafb25a3110014d5bc36
MD5 2562e2daf25f3b485b341a9980bbef5f
BLAKE2b-256 4eb38e10643af5961cc8ef49be4dd221cb90ded587f48a9d5847b55e79b25c3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e89f0781aa300af8d960e97141b3dbac667ed1eab0ef7ae51b2ba631f23366d4
MD5 39cbf54627f5995d09cd475a460bd14b
BLAKE2b-256 4ce3eb0ab7d7dee5d9b8edf65dc5e6d68fe6d07bfbd0bef927b4b585b9333c5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c35ee4303ed8748577cda3666ef9f0baa55d82c3588d4f4aa00ab506b84e0df5
MD5 4256cccd1877a23543aba9d08d86433d
BLAKE2b-256 f5368047f62c19ee3e3289f4e89bc1b0db927ff4142ba6e7754290add2233529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 21dfad3b5735a4e4cc1641c7b1ab5de428f32c966916d58a102103c2c2bb8e9b
MD5 147ffaa684092e34942dfb4f5cf21443
BLAKE2b-256 2cb6afda559d77d365f31961816dfa5885136bf29a1e0a55240831709a33dc64

See more details on using hashes here.

File details

Details for the file cachebox-1.0.19-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for cachebox-1.0.19-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 57514a5a564cfacdcee9680ac0d4533025a105b65d919b3c84509b143118dfbc
MD5 dabafda0ef227a09d6afaff2d8c0fd2f
BLAKE2b-256 6184a1be7cd0bd9b43a3ff8262af2454791b248e4114bac98a5bff0b5f03ed87

See more details on using hashes here.

File details

Details for the file cachebox-1.0.19-cp311-none-win32.whl.

File metadata

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

File hashes

Hashes for cachebox-1.0.19-cp311-none-win32.whl
Algorithm Hash digest
SHA256 b72524d79ab8d034512520ed8c62b6e2e253f63fd1aaa33d48e807c2f4e915dd
MD5 2f560fc92a1614547595794498d61e16
BLAKE2b-256 ed7766e4778e3e26045791810d49c371cb7f0cb5e068b005e78153e4b25c0774

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 954888bc1ebfb9d1fd5441866bd0cf1bd4a5016cb24ea35d5cce44e68b5483be
MD5 151acb08dfa58f715aa474b1267cae6b
BLAKE2b-256 0fc8c8c21035a0a2653afccbc85d67aebdfd79998f9070ced5f43b542abb6dd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98f647b04d848c5d10d7a3db3d79037870a7fad06506fd940a30823d29f466a2
MD5 508b5c26ee1747b1f8039cd3bb404780
BLAKE2b-256 1a739b7a0617c12bd63c28447c3ad5e29b002b39af0ed49c89bb42e1994255d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 586cfbedaa1d47e5cb7e0730b81fa5dc611047b60f66c91735e34a1d2abb2353
MD5 d67f218a1875c1242fe3db381a5a517f
BLAKE2b-256 7386ae93f8cf84dc5f75117bd30798978b51f88025e5a2efb17ab6d7737cd7ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 135b2ca449cabafad76c0af8050a15e4fa329abba408b87238c262894c2d80ca
MD5 497636da8d8ee5c80a931310aef46844
BLAKE2b-256 ab1191a0d3789f20ece62ca5352c899d359663cb89d9ece7e7538d9656425f21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 440968289c252e7285a2d407ca67b3f7b72286b49de9c6ff98548ae061c42c57
MD5 80195cce4157316c9680478b200eb5eb
BLAKE2b-256 370ea87cd0d0ee3fd1b0ef62a3b0eb97aa667828d17ec0d68fc315bbc388ba2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1ac199dcc8fa0dddf3c9df3528ce9c4f6db5b7082348665c0790c187e9758ad5
MD5 3cffc90aad7097f8b8b302294d7392b6
BLAKE2b-256 5558e5f750a4a313c160d1b7c59524acf7b344da9602dbaaf1e64509758cb327

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 284f1420cb4f778e7eb73a92672fd11b7fbd091472ef2feeffd1d9aa332b686d
MD5 d582c401e3e71c2db0d0b616a0a3b468
BLAKE2b-256 c0c9085e82d4f858f75816bf150595a961c05befec4d208d3fa8b8be1106adcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f23e3cea8643d35430e2935929eb17f9aa9e5c8c6f19700dd12e067310544acd
MD5 ac778d592e73ead3daf0de46142b8355
BLAKE2b-256 73dd1f4394c92813344e121e60b3e0ed51d8e9db0db878d040e743d6f7f7c570

See more details on using hashes here.

File details

Details for the file cachebox-1.0.19-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for cachebox-1.0.19-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 dea74acbe7f742ee0ed430c5d259ed0c98e2c85b5323909ee68d883ad04698bf
MD5 34be4ccd0ccef8fa962e41c670702ad2
BLAKE2b-256 ef2e7ad2da46f0c2d9995e7da63678ca6c118eb6bc45e7ee1e911f1b4d56c2ec

See more details on using hashes here.

File details

Details for the file cachebox-1.0.19-cp310-none-win32.whl.

File metadata

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

File hashes

Hashes for cachebox-1.0.19-cp310-none-win32.whl
Algorithm Hash digest
SHA256 6a4b4442193d282bb6c14fac64c9df24cc0dbcd1da53b409d4945e12b30999de
MD5 f4022eff08e9225e961a6c1cc93f6d57
BLAKE2b-256 3e049303b20e4d6fe6b397c81a06f663f06ef4b5f1e7a01924f8e62c6f04640f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d7ba087b100e66a6f25c4cbc38625bc5f7ed456b47eaa50056cf759a6a7dea9
MD5 4c3892e915451b7fb7c7a4e4865d3c47
BLAKE2b-256 e884928d3610a43eb8c1638ea3e16266a731a888590251d1dab95ea23caee58c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e86bbe24575e77f92f4dd68dd857d700f99309f751b5f106a94456c47c7a2acb
MD5 ea427645328b72ee13ce76d843f50e97
BLAKE2b-256 6b23eb56c7a13f5a3279c8ee944c7366f25ce002b0b145874b320973d548be9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 27facd23817b23b6c59aebd6a1f4c30fdd3b46c414bb6948f0b582847b4b0546
MD5 becfc9f6e141b2d3743c4d8cc400c216
BLAKE2b-256 193542edc3387e91e5b3f96f1b07b1f10a06e206e6c2d158de8236fd76cd6d65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d24ad34272d5fbba7aa7c881bcfa295c6ff31db3be7b2cbf62d001f334792f81
MD5 e433b1a7aa97f85d0be1721025c1fa55
BLAKE2b-256 67aea3a3eefad74c04b56faf533d69a98ef1a54057e2a8dd894bb4340c4b8aca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68a07c974b2f2512388c12fe6a18c7a07fd7478f7cd258f0c67f24536db81d88
MD5 d1da8967347d658838a87e510007db00
BLAKE2b-256 9351f4d9e28f12fc19b180a8c6fbc55c29ad123b85657d7ce4af3fc762695a84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5fcdfbf6f9cb0a39c0cf3afb15feedecd62d6da72eeaccb1857c4377ed70bcc7
MD5 73d94f08a693096558a27c998cdba417
BLAKE2b-256 17252f3f662c4a764f3f01145dc0c8c08715233417aafdad29a9885c18958a60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46c327a6e580918a5afd283734ef6c4186de427d48125f9af9bb6523fe66a0cd
MD5 2aebcf7db6d592eb58e5417238b9fc6d
BLAKE2b-256 2c34412eea1222070a110e1e69c591b9471e3a50e53d9cd1021434cf2d3efbfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e667a46e4a6110710a7df994010bd3cee682c061b9767ef8c64d3ca167ca7dd
MD5 cea69e41085c6b833c839428bc5ea698
BLAKE2b-256 f65646aa728995c09ed4a8272c7f2bc311e7c7a03dd48eab382ce88ac69dcac5

See more details on using hashes here.

File details

Details for the file cachebox-1.0.19-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for cachebox-1.0.19-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 03672fb74ec5ebff3c31c303ccce18b640775bc9322beeec1fba1ac61f0de19f
MD5 4618c9404f83702de17e9e97f8e48ef4
BLAKE2b-256 6e9e423863c5832cef9e7c51f473e0d68a9548e8863f921dad6f3b8c1580ff14

See more details on using hashes here.

File details

Details for the file cachebox-1.0.19-cp39-none-win32.whl.

File metadata

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

File hashes

Hashes for cachebox-1.0.19-cp39-none-win32.whl
Algorithm Hash digest
SHA256 b22fd406ad704990b5d55c0669826f44b47ad015b6d0546a5de3954a3e1efff2
MD5 c166ea476aabe8ac8d2e9a05da3ad9d0
BLAKE2b-256 f90d13e6f57337d8a121d32856a7f9eccb1e6cc4c42c8f8bee27b0b29f54e355

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb5ec8930309e1430d441a3b32536d2f8cde3a9ccb414d0cba3d77fe45f649d4
MD5 9c6ef25e824bfd1a4d479db38c7fded5
BLAKE2b-256 c4762fb6b5af0034bcf9636689857c68b07aa5484c643515f094173d5e9c28e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f80c5c8885e8728fe945d72b2db5f122123ffab56329401d7fe460cb5e2972ce
MD5 bad172ee4ba32a9bb8393e7df5b2736c
BLAKE2b-256 3f126fc71f55384650b49081d1fdebe7e2dc7cee18ca542d1fc334f5f3071817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6aa542d8247bb9b03ac3edb15f4827365c9a92ff3f3cc6a352e791353c96d263
MD5 e5b24844a0693e646934f3d3434312aa
BLAKE2b-256 aaaf2718a56e3926de06fc5120c90152991fb9900398a85b6ff4bb7a9ed11b70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 db81112b9ab4311b1d63e0d99a89bf4dc6450d8c67852d3e7c9f7d370afa91c7
MD5 39175a9b61aa8dde7af2ee2af76ebb7b
BLAKE2b-256 92e6d83352622056a8367162fb1b323e337c77519dfcf40d66e7d8fccca018e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b807e63233315b821c47dc061b3e9652cc760ceb6cde67348c16fb5af33a0d8d
MD5 e229b3356a21b63e807e074e71c7e190
BLAKE2b-256 249357bc69dd7baf5499ee1df864cd148a0bbacb1eb48004007d654558cf7c74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a5270197279ca6aeced412a57d497fd82eb1111501df1b6d1d37bfcfc0075edb
MD5 d3aae8af5586f360242a414ac9a83528
BLAKE2b-256 1a839de9eb2190cbc379fe24f1f0b99cb5660e7d5d63918dacd51e8e25b9ea77

See more details on using hashes here.

File details

Details for the file cachebox-1.0.19-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for cachebox-1.0.19-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 467c3fd81410742582c7f02db2f8e16fc0d036d45eb2969a22e4368e23107601
MD5 5807dbbf36f7f79022368bb365d104bd
BLAKE2b-256 22c37f86531716b52fdfb7374e33cef6f26faa8550c1b5473e1b06487118a3a7

See more details on using hashes here.

File details

Details for the file cachebox-1.0.19-cp38-none-win32.whl.

File metadata

  • Download URL: cachebox-1.0.19-cp38-none-win32.whl
  • Upload date:
  • Size: 265.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for cachebox-1.0.19-cp38-none-win32.whl
Algorithm Hash digest
SHA256 0d08cfd05e694d590840fd0c1db0a8ec147a0e8f6f9b1ce1d4ce7cd5df88139c
MD5 29be9b52ee4e6b38a606c99ae13a9977
BLAKE2b-256 394c86a13b62400f0b100d1867849c4f50e9606f232f57fdb0ea44d0062be80a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66fce465e9611746f4bd56f9143bcc7d820d8693d78a8a9f5d3a4feead2d3dea
MD5 ed8fd5f90f23a4f78c4f6896a44e7b3c
BLAKE2b-256 161a4fadf6127fee3698aafcb095881ac194f4788634ff2734308ac544075902

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 73124de9b4acf13cd0ea00ff25047700866201e4847361f6ed9306712228d2eb
MD5 0726e2345292fcbc57bba4257171b6ab
BLAKE2b-256 aa2e2f133e821536d85dc06c7b7647ea6cc870aaf981cf7852cf0c0e1302102e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e3d550b7b687eeea038f0008f90fa89ed5aae6e28ac4bd4f055de2ca18b6966
MD5 98449ba31ca5bcceffa79d30fb8b6aa8
BLAKE2b-256 5214aa0446e322cbbe02703ba1efd87033170420915e2788f5d127645484c00f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1ae6b6703a2835458776478d6680c084a03ecd45fe302248ee4deb8b55ee7b26
MD5 b17f586a39bb0f92c20bcad18fcb7847
BLAKE2b-256 8232b4ac798b7dea60dee0a06ac487d0ebfd325e66081c2593ae49f144d74146

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d00d29912f3b85b4f0e878349addc597c1398f3ec4a41ba32a0c14ae8189e342
MD5 07f71a53a94ff48bf5bf3c8b81b2f687
BLAKE2b-256 2044e7305a697de2600e4ca3380a53cfdaa8c5a3bf54395e49bc8530b2297443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.19-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7c7c7c3549af1de680b31cab182cfd5ff4e676dd302a2d8f92ea08f797135958
MD5 ac1f695a8f07b81ff4d5f185796a1319
BLAKE2b-256 85379a4ae2f57319bed0dcae7f13e24044dc4cdeac04a96896eb76c13ad29b47

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page