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 implementations 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)
  • sync and async compatible
  • Various cache algorithms (supports 8 cache algorithms)
  • Super fast (is written in Rust language)
  • High performance

Cons:

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

Supported:

  • Cache: Simple cache implementation with no policy and algorithm.
  • FIFOCache: First In First Out cache implementation.
  • LFUCache: Least Frequently Used cache implementation.
  • RRCache: Random Replacement cache implementation.
  • LRUCache: Least Recently Used cache implementation.
  • MRUCache: Most Recently Used cache implementation.
  • TTLCache: LRU Cache Implementation With Per-Item TTL Value.
  • TTLCacheNoDefault: Time-aware Cache Implmenetation; 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 implementations like a dictionary; they supported all collections.MutableMapping methods. But there are some new methods you can see in examples.

At first, think about which algorithm 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.23.tar.gz (23.9 kB view details)

Uploaded Source

Built Distributions

cachebox-1.0.23-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.23-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.23-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.23-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.23-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.23-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.23-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.23-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.23-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.23-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.23-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.23-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.23-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.23-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.23-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.23-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.23-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.23-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.23-cp312-none-win_amd64.whl (282.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

cachebox-1.0.23-cp312-none-win32.whl (262.3 kB view details)

Uploaded CPython 3.12 Windows x86

cachebox-1.0.23-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.23-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.23-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.23-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.23-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.23-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.23-cp312-cp312-macosx_11_0_arm64.whl (395.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cachebox-1.0.23-cp312-cp312-macosx_10_12_x86_64.whl (406.6 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

cachebox-1.0.23-cp311-none-win_amd64.whl (287.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

cachebox-1.0.23-cp311-none-win32.whl (264.9 kB view details)

Uploaded CPython 3.11 Windows x86

cachebox-1.0.23-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.23-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.23-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.23-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.23-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.23-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.23-cp311-cp311-macosx_11_0_arm64.whl (397.2 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cachebox-1.0.23-cp311-cp311-macosx_10_12_x86_64.whl (415.2 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

cachebox-1.0.23-cp310-none-win_amd64.whl (287.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

cachebox-1.0.23-cp310-none-win32.whl (264.9 kB view details)

Uploaded CPython 3.10 Windows x86

cachebox-1.0.23-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.23-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.23-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.23-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.23-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.23-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.23-cp310-cp310-macosx_11_0_arm64.whl (397.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

cachebox-1.0.23-cp310-cp310-macosx_10_12_x86_64.whl (415.2 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

cachebox-1.0.23-cp39-none-win_amd64.whl (287.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

cachebox-1.0.23-cp39-none-win32.whl (265.2 kB view details)

Uploaded CPython 3.9 Windows x86

cachebox-1.0.23-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.23-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.23-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.23-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.23-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.23-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.23-cp38-none-win_amd64.whl (287.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

cachebox-1.0.23-cp38-none-win32.whl (265.3 kB view details)

Uploaded CPython 3.8 Windows x86

cachebox-1.0.23-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.23-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.23-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.23-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.23-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.23-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.23.tar.gz.

File metadata

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

File hashes

Hashes for cachebox-1.0.23.tar.gz
Algorithm Hash digest
SHA256 cc4d9b993928125ab0b0a7f8a374175293023c459cdad8507e9801ce9c801e40
MD5 86538314ebac233073cdbf4a6a512b54
BLAKE2b-256 4ebcbd116c34c967dd4878be68dcfbb812ad56f1c323a7a1540de68dbd1851b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e272c57f68a4a2e2ce8a13121a5d9424b5ecb7677282f96a8e9d7bfc8e75a3c2
MD5 c49e7fb5493e72e1fe4501117559180d
BLAKE2b-256 e2ec06bde99d06d756b2a219919fd66cfe2abab31c099076666f0cfc0d6d40e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 93c07d28c168662f7bbcd9f7c1efe93251bf37c6c88af71da71ac874d581ccb7
MD5 c0681b323b82d1f91fba38ae2febcb38
BLAKE2b-256 948530de3ac8d3733e5312dd43a9b2f08faad83eb2b71bc40f2be2b47b120f6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c4322020c59c4e96b2088bd324de84f1765bd22fc9568992689d17e6c287941
MD5 63d0b4787120794d1aeee94798f26f7e
BLAKE2b-256 74b4ebe7af8faf9e9e4af7ab5033af96b5341058d8e513b85afd1c375ad9f1d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7bef5f73a46df99f026f826e3ec3e8ca4d8494647167a75c1920aafdb4986d9c
MD5 3385d7a5b22f048db3eb6c6a2929b848
BLAKE2b-256 64e970fdd17a9e74a1ac42e39cc52ce0b6536fb7bedd4116c56c90198a87c927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54650c1276a82dc634b345c86e7a4c97944e7bac5d5ebe54e89642253f851126
MD5 1393fcbf08647b697b0ef39115bff7d5
BLAKE2b-256 875d27281ea71c0bec87d2261786a6d6e50e7cc91c9525231654cc9dec251d04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b101aaa0ca9a73c7677193540c848b7f0e1498a4c708d8dc93b02686c669c2f6
MD5 d3bc545cc96c8cfd2c2c02ef3772117b
BLAKE2b-256 147481974d2e832483010317e497dfb194d508be4de03801b0aa810443993a10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3dee9605ff977e3a3cc44e618900a6594f4425994a2346f418f695303044b3d
MD5 4aca7e95a00170b59aa2cfd7a3016fa8
BLAKE2b-256 7e2d3f4243eb5227adb057ceb143cbdb595c6c866cd85167301c2ca3774b5251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a809fb795ef1b125a37f2ca0f5579e96eadf645ef2a437376908e6c122b14c1d
MD5 40eb5e5bfb907efe5138f34e69388529
BLAKE2b-256 0abab161eb16de27146f72fe9ea0a308a8e481956024a203c2da6900c7e6418e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6318484ef57a67b62bbda5cbddcdaf6c1641d76f4c381302f7266d24ee07acbb
MD5 0706c2f812bb12ab4829643dcbf6d292
BLAKE2b-256 2409a5ffe90ba45c6a3e8fe6a16e21bc0e78f84f3dde510046f2ddf2a6104adf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9217240d4f7dc540f2b81080f71cd4bcfb56cc618bb0b92b596d2566081a8e04
MD5 0edca15b86825c585f95674b229c6f93
BLAKE2b-256 7eb14cd44b53ff4e139e23993bbb12511ea36c57deb15531695147fe70445d03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 478a58e23007ddc28da48cb755ac2facf10ed3c4d7261f86851b7974d2486e4c
MD5 77cf1b33af69b1abee3c004ef20f5be8
BLAKE2b-256 20e99cbd8494d879d88b65f97ab803677445b9bdfebc0c745999e0d4314f0180

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 05d02acf2f988ed6423fcc914b9bd3d292c993fee7ade2414705c312ea956b1b
MD5 bfcb819069fe4109833d756f4ddef4b0
BLAKE2b-256 dda89c04beeab2b79c4a548263025023e4e81bdd849f83cdfe97820818eb4117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c465398b04ddf5ef355cc2ac706e88f02d344b16371f0a701c8908f4b3bc57f6
MD5 3e62966347bd592239d814f7427a2b0f
BLAKE2b-256 e18143fd081d6e0be8916602ab6084702b4473c7a6c6f6f92170ab2a45824e0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4c89e2118e0dc5232325792be2711212365cabf455db294abe4711d7e5f4a576
MD5 27c2a94241ff2f08228ea05f9e8a8a39
BLAKE2b-256 a794ee56bd518e014f9449fd49f0d2b50302e3b63a7458e08a775e8dca025457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 698c0a191861ac27958952b34a4fc0b9677c5e3a9acb01f2b1eda11e9f0e5f7e
MD5 3fa7a8aaa759bbe02d2901dba5a64060
BLAKE2b-256 eac11befe51bbc404d5ec82185dfbe43f5b4fa88188d3152ac93031dde4af3c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1a314274c5523def88627e36653a68ad5e503c08687552ba2ce790ab05fa3d42
MD5 2e4649846705a95ff2b199916eb27264
BLAKE2b-256 434bb59c5def83aecfa779a7f63e7c9d1cb3c806d7752fad228ac84f733d7b10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c2129afcc8b48a851cdaa9bd0123fd7791b2e10972490102cb2c0404ec7e05f
MD5 2b3d79e5df4337ae89c0c3375da41136
BLAKE2b-256 454bbe5662179fe96604ac59436fa2d1ce9ac1a67989a59933bd8be131b157e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 061ec920fb84dac74aad43012dabbedce0cbcd3a1d64f39b3ea0d34afd898f94
MD5 0579dd3732bf2452cc569e4437cc1c15
BLAKE2b-256 1605127662919fdb9517026258fd44bf89336183764526f9d99d0aaa502e480c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 7d3181305115994b4cef90c491bf1dde504de09b2382ae9306546914dcc7a8c4
MD5 bfe8f20ed73ba30d1558ea4a17205d14
BLAKE2b-256 c5168d866589641f97af6ca84d99e084108cb01db9f64f4b4ea565265cf63ac4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-1.0.23-cp312-none-win32.whl
Algorithm Hash digest
SHA256 7f5beb29389743b06c16d829bc5e98b07a8c431cf5c927f21cd4872fff81beea
MD5 10add311e2473f1a8069b41665636fa0
BLAKE2b-256 c99cb1881b93e01db136664c2e830310f847d497c1ae8e3ea2443f3b57ffe07e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1278bc3281c29014cbe8e4dc42e26bec24dc33909b303ccd3ffdeb7d7011cb76
MD5 8001990f239e40370c2ef65eabe67972
BLAKE2b-256 0c088485475842db3ef476c7cc07ce00bdee7bf59f8749df26b11e32b8565755

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 debde53f3da93bf6325acd82b730c0d3b143e3b43b844b4322787555ca44ea7a
MD5 231b711cc2fa9c7fe035ba8ac035d3b3
BLAKE2b-256 ae2fcffb5141c561d0e5daeefa47423068742b183bd23d7acb804475f839c873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12196f8a41885f69d6f78e49e255148bb2ae66dc8477327e89a2cd511242c128
MD5 9c0cf7525f6fdd44f2e8f243c2ec4bb9
BLAKE2b-256 4bf5392e7b36782a6673108a349f02d8534b7776f363ff0275a9099e2ff954b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f5193f86fb029fe930875fa21d5b2350846a39f4772af743779300a31c1058d
MD5 41c88671b0fa6839e5fe754920a05f58
BLAKE2b-256 dbcf63e60a90b77a7e259aa6bc994e9f7673dfa2681256cd03e94d08d43094b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4c8a3980f6fb2bc4dd801ef7bd5e2fa82d7062e535f4a14d6bc953b1bcf235a
MD5 a708b257f426261b5ebca3c4f9453095
BLAKE2b-256 68a34cff81cf23ec3a89fcf6f6e53a67eb277b3b4bfdaadbc416fabb21251e0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d0e089939118489ecbadef60135971f6d998989f608bf7b8b7904951f6d53549
MD5 060fd80aad143262a5e3aea4298b3fb8
BLAKE2b-256 46646ce73b15799f611a6d35c2c25758589ed5832906cec71046c09228605513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf78346f490d034fe8e2db83cf242711ec058978a41338f89301653c27e73cc8
MD5 ed389d22074522d279cd5043ba1d46bd
BLAKE2b-256 16068f72053fb9657fa0b576349ba22b970b218e24d553f8c23ddcd789643df5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2bec3f4376bdcf502b66d5b1190c402d2b92b7252c4ea26843f64261f2ed13c0
MD5 e2465b08b6eb2e46e67ebcd47095bda6
BLAKE2b-256 f4653b690d168ac44bf7ab1557804918583bab987a39ebbd101ca40a22264883

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 af4f84f35f2f94bfc35f8ec7ea6a835e8e27c9bfba15fc35d514ef3b6ebb8f5d
MD5 b7dac5bfdae1f97bf05b4814e4c5d2ec
BLAKE2b-256 59ef79c509649d590122a5ffde9d5bc2142059b4bc8ec00ae4b41e62f9661185

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-1.0.23-cp311-none-win32.whl
Algorithm Hash digest
SHA256 e14ed0b328edc1d843424ca89ea74334720d8e99531256a9f2b4ee5efbc050d8
MD5 413c40570363d07fc82c23a23920fc5e
BLAKE2b-256 bd0c5ffcd0bddd996b64101a5de5005ee2a7047d58955c7dc9090f4cff80924f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27b37c6679147136f58909007cd426ad8a714983503f2ba8aec3ddace403beee
MD5 4d1e3dfb184d501e52543485ed521ecc
BLAKE2b-256 b3525ca85f0d5a00b5d05ecfa561291d0246f83fbb6df768dee3e08be406ed17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 75f547acfcbe630c338a2ea571e4d86fc783a086cd2c30aa9402f25b1198deb3
MD5 9dc5ef65fd877369118b9f7a0052c0bb
BLAKE2b-256 57d191647f371344a751ea3f089c50ff1152346f9bb35995036a204687d15cf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 97b47fc603d442a769dfbe493a987c2b7cd867132ca20dfacb38f707dbf89ad3
MD5 0b9577ce407b655826a7d519abcae364
BLAKE2b-256 291f4c1c2c4f543d2b446674745d15948b7c2cbc9ff1bacef092ae8f9ae34835

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 731fab0b18ae3b785d0bba58262a3a981b47cc7f93341bc9839d2fdadc874d6f
MD5 e4c6dbc67e8ae72c51bcb52a5db02f36
BLAKE2b-256 bcc42d3ee10ae86142f8d5ef7ddd556577d913f508bd2b0f148b9af912b017d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e31b0a6c434bc16ae559b183a8bafa412d74b86b6274d23dfd63903c5fff4723
MD5 e7efed10492144c4ff8a8dd001e84b37
BLAKE2b-256 a247b8183edda045b702fb3cd28a6fcf2bd540b362d0728d328ffe5bf1466d05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5f3b545fca499e50894a86c6a0e252392c3932f4b3410f663e2b05d74cf11d23
MD5 699b2aae901cba23c6c9258df64b6aef
BLAKE2b-256 0f52e8d278af52bbd9d428c543e6d579d29744be894b20917a583b9170724784

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a344e71ad7d7c58bbe3f0b090b98b5df53b3f0c2c17e7f07774efd44fb3f9dbb
MD5 4f31fbfade5ac67558d2d0e0bf42c8d1
BLAKE2b-256 f46a14760dca08d2ec1d511b61f2287691a4fa6f8dc9194792e292240830926b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e7fff22b2329f52fdbf4a2f7a6c31bf8deb2bbc7802d0e202bfe2638b1e5bff
MD5 9922a8fd76e56286892bcf4aa07039f7
BLAKE2b-256 3aec4fe7f6958c333f0067a39231ab1e896ebdb40b30462d079ed554e792fc4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 e3e55da4cea912054bf76aade3a76d4b2b0d3afd1b2b8b1fd797fe06f6769927
MD5 389a86fe54e213a3122dc6ba245dcbee
BLAKE2b-256 7e72964e35b7b8080e50e55cba9522f65430a0fa3c76f42b5e7c263e4c0cd3cd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-1.0.23-cp310-none-win32.whl
Algorithm Hash digest
SHA256 6e7f268542b252b88a18953ec6525acdcbb4fff85f2c5f0919374e5449140069
MD5 377b748b711b41c0b1790a5c346ac55e
BLAKE2b-256 107d2e78611ea90047624778412d1765578eb8fd8785676b4bfde7390badc91e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dea3157001c69d981b7bc04eaa40918e137478aa0e148a5f092ce6c296e21516
MD5 6de2d250f794e32d90babbef65bb23cd
BLAKE2b-256 7e3b386f6a051bc908059e65bc134c5857542d00779a344ca53192929bf13d92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b1d189fc580076669c9c11bc365e6ea0b435841b65ecb09f38f83174d94f6498
MD5 b3b55adbffc793c464c1bc6659e29e37
BLAKE2b-256 9012db3550003d5b8b65713ffb2a6498cd957d9d5f00c92e5c460aa364d60c33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f854594225efe065809b92621259ade9c8b722527a917e9f834308893c05c61e
MD5 87eaa38b725fadb3ae70f9ba26b554d9
BLAKE2b-256 a7c2508ac345baee56dc8108a5fedf47eec8e1ca96954945835e11db3c3eaf44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 efea78fe5733fa643f07c1b055c008cb0a2adb063ea8842c0734df3b601be447
MD5 ed84cbd9bf9c0443ce12c4aa04b75e4c
BLAKE2b-256 1a8fe310bdde38e13a2a70a25384c3f046b45cfeab2b4c13b122d95398889d0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e7d7cd2acb1e9f7a16c441d696330dc5e10d5703519a02eef4cfe7d21c6d174
MD5 a56cf60659d03102c8545f7f5ba7ac10
BLAKE2b-256 66afc159a5e4daa6f90b9ba00b87c1e6e6a0cf23ac52a60f95abc2f355e1857a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bc8a1bc78b36cb4877a4a011c6621839ec86621c2ec66f54a6e321be0ee6816d
MD5 9aa421c9ec65c263e80930296b5456d1
BLAKE2b-256 0d5b7d5f3b5c99927e8856ba53c311256e2e4bc7aff9cf1cedceaba8ab241f03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf934e68409a9dead02a54ca6f8077672598f17e125a204e52b458e0f362e8fb
MD5 f1480e281cf8a65571b5c8cd063c492e
BLAKE2b-256 99c58a802c309d5d54cc7ef7a0e9fe01625f43e599f6c7a78e3b1f6d5237952f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4fd76698811575a6594bfc5e7b0ad60e83d4f03af745dfed003e4c9bb52dd4cd
MD5 a713fa7d6fe5b9d90f7b873a9f266e09
BLAKE2b-256 9e62f2ef2695fb85be0c030d9f507458d966f47d862a09f40937eef3996c9b91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 91bd70c960420f0611f5ac849f32b112f5bebef409a97d09a43854449e018a65
MD5 7f6c7b09db855c3051b699e8f7c9c80c
BLAKE2b-256 e4aa297ed9addac5066a840b3b205f179d5bc14565cdd45a1fd4b5f89b00f5e0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-1.0.23-cp39-none-win32.whl
Algorithm Hash digest
SHA256 8300213b0c0267a4d9040904da79b6578530d607b2f8edb03dacc4a7893213f0
MD5 135db2d4f9f0d29cc7643481e0a73a94
BLAKE2b-256 4e68b4ddad531a4d44b389c0a64c65de968c3fb1d2eba3f3d43bcd9362e8d0f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4e301f1ec404a7ce69b91dc99f4146e8777fa6a9b70f866a7ce165ff0d7e28b
MD5 0e78da21f6b145df063ba5a9ff1c347f
BLAKE2b-256 f10c776ef35452a6d6c969fed31fd34af15083c06b9d000fd1be41ae131ee09d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 271b34d934ed8b954918541a7675061633da57cbe86bd09b8f9ce66feaab933b
MD5 4010d1dc920364b05ac5cee039dd081d
BLAKE2b-256 978fbcb1f2633422dac83aa0881bb554eef679290410c0ea9bbdf8a38a6e890e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3ff74c955ba7447a7892da72d34e4ded210c8db6c71f7c77faa4a79f02eae3b3
MD5 9b37a37b4d1b84bc93309452c21e9e96
BLAKE2b-256 00de7f512a0c6600801a5a03ad8ac06915be52073122a1a8baed980a48df4abd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a15ae94ec5b0e63e71ddf4fbc20372909eb78097639a13dac9600d30e035e586
MD5 e5cbeccf7187926ef0ffb3211b57c425
BLAKE2b-256 45fbc2b64ee8ddba6a517dc6707e0a00772dde5ef21becadf429007db376f3b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4208533dfd025d030fbfd268504193dcebbe2cb9daf55cecd14037892d4cdf91
MD5 b4ff339abf65e4706005b0e9c315cbdc
BLAKE2b-256 240ad13a10e1d721b134834e43794ac84603c91a1ebc0514c29e4329115ac738

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1aaaf96af1d8dcacd0844bb43366817c292ba98adf41ad020633a2d50b77d4fc
MD5 e50cad9bd08d7e06ce7a1ff421e12c5f
BLAKE2b-256 781122f7734469044fcd24e9feafc23da8bbe9d90cccde4da9cf26b6cafaa809

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 7029262954f6c78eac4f03afcccbc9859ed7df877dafe0178783d7274bd6202e
MD5 38095cca5ae4a37d5b82fb5ee0d4c4ec
BLAKE2b-256 4714d6cfc35782eb9cbc814c032a5b7d6a29197ee466a23f0fd9447242e5314f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-1.0.23-cp38-none-win32.whl
Algorithm Hash digest
SHA256 1b7d63547394d974e7573bc4515bfa0c4011a76dbb7a1cb4d29b148a7ed8353b
MD5 d18978cb1d8fb95e4a379c209ed66430
BLAKE2b-256 28f596d93d6ec1620d2b58ec38721d271ee1bef12fc3c6b5ef0bda407f960399

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9441ba2fce304217d77bb24f6230db96468b2ffec07b17257255a58846a59f11
MD5 49611364daf303319aec4c9db2ce31d1
BLAKE2b-256 521658adb8c206363b3d542cedfefc10e500f3873ec33047b8b29408f29f797f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d2b1bf586f3d3bf3cd7f5daf0aec8bc4ee9aedbf03bc2b6488014d15abc4f0cd
MD5 61878f5b0db67aa4876c9aa93e941eee
BLAKE2b-256 a1bfb4c70c6b277909528476d73754a79530b68a8f5bcccae529d3fd2afd9a7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7968407525cc639dd59a6e0e46fe822a6c04d3a8c0ac874ac24e20e4c512a4c5
MD5 79df2ec9a72f20e2dae2eb7a485541f4
BLAKE2b-256 a18c644885c09465932af44350750d92e8e669281edd589c3a29b74172958c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 35eedcf26b38108498a6142d073de381ef1cbf8f41f75e0118ad1b96ba93e83c
MD5 07de8bfa538c467fa392385b6cefd277
BLAKE2b-256 4b3edbb67bc33b4d9e84c6410df63034ae5f352c7f1728a222b090c7d780b6c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc91d626f933a904e762555a8b3673894d20b40458bb9fe7effa415cb85a385a
MD5 0021d22f476d11c2204c655a3621ec18
BLAKE2b-256 8cb76c669cb86730dc21414f4cb021f69df319fe72d9664ba2cdcfc5c72634ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-1.0.23-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2c65f4289fd191cef8ac5804983f6c5a5be8bf7d6a22888d7bc1ba3f3f8137db
MD5 54bab6c6b86a10fd3d64fd2c85554892
BLAKE2b-256 bf14673e8abda557c00746736d422045e3fb92ddf641ecc3046090367db32605

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