Skip to main content

The fastest memoizing and caching Python library written in Rust

Project description

cachebox

Changelog . Releases . API Reference

The fastest caching Python library written in Rust

Did you find any bugs?

[!NOTE]
The new version v3 has some incompatible with v2, for more info please see Incompatible changes

What does it do?
You can easily and powerfully perform caching operations in Python as fast as possible.

Features:

  • 🚀 5-20x faster than other caching libraries ...
  • 📊 Very low memory usage (1/3 of dictionary) ...
  • (R) written in Rust
  • 🤝 Support Python 3.8 and above
  • 📦 Over 7 cache algorithms are supported
  • 🧶 Completely thread-safe (uses RwLock)

Installing:
Install it from PyPi:

pip3 install -U cachebox

Page Contents

When i need caching?

There are some situations that you may need caching to imprve your application speed:

  1. Sometimes you have functions that take a long time to execute, and you need to call them each time.

  2. Sometimes you need to temporarily store data in memory for a short period.

  3. When dealing with remote APIs, Instead of making frequent API calls, store the responses in a cache.

  4. Caching query results from databases can enhance performance.

  5. and ...

Why cachebox?

Rust - It library uses Rust language to has high-performance.

SwissTable - It uses Google's high-performance SwissTable hash map.

Low memory usage - It has very low memory usage.

Zero-Dependecy - As we said, cachebox written in Rust so you don't have to install any other dependecies.

Thread-safe - It's completely thread-safe and uses read-writer locks to prevent problems.

Easy-To-Use - You only need to import it and choice your implementation to use and behave with it like a dictionary.

Examples

[!TIP]
See API Reference for more examples and references

decorators example:

import cachebox

@cachebox.cached(cachebox.FIFOCache(maxsize=128))
def factorial(n):
    return n * factorial(n-1) if n else 1

# Like functools.lru_cache, If maxsize is set to 0, the cache can grow without bound and limit.
@cachebox.cached(cachebox.LRUCache(maxsize=0))
def count_vowels(sentence):
    return sum(sentence.count(vowel) for vowel in 'AEIOUaeiou')

# Async are also supported
@cachebox.cached(cachebox.TTLCache(maxsize=20, ttl=5))
async def get_coin_price(coin):
    return await client.get_coin_price(coin)

class Application:
    # Use cachedmethod for methods
    @cachebox.cachedmethod(cachebox.LFUCache(maxsize=20))
    def send(self, request):
        self._send_request(request)

Implementations example:

import cachebox
import time

cache = cachebox.TTLCache(maxsize=5, ttl=3)
cache.insert("key", "value")
print(cache["key"]) # Output: value

time.sleep(3)
print(cache.get("key")) # Output: None

Incompatible changes

These are changes that are not compatible with the previous version:

[!NOTE]
You can see more info about changes in Changelog.

Maxsize default value changed!

The change applied is that when you pass 0 as maxsize, the value of sys.maxsize is automatically used.

import cachebox, sys
c = cachebox.Cache(0)

# In previous version:
assert c.maxsize == 0

# In new version:
assert c.maxsize == sys.maxsize

Iterators changed!

The change applied is that, in previous version you may make changes in cache after abtaining an iterator from it and that did not cause an error, but now you cannot make changes in cache while using the iterator.

import cachebox

c = cachebox.Cache(0, {i:i for i in range(100)})

for (key, value) in c.items():
    # This will raise RuntimeError, don't make changes
    del c[key]

Type-hint is now better!

In previous version, we couldn't use type-hints as possible as dictionary; now we can:

import cachebox

# In previous version this will raises an exception; but now is OK.
c: cachebox.Cache[int, str] = cachebox.Cache(0)

Cache iterators are not ordered!

In previous versions, some caches such as FIFOCache can return ordered iterators, but now all of them only can return unordered iterators.

import cachebox

c = cachebox.FIFOCache(20)
for i in range(10):
    c.insert(i, i)

for key in c:
    print(key)
# (5, 5)
# (9, 9)
# (0, 0)
# ...

__repr__ changed to __str__

We changed the __repr__ method to __str__:

import cachebox
c = cachebox.Cache(0)

print(c)
# Output: Cache(0 / 9223372036854775807, capacity=0)

print(repr(c))
# Output: <cachebox._cachebox.Cache object at 0x7f96938f06a0>

FAQ

Can we set maxsize to zero?

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

How to migrate from cachetools to cachebox?

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

# If you pass infinity to a cache implementation, change it to zero.
cachetools.Cache(math.inf) -> cachebox.Cache(0)
# If you use `isinstance` for cachetools classes, change those.
isinstance(cache, cachetools.Cache) -> isinstance(cache, cachebox.BaseCacheImpl)

License

cachebox is provided under the MIT license. See LICENSE.

Future Plans

TODO List:

  • Rewrite all cache algorithms and use low-level API hashmap
  • Change hashing system
  • Improve tests
  • Rewrite stub-file (.pyi)
  • Rewrite README.md
  • Write an API referenece
  • Add new functions such as cached_property.
  • Add possible methods to implementations.
  • Make better type-hint for cached and cachedmethod if possible.

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-3.0.0.tar.gz (37.8 kB view details)

Uploaded Source

Built Distributions

cachebox-3.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (369.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cachebox-3.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (637.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cachebox-3.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (388.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cachebox-3.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (354.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cachebox-3.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cachebox-3.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (365.8 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

cachebox-3.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (369.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cachebox-3.0.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (637.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cachebox-3.0.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (389.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cachebox-3.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (354.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cachebox-3.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cachebox-3.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (366.1 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

cachebox-3.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (369.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cachebox-3.0.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (637.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cachebox-3.0.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (389.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cachebox-3.0.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (354.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cachebox-3.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cachebox-3.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (366.3 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

cachebox-3.0.0-cp312-none-win_amd64.whl (261.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

cachebox-3.0.0-cp312-none-win32.whl (217.6 kB view details)

Uploaded CPython 3.12 Windows x86

cachebox-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (369.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

cachebox-3.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (675.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

cachebox-3.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (390.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

cachebox-3.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (356.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

cachebox-3.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

cachebox-3.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (365.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

cachebox-3.0.0-cp312-cp312-macosx_11_0_arm64.whl (308.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cachebox-3.0.0-cp312-cp312-macosx_10_12_x86_64.whl (339.9 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

cachebox-3.0.0-cp311-none-win_amd64.whl (259.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

cachebox-3.0.0-cp311-none-win32.whl (217.5 kB view details)

Uploaded CPython 3.11 Windows x86

cachebox-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (368.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

cachebox-3.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (640.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

cachebox-3.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (389.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

cachebox-3.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

cachebox-3.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

cachebox-3.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (365.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

cachebox-3.0.0-cp311-cp311-macosx_11_0_arm64.whl (307.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cachebox-3.0.0-cp311-cp311-macosx_10_12_x86_64.whl (339.7 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

cachebox-3.0.0-cp310-none-win_amd64.whl (259.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

cachebox-3.0.0-cp310-none-win32.whl (217.6 kB view details)

Uploaded CPython 3.10 Windows x86

cachebox-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (368.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

cachebox-3.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (640.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

cachebox-3.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (389.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

cachebox-3.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (356.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

cachebox-3.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

cachebox-3.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (365.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

cachebox-3.0.0-cp310-cp310-macosx_11_0_arm64.whl (307.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

cachebox-3.0.0-cp310-cp310-macosx_10_12_x86_64.whl (339.8 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

cachebox-3.0.0-cp39-none-win_amd64.whl (260.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

cachebox-3.0.0-cp39-none-win32.whl (217.8 kB view details)

Uploaded CPython 3.9 Windows x86

cachebox-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (368.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

cachebox-3.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (640.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

cachebox-3.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (389.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

cachebox-3.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (357.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

cachebox-3.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

cachebox-3.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (365.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

cachebox-3.0.0-cp39-cp39-macosx_11_0_arm64.whl (307.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

cachebox-3.0.0-cp39-cp39-macosx_10_12_x86_64.whl (339.9 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

cachebox-3.0.0-cp38-none-win_amd64.whl (260.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

cachebox-3.0.0-cp38-none-win32.whl (217.8 kB view details)

Uploaded CPython 3.8 Windows x86

cachebox-3.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (368.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

cachebox-3.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (640.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

cachebox-3.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (389.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

cachebox-3.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (356.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

cachebox-3.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

cachebox-3.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (365.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.0.0.tar.gz
Algorithm Hash digest
SHA256 97c372390abfb91ee53deae15c2079d7e329f3824ffcc33a17be1628d203136b
MD5 27a80d70d50a895f1ad65c603c42d906
BLAKE2b-256 6aac83d9f3c9e7e799d86964124b8cdc9778f21d42715856836ce5caf502d461

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab1456f2201b99d95dcae758cb8413be0d2eeba477c96df327f697b0920469bf
MD5 a554dbbb4c5ab9229b0c9fb3ba856c33
BLAKE2b-256 561101376778589cec3f6e0d026353dd01353de94fd16d8c1bb361e9981825f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 28c94985bf62989c601c00df49fcbefcd84f76170ddbcf7f9ba430354287ead6
MD5 c44ca82f5d44704e7e0025d9e380b875
BLAKE2b-256 e4a9089455e0410c7ae248acc0a3fadddd0326ed674593ddcb36f192dd2fb4c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 85fecbecba1cdd09f1b2fa8091a690db0457b068b91bf49b54b0e22e8254edde
MD5 a86f78f04f71e173476a4a151fc2db40
BLAKE2b-256 6e923ece74b20a1454982c46a42c0cf8bb5ddc38f528fc68577fcbf19abf767c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a5d42a8e2c7a562c8aeb1b96052ad1c40a7a4ef10c2ac57d9cb4f00d9587a763
MD5 d836e5fa60b1881fd63bdafb8e0ea4be
BLAKE2b-256 a6dc15cfc6de1d97ada7d97f492fa077bce1beec61d1fed7bfa51c10e082fc79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3ec12b9844e991da856829cf55f8149d8a10996367730bcd607f1184edd59cc2
MD5 a515d53f290b866b89506563bc0ccfa1
BLAKE2b-256 fb39962e034ab7d868866f35140db856063499b164a8ea78c85d5058f672f532

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b9aa18b1d55922383039312fd68f9618df1a50fefa819ddcb0b4b7848a055db8
MD5 3dc956f89c079f8eeb9cc8aea4e9acd0
BLAKE2b-256 12e52f0f6565fde09df1fbe4a77309b35f0307ac19265eb549b4fe49b6915f3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e17f06db144de0863fb19d013981cccf6cc002ec380964cfd428870b042a5263
MD5 b286330b5f3c4c4f453a54c6c89b1034
BLAKE2b-256 5ee065ff551bba1d2442f80c399ab6e0c2ae8e2b8155feb6662dd4f3e962fbeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e1413c10f19a3712c3297fdadebc64000febdf337a6c362417922188f3f93d6a
MD5 4dfe4fbb2522beb3a64ab54c98acb939
BLAKE2b-256 895f06bafeceaf1c29f9817448404fa3d76f41714a8a139a00fe402b2e6c313e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cbfd19217c96096f1fb1bd2877c24e14968f800f55bfe000f4aade985556fa6c
MD5 36774fea7a863fed112c91e301cbbe44
BLAKE2b-256 0c0fe2f29ced776de913d69cd327d844b8e81ce961426f4b8a3ea9cc22f6fdee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b90494274aa38511cd00496c779bddacd731c4f270ff27d7246c752b73fd56ae
MD5 c322246f4186be23f3202bff92be1cd0
BLAKE2b-256 25edd4f10734934dbcf87d9d5edb7bed179a8bb17afc7f826bf7133550bab889

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 230872c19eb20d143166367dee9cfc2fd41920ddec3d96c18ee08d9959bfe7d2
MD5 9df3539e702dddda6f6320c6bd31c4e1
BLAKE2b-256 2dd688958327ea2360b8cb84a772017d128abbe0316a22c308c255a5cab7a3ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fd5e47b9debf30ec9dc39091182dd29fc9aefa1a67316912bd4c60dd15565b4b
MD5 17124dcb349ea559cad646e3acab06cc
BLAKE2b-256 75f5662212d9a23e2828722cd993e9aaac0fdc99c3c79ac4783eadb9515f77b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4a62504944a5a7c5c668e1d56b4b466d818723e65405e4d053d702a82d442bc
MD5 1206fa8ff41a3bd6443dc8e827d7dfa8
BLAKE2b-256 dd04b1b467c2e514fef06b2c6460b2dcb85cb0e632579642d60c8dc7489a28a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8036b40b08d1a18be6ea8d30a4c4b62a60c357a8bcd0f5aa6a91bb0a5ccd35a2
MD5 51fd0e1bbe4c6e0800d3edaee98f8a01
BLAKE2b-256 c8bd074d32fa82bbcc6a5a077b52b211601a8845f29886b7b2536b4f5ff46423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2f6098ff361ae7ad0c6a87cb351a52f0e465d2e6671d6b80b16b03678d37d7a
MD5 b4ae07c35b86710b0aed1610ae478a97
BLAKE2b-256 884c7085ea416eb5d4d9180efe2a89b590ed5cc9e675f846aa4598741ce603fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9b87e8a9950569ae276469743347efa1e51baa4c54f6eeeb2bf3f67e3ec501d5
MD5 d0b3d91d4c1b79d2b3f50c530f0f3fa3
BLAKE2b-256 da956c02c0674de3ed975dd7879810cef2f425f1377a0ccd7bc62340188dc9b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15ef9ea8eae5bd4b6efe73c3c92f0a09a132e01e4e37dbcb20f91514301fe7db
MD5 0942ddd4d4d876070c5323dbf5121673
BLAKE2b-256 dfe031f5f4a2b79302cc10f6838340ed857ce6ae6ba59a997db270b1ad55451b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 179cd7f850dbfe73ecf403857d793a9ed1880a6fc532731ab09b20f3e28343d0
MD5 beff19a5c1bf0c5aa9234809acc16955
BLAKE2b-256 54e84c12a880f254789acb03904bec088084af59e6ebfc73c1aecca53951b631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 fbd707972725b7cff40f35ba00ec0bdc58c01398a726be7b1001b9baca531f0b
MD5 d0cb0ddef4c38ec1ccadb087822dad82
BLAKE2b-256 aa40b7c2c85738383554d5a875d5249a9d5a33d57bbeba4180746996970391d7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.0.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 580640e83372920be1c6fa6935a474c07905439055bf2324331c6c22e014d173
MD5 d9cec5e75c5e96a52c25c06786d5177d
BLAKE2b-256 355378db533e47244bb90b6ca7f173d1f1c26f05f43f5d96be372991cb2d2b7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eff3985f986f2be2f6e5b418f6b2d76d13199b969a10b03f3cd549242cf7c1cf
MD5 4781bc4f1ce8948b1e9ab5c3bbaa9780
BLAKE2b-256 910873519112fd9cd8ac13e37716ba25c4e43e1883b9bc8281586d7fa2844d41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9cbd46dcc6fb7598ecf3b6bbfaa133672d089720e5f1fe5bca749f5f29dfd4d4
MD5 798e50e39dedce8a06e3e10c9ebe24f2
BLAKE2b-256 ad5606050eb14d0d4843e2b70e0a6df99f738265f400b952328021816708ce66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b6af4e3439145b772a146059a958639a44485e16c50db63a0e7220606d56444e
MD5 ff6d4c4bf9c6593351b71df467b5a2a4
BLAKE2b-256 009bb22e70dff3fc4f017dd893e580edcf293a63ff73d763d299fee7a66cebb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d5a4d879ca7ef327e32de08b24467c753838254cc6897272fd108c862b71944e
MD5 a103337abc2511cc7a3fbd0cbac82bd3
BLAKE2b-256 26905d8e8c6209b2a4bdb14b2c519c00e87e38b1cb454bfabe64a4d9806e27ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 910572edf407b5d9d23e4966b290af9e45db34aa6185edf34d8a08995342f8b4
MD5 6fe6cbc97d57309d961d5aa5cb24e16e
BLAKE2b-256 c1c678b5b4f1803bbfd6484cc129a5751e1e35512cf8bf529bb0ef4fec78892a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 afe2bd04176401f58298ec83dd78a63b5f325ab2ec974ef705ddede92b5420d2
MD5 a7bef272f1f099b603837bfec712e6c8
BLAKE2b-256 90858f4123ecc190a72e0e9cba90073c1832bb0d4ac7962dc7d36ac440e9b007

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f21bc7c61be6bfacd510c8a4ee0453922e651c9e696570f37e603ba604402c51
MD5 1e230011c353fe45f3ed167e6ffc9ba2
BLAKE2b-256 e125f1c430432fb5e956e9404a3e3cef5ef61e3a03b5142f3429ae666d222bcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 04ce581aa3c33e5a9e14974fdb2dcc9f06e340ba550b18419ac701e94516f0b2
MD5 95df34b7a19ce9b6296660805a8eb2dc
BLAKE2b-256 c613e753f5b15fc344e462c6b30bbabbf36e47780ba2d1bccaffbb1cdcf46a3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 29c59b58e75aa6f0cf7005e8f4e046ce4f1a39a218e00c0cea903a3b89aa66cf
MD5 e0939a7c9e41a0ea4f71beac83e19981
BLAKE2b-256 5d39bfe8ec96c91e15dce7c584e883a2164eb8c7b213bd3aa2546d513350b9c1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.0.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 4207c61d3a3aff727d5361784cbb4858ddaa85da3bc3f3a4ca942535a32e8a28
MD5 f3151e59357ed51e263ff0d7155b4f62
BLAKE2b-256 36d050ad5a31bcae666f838b2ea7b920a222a078b9ac956a566d98223679adca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b290d4d688d5c499a505cba1f647164d92b67ec51992332d1da7366bb616f208
MD5 a62eea0e98e6c2530fb3df0ac2b81ae9
BLAKE2b-256 a7f71300124d6419d6bb21db1b15d53cc9976ab8b3bfbb1ae7ce0a47e38ade86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 69ce310db1c7a51f7485fc5f0e92ae1e5f58b37754c751a7fe26fa0249aab0fb
MD5 6ee61233d60acebb10d0e1aa0e4ff4a3
BLAKE2b-256 052c96fc7312eec1dc75c82d1079d8d4cea2c505417b549c8604abec3451c0ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8fd89a2ebc2dda0df8b9766a2b33786cc37515773b6213324e5d725e39b0c4f7
MD5 e555b23e4ca5ca2b55ece624ed13da7e
BLAKE2b-256 951a80bd601ecb8c8da7110137573ac3eb9b77f168ad44dd4a9d25ba15a0bad9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 948b73ca269e810b36f0130054eff1a5db120afde99d06ea3624a95d291235fd
MD5 4a8476f69453f5cc8ce155df368cd038
BLAKE2b-256 771b0ac51b4d456dd58da272aa23b911392b35aa27637cef470bfaf052656bba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9af922f7042b3e084f702d61a5a2aed12abbf6ff59046ec6352bb2d9a470fd75
MD5 1b0683d3b15849d90a0395408a63dd17
BLAKE2b-256 2d3aea57062900ee2f9052fb8a658222101fab4c57ca6d833484b958388f69c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4ca6210952f5c7a1bcd67f29ffd53cc566053a9d140e5af1bf5691637e8e719a
MD5 bc0932dd75b65c8de49f2fa9e66e284d
BLAKE2b-256 7542cf80ddbdbc76f8936ef0f5f3e031d7a144a23b162abf35d3158af683b310

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f01f2199e716f50e356aabb578fe0e7729a0edd1f518c9b6a8b0b640f0f2425
MD5 d76187b0f404bbba241072c59777e75d
BLAKE2b-256 513b387fb6b1dfc316967d9acfb9a8c6e527f2fd030d6e2ae7f919f602650ed5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eb1bb19eb1c6729002a204c1e65c7122a1651e5d0a56b25f19f2815941cc58d3
MD5 22eee647eb729f355c0a075e29c06ed9
BLAKE2b-256 6bf71b7ac014beae0a360de857f9804c5ba56fbc6bacbb9e9937b7ee26615100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 e430e0f802ff70df84b9ed2642939c545998f792a01e29742058094d08dd39f2
MD5 cb4dde6ea892709cf4906136e615bc37
BLAKE2b-256 a9b5e836e7b344dafafa6442018353518ee11403732f9e66a53b9e059c42a43b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.0.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 d5389065e8bc0421c9638e9bae7c7eb6aa86972015e3e147e89694c48faea380
MD5 78bb9559698e6ddb2886e308b5bd6fdf
BLAKE2b-256 a0793252aa2aab4a8c6186b228f6af376f6f41bcb71d2a46a97360571a50ac51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee5b78a8316b8aeb97845a504e8b89a7728c2509aba383b65058b76ecbb93141
MD5 41b9e057e82474327c9e2c06f2b66e69
BLAKE2b-256 bc98a38e8fbd24e0613b7b2f93a9bebc8562945993d93a0412727599750b8570

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0cbe07b7bbeda2cec32d306972a7a47088ba517c8aba5a42f1e5fc98461498c3
MD5 3df2424b292e9aff623b400cbe716402
BLAKE2b-256 72717f0c965187079c27b30d8c6e7567f010fc6b5c1b00231d3bdf940e932df8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3a51be7fc591b562c19a1d75fe78b9811fb81ce5bf8e54b9f5f641ee596f0d77
MD5 e39579804b60e1d3ff62b9986d954552
BLAKE2b-256 42fcae5151c5671fa9b4525af3a825612a1269866a38c94eccb88e5b4ab61129

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 acd796603e395828be5ddbea89f9248f98023ccbb41a30072eca0383b9a70fcd
MD5 ecf7ea68a738955a52c9d81be46b6f0d
BLAKE2b-256 ffd905559f615a23b10bb1b574cfaea901364cee93941602978f066a5c8f06e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2d8bde76d60abdc7555ded34547239f7a73e22cf8c51438f2227c9e247b1c380
MD5 79eaf8d6fe24db0213a1268ca4c9cf81
BLAKE2b-256 7dd1c7592714461364576e68e4e83d28592b00d3b387e1c342708535bd6a2d14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 28453d298c4225959ee386ab87a76519463d21198817c31a3019b9bb92c68e59
MD5 62acd52ee5cb0d8d73ac9997289bb5dc
BLAKE2b-256 d9e3c94d1dad1dd99f793c4eafb987905705a6ec5466932606d630257f249c09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31c45ee95c041ee3d48be801dbbd0093318c96a3343c68700bc1456b46df75cb
MD5 828af688e841481242d4adcfa68134a3
BLAKE2b-256 ae121cc4662b086985b8d780c77c287b310d4909d24d5c5c7893bf788e2a86d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 76132392c9f421e1a9b334a11289b8d38508bf52bdeae1c5ef0675e61d1bf814
MD5 0afc48492e2ef6fe11cd5582f0d5ab98
BLAKE2b-256 72f1f838b21c15126d80cba0a52b1b5c37bbc85a47b30a7e7be9a94b1b9f5262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 8dd4bdba0285f7bd061946f6c9e7b46f201703d641f49e1e40d472169ee08135
MD5 48c671a4adb5321d03411de76ab724cf
BLAKE2b-256 c902c92eaf672a0720abca97aca8fcf27935b756d2a02d71d7ac6ce91412ed86

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.0.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 e3367d9f19403c0f380cf90fe45e9ae931c620546b18f283c09e5f2ec0798c12
MD5 ecd67232d400949086a77d19de1358e8
BLAKE2b-256 cb7bb446de22ec2061225f58a568412765ff225f074c75f73b3e4764a97d72ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b2abcf18e654dcc66e5ffe45258d1dd909b18fdd2eb969bd0ec7da7ee9ebc44
MD5 a7af5252f87a15c18f412b39631522fc
BLAKE2b-256 3d36c34188cda5918c4c8cda59ceafe35e77c443f257bc920cab60bb18e321c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dde2b222ea6a42b1b7fe9ed8ead19985eff12b21b45acf2c4db52637df8500bf
MD5 ed98956214097cca042a229f6af629d3
BLAKE2b-256 6ce009bc6faf64a23e67483abddc7dd61f0c47f5a074ddb8ecf87752c9708d87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 11ba1a7bb46d7d4c7a6aa43c7528932b401fa653809a2caa7eeb22f709c7ffb8
MD5 28e0155c1534e69ab255e59d2739cfe3
BLAKE2b-256 c1b84e2f1b928447e7924e8e4cc0683318636224d753693917c02736936c9f27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d98257c4136e851d5d322d5aae90671d5fc52ef50c862dd102cdedc47a124e15
MD5 7b11979247678c512a73250c3efe4fea
BLAKE2b-256 19077a5e1281c7abe1d0106938193f90a1ca1252f07969b30a8506ec2a95767e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b74d52fbd30f4edc2d38bffa2402656450f5753e886b2abeb85e1b242ff1a482
MD5 7f18dc66300ee83915a3dbf86534525d
BLAKE2b-256 910535130a8476a31aaecec61c9573decb450070ee8f2d7113b2d9236362644e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bed6d3827ea20f874652deae49a416eac2044472d3b94a9f7b90bbcf1a51c862
MD5 4d6c818fcb841676a86b790cc657f68a
BLAKE2b-256 89fd10b5538d14f18ac0d5c4885ff5b73ab34aaf859d6fc9cb18f8813b69ee59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 489701670756cf4cb24ce2170480045a7312a47946e74edcc6634c6e5cd71dbd
MD5 4b14c82e89b3937fa90392d5aefab4df
BLAKE2b-256 acc482ba72d313c05ae1daaa9f112a9013a42c5628e142cb97a0629ed6a7a875

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3bdd3c31fb3b114a4c892217ac266c941007e2eb0eb9a520190fb13710f5f04c
MD5 9e2b9caa913d5ee9f21060112d3d8181
BLAKE2b-256 70da483bd663848abbf72bce16ecffeac8ccf710aa170ba7b9c3ac1435020ec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 4d4f905735893ebbca7e9f9c84047ea766f43a553593faf7847ae5c37c1ae6c7
MD5 c233d21ff2f74d8fed9459fb615ac054
BLAKE2b-256 82e549cddd36e3ae62b023a3ab1f82ac08e799c8d1b0c319f51305a5c0585191

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.0.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 93231fee0f51a8e2d21b7f8d7597b40974f6c018524bef604fa8d71100a4d92b
MD5 f1c6d39f0043ea3e8a92bc257a64bdea
BLAKE2b-256 8216a86405fba3809318aaa41128bc71cecca87e81630bbbb0d2820e7c7dcbfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b94672fae27d79705d02c6b10f5d1b9a487d823841d8b962ed64bf48a0a2b8f8
MD5 626d79fda116a59f19c234f3b847e607
BLAKE2b-256 b1d1f5243d4056fc6f7f3785d12bd95d4c224af6b5e8762b4f48fc7b019086b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6fc60a27e0e810adf1e9c78b322e88d18aaeb4b40dded17809c4d0149716305e
MD5 9fb1f5f54480418c492562b0da92a3d1
BLAKE2b-256 4382692e5d08b53b38485f37b2eaa5479147e2dab1e5c4526e2974f58c0be39f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 88f3d0f4162a71a80fe45da85170e099ee23aac437c1be730d2f7de7e93d710e
MD5 58890d8c66511105ef4dba7fd8f2c0e4
BLAKE2b-256 9830e98d2ae3951a184baf34a977e6afcd2946fd202cf154a1ed0154535b13a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 56d79d449dcdfee2429286efab69c6c570899094cb8b5a123253c6572ce6c6fa
MD5 7acf6d4880115a4a1d94a71cd8d6e02c
BLAKE2b-256 c542594a8d4ed987294dfc7d69f5ccacfc4007af4c04e4097e8b68927bd0dabd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40fbf66f2ff561a0db8d966e33b8b6092c0bf6de2944c295eab1eab730bfe591
MD5 f4e6229106498d8c2115d89fdf97f88c
BLAKE2b-256 39fcbf0b976a61aa07e745a4824e9990a0389a43c2e68f73e01b6b1140ff5ed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c64efb2c85ce4e203ba96fc6b3d1d231356b3d50973c269afb4715066301c31f
MD5 d00bc1ea991e9b2384082aa64bc226fd
BLAKE2b-256 898a9c51d1429d471403b9d282733a76e91181c7b318dd2f85722291149d1c8c

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