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)
  • 🔥 Full-feature and easy-to-use
  • (R) written in Rust with high-performance
  • 🤝 Support Python 3.8 and above (PyPy & CPython)
  • 📦 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 uses Rust language to has high-performance.

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

Low memory usage - It has very low memory usage.

Zero-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

How do I preserve order while iterating?

On default, .items(), .keys() and .values() methods are unordered, so you have to do some more works to have a ordered iteration.

For FIFOCache: See here
For LFUCache: See here
For LRUCache: See here
For TTLCache: See here

NOTE: Added in version 3.3.0

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)
How to save caches in file?

there's no file-based implementation, but you can use pickle for saving caches in files. For example:

import cachebox, pickle
c = cachebox.LRUCache(100, {i:i for i in range(78)})

with open("file", "wb") as fd:
    pickle.dump(c, fd)

with open("file", "rb") as fd:
    loaded = pickle.load(fd)

assert c == loaded
assert c.capacity() == loaded.capacity()

NOTE: Added in version 3.1.0

How to copy the caches?

Use copy.deepcopy for copying caches. For example:

import cachebox, copy
c = cachebox.LRUCache(100, {i:i for i in range(78)})

copied = copy.deepcopy(c)

assert c == copied
assert c.capacity() == copied.capacity()

NOTE: Added in version 3.1.0

How to save caches before exiting the app?

You can use atexit (or also signal) and pickle module to do it.

For example:

import cachebox, atexit, pickle
cache = cachebox.TTLCache(50, 10)

def _save_cache(c, filename):
    with open(filename, "wb") as fd:
        pickle.dump(c, fd)

atexit.register(_save_cache, cache, "cache.pickle")

NOTE: Added in version 3.1.0

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

Uploaded Source

Built Distributions

cachebox-3.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (566.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

cachebox-3.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (569.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

cachebox-3.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (645.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

cachebox-3.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (544.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

cachebox-3.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cachebox-3.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (689.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cachebox-3.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (417.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cachebox-3.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (382.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cachebox-3.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (365.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cachebox-3.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (393.9 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

cachebox-3.3.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (567.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

cachebox-3.3.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (569.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

cachebox-3.3.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (646.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

cachebox-3.3.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (545.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

cachebox-3.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cachebox-3.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (689.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cachebox-3.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (417.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cachebox-3.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (382.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cachebox-3.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (366.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cachebox-3.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (394.1 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

cachebox-3.3.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (567.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

cachebox-3.3.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl (569.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

cachebox-3.3.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (646.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

cachebox-3.3.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (545.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

cachebox-3.3.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (690.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cachebox-3.3.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (417.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cachebox-3.3.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (383.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cachebox-3.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (366.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cachebox-3.3.0-cp312-none-win_amd64.whl (292.2 kB view details)

Uploaded CPython 3.12 Windows x86-64

cachebox-3.3.0-cp312-none-win32.whl (278.3 kB view details)

Uploaded CPython 3.12 Windows x86

cachebox-3.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (569.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

cachebox-3.3.0-cp312-cp312-musllinux_1_2_i686.whl (574.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

cachebox-3.3.0-cp312-cp312-musllinux_1_2_armv7l.whl (647.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

cachebox-3.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (547.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

cachebox-3.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (397.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

cachebox-3.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (733.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

cachebox-3.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (418.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

cachebox-3.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (384.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

cachebox-3.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (369.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

cachebox-3.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (397.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

cachebox-3.3.0-cp312-cp312-macosx_11_0_arm64.whl (333.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cachebox-3.3.0-cp312-cp312-macosx_10_12_x86_64.whl (368.9 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

cachebox-3.3.0-cp311-none-win_amd64.whl (289.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

cachebox-3.3.0-cp311-none-win32.whl (272.7 kB view details)

Uploaded CPython 3.11 Windows x86

cachebox-3.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (567.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

cachebox-3.3.0-cp311-cp311-musllinux_1_2_i686.whl (569.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

cachebox-3.3.0-cp311-cp311-musllinux_1_2_armv7l.whl (646.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

cachebox-3.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (545.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

cachebox-3.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

cachebox-3.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (691.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

cachebox-3.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (418.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

cachebox-3.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (383.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

cachebox-3.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (367.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

cachebox-3.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (394.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

cachebox-3.3.0-cp311-cp311-macosx_11_0_arm64.whl (331.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cachebox-3.3.0-cp311-cp311-macosx_10_12_x86_64.whl (367.1 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

cachebox-3.3.0-cp310-none-win_amd64.whl (289.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

cachebox-3.3.0-cp310-none-win32.whl (272.7 kB view details)

Uploaded CPython 3.10 Windows x86

cachebox-3.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (567.2 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

cachebox-3.3.0-cp310-cp310-musllinux_1_2_i686.whl (569.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

cachebox-3.3.0-cp310-cp310-musllinux_1_2_armv7l.whl (646.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

cachebox-3.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (545.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

cachebox-3.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

cachebox-3.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (691.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

cachebox-3.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (418.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

cachebox-3.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (383.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

cachebox-3.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (367.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

cachebox-3.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (394.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

cachebox-3.3.0-cp310-cp310-macosx_11_0_arm64.whl (331.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

cachebox-3.3.0-cp39-none-win_amd64.whl (290.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

cachebox-3.3.0-cp39-none-win32.whl (272.9 kB view details)

Uploaded CPython 3.9 Windows x86

cachebox-3.3.0-cp39-cp39-musllinux_1_2_x86_64.whl (567.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

cachebox-3.3.0-cp39-cp39-musllinux_1_2_i686.whl (570.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

cachebox-3.3.0-cp39-cp39-musllinux_1_2_armv7l.whl (647.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

cachebox-3.3.0-cp39-cp39-musllinux_1_2_aarch64.whl (545.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

cachebox-3.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

cachebox-3.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (691.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

cachebox-3.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (418.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

cachebox-3.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (384.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

cachebox-3.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (367.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

cachebox-3.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (394.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

cachebox-3.3.0-cp39-cp39-macosx_11_0_arm64.whl (331.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

cachebox-3.3.0-cp38-none-win_amd64.whl (290.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

cachebox-3.3.0-cp38-none-win32.whl (272.9 kB view details)

Uploaded CPython 3.8 Windows x86

cachebox-3.3.0-cp38-cp38-musllinux_1_2_x86_64.whl (567.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

cachebox-3.3.0-cp38-cp38-musllinux_1_2_i686.whl (570.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

cachebox-3.3.0-cp38-cp38-musllinux_1_2_armv7l.whl (646.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

cachebox-3.3.0-cp38-cp38-musllinux_1_2_aarch64.whl (545.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

cachebox-3.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

cachebox-3.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (691.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

cachebox-3.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (418.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

cachebox-3.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (383.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

cachebox-3.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (367.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

cachebox-3.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (394.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.3.0.tar.gz
Algorithm Hash digest
SHA256 c1dc41f6bd4f63721755e809b430af9c286c51143865d41158b8ad950e386851
MD5 04cf27c2f1a94d75976bac7b2957535d
BLAKE2b-256 7c2f744a4202d4908225304e547df9d0a8fa49f001c077449efdc39cf43d614c

See more details on using hashes here.

File details

Details for the file cachebox-3.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-3.3.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b1b105a0f4fdc7d88d1efca847f11b6e1351dff69bf20b4b97390c9b1e98356c
MD5 55679c6726819f3721ae889fcce04c17
BLAKE2b-256 9e30017d5d3e0ebd53649ca0950ef7816c36ab413dbc5792743190236dfe810e

See more details on using hashes here.

File details

Details for the file cachebox-3.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-3.3.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 520fb1c861c5a193f053302459a3cbb0572e64ec5875803a7f65799c9a5001b2
MD5 a6f5409d3da7ab9773691f952bc3a36f
BLAKE2b-256 eb0f8d127e8e6a75d7972e74ec2251ae4d2b9f3ad620ebf88cc592b257c57b95

See more details on using hashes here.

File details

Details for the file cachebox-3.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-3.3.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ebc1198f3321a78c45f2d29372190d3a4b97dd7be2ba42275879c169941aa803
MD5 1b6baff1a5ef94f26ba9beaa85ea246c
BLAKE2b-256 63f39d36e1b01416859fb452621667297197fb091f753ecc1b2de4bd6b61e21b

See more details on using hashes here.

File details

Details for the file cachebox-3.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-3.3.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a4cee6f74d24ae834337b0eddbb7f4b095a949e899cc1bae6e0a1a78da4f9bf
MD5 a6a7c25a4c77107335056638872f07fa
BLAKE2b-256 e1fc76cbc51ada6115fc0e173660aae854327481f7621170e119adc4c1a25605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fb9c44ce5a22917cad664c3daf9498cdc965f9e633985eddd751b5e81d8ca8a
MD5 0b70ce86513c9522f961b7276434ec03
BLAKE2b-256 139ac01f93588ff9ddc07eacfa8ec863f86acfbf3656edb47eed512ede167946

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56b3162105ddcf17291e0c333d0e8564d508588a97a3124daa5ee73939cbdba9
MD5 8235c7bd01f55802f1bb01fab36d3c3d
BLAKE2b-256 f3cd9e512ae8f61e9a69b53e862ede7c6b60ce91556f5f30c90415a9ec57bf52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ba8c2677e3fee660f1d4b0a9e49a6a5f91c255f4ba209304f82202c8b8e9dd1c
MD5 1fb9e1892f2f9a35937003a841496538
BLAKE2b-256 8a0d4a81fdae58447327676123d180ceeda67f6ddf3d701396291bcf5eb6cb8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9a6dd261835f7bf910ae8d9acc58303c306c12b3bcc7b2acf343997ae03b1d08
MD5 5bde629c41c3ae709c225b3bc6a7f3aa
BLAKE2b-256 75acb90249a5065db574a9919cd2d6c37f90ed5f14f5e3a87ea65e1c7a8cbd38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 999c0597ef42b1d20198edb2fb9214214c9232d6f462c12be98ca4c6224fd98a
MD5 e7ba28cfa92cf0ccdf2b9f7ef26c1ba3
BLAKE2b-256 843967898addbc4043ea3de7ae9f20254ba9fcda8142b92970f59f5404648184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 68ba5a28a47317d4e374db6c459bdbc419924d036e4cbc07376d1bfc71be3858
MD5 055fac59d1fcd8d0e7f5ea0149cf33c6
BLAKE2b-256 1766f7171e2b9f2ba6f20e0958d0e6a3ae85fda5d0d195e7f588eebc6ff8ca45

See more details on using hashes here.

File details

Details for the file cachebox-3.3.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-3.3.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8586dfeef795e6267a45f601266f867fae7c933f581f6fa5aeeb1d730792f54
MD5 5c0a4f6ce67b6b8af258468527c431c0
BLAKE2b-256 c4077f8bbed049e1341040d126125257a7fc9982b9bad3a4542e4703773df4c5

See more details on using hashes here.

File details

Details for the file cachebox-3.3.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-3.3.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 09f45fe9c370fa5140fead5f4896966773e078575f5ee2e662c461cba27e6dfc
MD5 ad8f4c197d775462d3f18a68fa21ab41
BLAKE2b-256 91cacd06de52ff3a36e18cb430692f91cf15b59a233161b448d8cb8ee15cc87c

See more details on using hashes here.

File details

Details for the file cachebox-3.3.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-3.3.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5bc8fbf14627bfc1f4cfecd530cfd51f0ee0f34e76750bcc8adccc823d582093
MD5 6ff6ca19eb85e89695acb0a027f4e482
BLAKE2b-256 bf43b6a22c9f176ff251a02c922256aabc2a7bbd7b918e7b14fb232c49f11c16

See more details on using hashes here.

File details

Details for the file cachebox-3.3.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-3.3.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 793e4dc0affa59ec44cff55ad2b4e740b974cec93615601ac8e937c5812c6203
MD5 8e27e13cf32323ebda0f8ea65661b149
BLAKE2b-256 a5d9145a52d5721e576424a3632a2cb0f5d3f9c6f23c573ac08e8f00498450c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5783b6718cede9a8c3e5a467b45620bb8fda70a70777d33738c57f4003333644
MD5 5c5e4e0d2735fd7a09593f8e019c1057
BLAKE2b-256 f7e509c49f2725737d8436dcc7c52859d39977d4eab65996ea578aba62be1a9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c0d3c334f573995c4084ffe0577dd3bd23376d577931f85e75c15cbb7feeac10
MD5 378f43d39c5d21c25bd2abc5bb48977c
BLAKE2b-256 a8e2dc069cc2bcefa6ad4c0b5997e73a5a8fd0b4d5ad73d99918de45f803ef34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c66bec1877d1ebac8bd4319ec7a8711e0eb79f9a1739de7a075cec80efd676b
MD5 dd2421f22cde9af6f4cfee5a88bb28aa
BLAKE2b-256 dcb9e9a655bc98fd29e2a71c59c0f8762a309d4b8848b6520c9f2bae1c903035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab100e3c7f5e6fbda2b79925ebcdaf6671d5fe83fc291527d20336eaa3f96156
MD5 f7b3e7a947c7260112706b1df5bcf1d7
BLAKE2b-256 0329fb194b4261f1983492b5a8eb3e3f12572eee3d7a7f77086427adaa0eabe1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5699345ee6bad6a0c37b0586c2f7299c082ab57323fc7df2b3a8f293b6e21f06
MD5 3139670d990f2244dce290946f777b46
BLAKE2b-256 2cef758fb9ef4593bbdbb8167c65cadc0c606df5279853d615e779223b56ab61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7a830ca73aea0dea93890c415b60bb3949400d9ce9741ce231b158d96bb531e6
MD5 a7883fbf8016313c28808e45fd667504
BLAKE2b-256 f52d32a50f991a22e41723914b78f33a35508ccc8342771f2e0891d7f47360a8

See more details on using hashes here.

File details

Details for the file cachebox-3.3.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-3.3.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23ba51fc93277bf0110f59ef31d4f3159b003e93f73bff121c85f278b79fc11d
MD5 a2bf4e6970b55565f919f8d83b40a29b
BLAKE2b-256 dcc476a38552b283ad4d0a7077bf957d53b8d7b8363125d4f10257818c7e5b92

See more details on using hashes here.

File details

Details for the file cachebox-3.3.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-3.3.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9aae63a7fedff1e58c2b790bc847d570e27938b5ac5857bf397fa224ca2b109d
MD5 7c410a114e29f8f4671c2e42e8fc1ed4
BLAKE2b-256 e6b82a8aaa08557ad34ce903e6bd79dc97964a13f7f91061eb6628d0f2813ae7

See more details on using hashes here.

File details

Details for the file cachebox-3.3.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-3.3.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aaad83af47a0384b1d0d18a05fdb44aeb5a1170ff266a395b274eefbcdaf84e5
MD5 f2d8b3b93debfacb3de260b278688b71
BLAKE2b-256 c68ec40267e0550fd9fe05edc3bcba8176b1d96b9c3e36eeaf03259a56d10404

See more details on using hashes here.

File details

Details for the file cachebox-3.3.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-3.3.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 beb77fcc9d31dd37e59ac7c284cbeb30da42fea73c8344c1d05e7c92eee919a0
MD5 774206d30cce8331f9c063894accc4c9
BLAKE2b-256 b4df6cff220c55b43f068d2fe779b85eb8afb1c88b290229775329de2c502c3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d7ef969114c3c2d5fa35df6d02be246953c1ee5873874aa622365cf89a0ca111
MD5 34fb7ab42f8f4d4cec697141b52b5203
BLAKE2b-256 62fbf71f1e2a681706c1191d70ba452e8cb8ce3317171868ed1af63af8e64944

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9bad583426a52bbf6aed52ed3423b4c12a66e9e38fdbc2f5a41bdbc3d568f09b
MD5 dfb6ee8d95829082007ca21794532e65
BLAKE2b-256 9526b90b2ea71fdca0ce4ac05cc0fe9c5453b7e93611248ff3fa759814338716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 596c38d099b33189c076d0c25d8a9eccffb628de2d6f8d21aeba2ce718526401
MD5 add609e6fb42961f7ea9c95201946cd9
BLAKE2b-256 44cde9d9ee87f2f6756ec9e225a41560820a2432114249bfe164e63e951df994

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b38f59fe9743bc3f030432d7dee4d73e9ef0a92017569c9a129581eca94bf407
MD5 da90f2f0dfa0894abcc799d51a7960d8
BLAKE2b-256 876eb367490c113e1edd73f58bad7e166c1c6a6e17b5218a564f178cef9de034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 f238f1a6c9450625cff47b5544a8c9170ed2e2e549895dc74f0ed686bd202b3d
MD5 2f70bc389cc325975c7acac3738f4db4
BLAKE2b-256 8a14c52108ac04dd15d6e296b75409c4277650db8a872d8006e2082f7d51afb4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.3.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 bfa5d10893b264e274f30a3d62b3d387a3f49064713f63d4d76d9ae3b061a0c3
MD5 0120b2475f18d0a0a2d3e1f59ebf5cad
BLAKE2b-256 d1421d3efbf36c82ef6aa006c1e619c0d525879dfaaeaca35547e87e02aa5b0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ecedaadfaedc04b570722dc4e14b6c1c0954a11bd5718e8bf891d36cab0e5d5
MD5 a76ed91f18f54f0cc8e2c7efbb2ddd51
BLAKE2b-256 89035dcbca7e65f7e7b90794b36bbb4f11859c1ed09f064e2870f4ad60dd6621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57c9cd520554cdaf6e67a9635967a147a3a9db0207508e25c75fdf98877fbab6
MD5 0530e745301720e6c86c11cb1c3d96ad
BLAKE2b-256 ef4f304275d45818c3c9c01a8ce751f0db3eb89905b9962fee82f7a6c724f60c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5abbc146c33694ca8ec6505584699460f56e3161864144f6c5f199bd57d4f4fe
MD5 e3d7a97ebf06352f9e5edcf9723c498d
BLAKE2b-256 168e9a77fc324153156d453e77b021f18e22eff279ede5ac8e003da44726171a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3295e2f80c0aba29bab08c44edc4829993b0a589c4efa2239a44521bbc6dc87a
MD5 86a60cf00a8afe88927b9360fc58405d
BLAKE2b-256 ed38da88ade5635a968770a29648dabedb8da3108ecf7ed41acaf416a09c0962

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15fa6c60e9e23ea3adf23493ee501c0e1b7d2119841679f32b4c1d908347d570
MD5 a10f9260113b69b8069c6b1792f47ef0
BLAKE2b-256 3c49ed8741e78aef93ab435833065eb8ed318156d8ef4cbc47b0c1cca2d22801

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9da7de675baac27f463db61acf495d73b3c3db038cb2f7fb11bbc4f513b7357
MD5 0a198fa343e64fdfc1b33926b43e0e75
BLAKE2b-256 f6f789caaab6766810f388c40a99413b3ca8f3c17c4cba0a10f12c1833e16ea7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cbbca2f3cec543083c92c393760a4e8cdbc56717fa22df1d542464c1ed1368c6
MD5 e3f166c763a02bd1c1e228ac52233e57
BLAKE2b-256 97ccb9f7cc4dc62a9bae08207f489d564de4a612d88b715c08fe1632c1db6005

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6edd3b7ad84715d703a167facd72b4d6bd87776bdde868e9684410d744f812d2
MD5 a0edbcf54984e25871ec5d6b3e6854a4
BLAKE2b-256 df08210236bb11f6b321fce8c0eb64b55184a4fdb3e8267f56f4fe9bdfe808ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 460c95335a3cc1d7dd028141f273e3a92fbe362b729f02c8c6476a8b7eb01cf4
MD5 431eb1ecce9fe382a62cb1b15b05c9bb
BLAKE2b-256 d36b73e76a414e3cec6d3489581c0db562ab84fa7b2cac0f10e3932ba0e67264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 09c85e2ab5c40ac19779694a08f17083f91b9c25aae451bff4c7e4b0a822d99f
MD5 64efee0da90548eb5b130d9590a2a69f
BLAKE2b-256 9e63a0b013a3273794a3377061ef1c52b01a978dec677b0a746dbdb7f0793e9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5a212b659c9495b9f3ac093711d8411d0f60e32445b62098988a2430de9c86b
MD5 c049463fe9aad4fe20ce82f00fac0f55
BLAKE2b-256 26e4f9d29fcf1035e9a6c35fbc47d51537b7bf7bfbef6e42da3ec891d66f93d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dc0fc713f2ffdd2eeccecc5552fc545e2095506cff5e76a0882fa00aa1fcb34c
MD5 deb1ad66c2d81cf7052ac90678ea36b3
BLAKE2b-256 b438e462599954440264fd20dbaa9688b47020fcba10af19f58916b0502bc395

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 1bb23609fa90d97ba47e9461d1a0ecb05aa32783709c23e78b9756a3e95e9c6e
MD5 d64fe0f5cf4adcc6634ecc88f6e91ddd
BLAKE2b-256 cd4e4beae586c5b04a36bb8a0c67883a4c1f604fcfb2f005db374b289c5d9148

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.3.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 b6b2742ea6420a1d95ffecb40a482da3f26d8647b49a9c73206ec92580dd3aed
MD5 4adb27598b9dbc5a095fb2d9ffa084c0
BLAKE2b-256 a59dcac575ed2be11c64d4ec20885b4728cfc4b9f9dadb4e06720341cef32f67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0a7ed3043e75751f044308d61ac73be4188503460a8d2c0211d11a6b1820398
MD5 aefcb153b26668223b338a702ef5e96b
BLAKE2b-256 53011facd470dbd818833a3e9269cbf1cfb637d4e2da37d581e67de5c6332464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d8ced4acf27f9f50dff51d7492ce1d7790d67454593b1649d9ee1d92c9e9b54e
MD5 898c9ee8409d6042d1461bbcaf852e27
BLAKE2b-256 f30da33faa6839d2b49f5b6e4f57498dae36c4c4075f114365b3a0f831cc1166

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6587ab98338507288e9418c5fd11ec3669b44232310b65e9a3504b0662e56846
MD5 39cb4157e5287af84113ce397fce4894
BLAKE2b-256 c90de593c8c71b0a10e645d7b7c28c2d2e9a681588e8f9c71c6c4fd18663f066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1d30d9dd36836c183c2dd4a4bdbabafda18a1545ce303140691cddab7ff3d023
MD5 e16f45bfbd03065a040efc8fb9e953ec
BLAKE2b-256 d9894696072873d7ef36df94668113ae720883e10a11264be683ca251b49424d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c10bbd6bc182d136167ea82efd86e96a2e977e935bdb8683f3269a39cdaf3442
MD5 d88ee4c9c239a02e4564dcabfa2bad9f
BLAKE2b-256 ae5947d245048937d8a2f28742ee375a0aba23d0fb6ea5e23feefd4fa485b363

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2015083bdc3524707229c35d463498892370027fac584e2dc0e7d30609ce3118
MD5 60887039853a7d0a5273bb646f228002
BLAKE2b-256 54179cfe908ccf88a3b7473e42e33475f92163b0e98bd55837f044a0571b37df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 54312c4a8c6aebdb78bf87d26c1b60a52a898635dbc5edac93ce2af9e78d7bcb
MD5 8d138ed26fc6147ff11bf78120c0da19
BLAKE2b-256 5514833eb9a06f7acf02554d014ca45991fdace7885fa09b4f656dd6c750e648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 21aa0c50aecbc522fc311958935e1fb45f97e1e9bbca1c0294eed2e19697090b
MD5 b3c3c302d1f1c8d0517e3992f87968a0
BLAKE2b-256 733d3f9d02de902fd27e9d2c20a09c590a2c7bbc4cec00fdd8503156b00c5788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea917665776eeebecdee8f661a0f14701433d2d70a3300de9d04473454a3a5da
MD5 d93b21d9c6e42ba10f5e292533eaea8a
BLAKE2b-256 427428e04cec29cbde7b5ca1a7677532af1ff8399615d461f7411444e62d0a12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4af50e46a716fd92b7459fdacb6ab710dd1f991c396ec8e4664ec7afc682e219
MD5 81ba8ce1749c5003772eec051b6a1244
BLAKE2b-256 a43667d64099b78e5a66486d8d05f8817f927ac77cb3c359928ba4af959fad43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 953298b29c31afe91e3cecd1773c0767b05bbf7f2c18a3f0ae663e2ec8322a2a
MD5 523da718302e841fb33d2f84e32b5de6
BLAKE2b-256 1a9cc77f7e0b21dd8951f77f054c6b2b80160e1c6646ac3a0f8012c9cc305cc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1c3a595e84179cf5aff0b98aa24e8c31e35aa66685df2cd656c3c683c6f9552d
MD5 a3dc2170671e276aa192b793b47b6b91
BLAKE2b-256 41f81bc63d1b01d48f212d9f7a2a5bf4ba4a061b60c312610f950b63771fcbd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 ce468bc5be5ddb438b384d32aa6782358a179f4b074a0eb5726bbf42a894f9c4
MD5 23b4896396f2e6f9f6770b7f92e83213
BLAKE2b-256 02f9a41e411f16eb778ab63fca5c1ffb5d33307babbb7d5585d38a0a250dd43e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.3.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 cfdf9ff21da685d34c4fff8c9a14a6af0738a7e84b320265388fca6c7349f7a1
MD5 a0c1367521e7a6a5144c45fc9992c93e
BLAKE2b-256 a2113604ca444347100659cc6023c6531519ab1795ae7ea0d95d1cd590d81105

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a2da9c9943b74303f0c857416e3dd99b90c0259fbd5a84a4a76b80be3f2c6737
MD5 9921a2ce607c2aa39b1d920f95505698
BLAKE2b-256 9fb0cb05935eeff6bf33aa9000ee26520e1c0a3789338dcf9cd03a8e91f47aed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8658203042ad2f9fd58dd4b743ca4a4f87c21c7b228ddd6fa059dc54baac133f
MD5 6f3c85559843a807f2f38aa27d08777c
BLAKE2b-256 becb326eb6807d285ee5e04568320c5371fc1c0f7910bc88bbc508b07b9ebefa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 66b89051946b318bcad695899c416090f7feada2f570a9a2272e1a3a209b0dd3
MD5 2d4115cf31ad5b725343f435e14db055
BLAKE2b-256 324642bdabdfb3fc0e2a9181e084acef35a694f6c47b1f8d88e6b502468ea535

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 251ef0f6154cecc8b32d9d47981a5f86fc165ad480de237b8169e0bef188cc69
MD5 d36648fb79b206b08c5ff1cd0a9e61cd
BLAKE2b-256 c3e517fdb491a49599438ead11f79c066a042e8cd30308c9a064208dd9c20650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22f0e06cdfdae792350c7cf7abbf4b8871b3f4de97f5fb2b35128838b810b75f
MD5 042b0efcf6fd5160bb22b7f896f83415
BLAKE2b-256 e69c299ad30317594f28649bd9eaec59977bb3f892269be928178be8364b81ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d80218f8dd5bfc7cb4101b7e54f4d4044b21ed27f92787668f4b45bac41ee633
MD5 fedf84cdb810d4430ec2aaa00b2ce703
BLAKE2b-256 c2a7a40eb83617025261d8ec85a9aed61830ce18b4c155a15971598d74f45d65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9a0e57243c2182b064a50e98b8fdc8f1500f2221a7e9e8f8fdd3b720cf8f7aa7
MD5 550cd8339ae696d3fadee9edbcd81f79
BLAKE2b-256 ad60743dd3b2930b1826c9e25a7666c076f9979dd201649991a6074c63f43c29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a5eb99b2f75a7c7dd23f0d9fe60811740f585f6354820590fc8b72c759f2a82a
MD5 a544d532372ba980f24cd85b393ade02
BLAKE2b-256 6a5a8cc33ab745eec3b4ce77e34985d710a0dd937d2973e1b1c5dc280f58c005

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0539fc0e84c58b1c2de7fac0c58481a15608978cebb3bb7aa81c4a5094dd560b
MD5 042be06ee783509088d820ecde02a4f9
BLAKE2b-256 63c2f493630e6c599fee266efeb26765ff3eed1acb8a4e56998d1bd0de565d23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 78a0fa818ea613dfc2ed7c9259904e3a1b50fef16360e06ac086c54c17edfd94
MD5 928771b148413d287a4f193feb06872e
BLAKE2b-256 fbc66cbe58aad5a00ae0465234a3afe1947dd8771937fb24e0a1110707a373ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 902a12668a0128d2d0fc543610cf50336cc707b2b363054aed63c607b0485871
MD5 3604f6f788ee4213c53b1511f0097389
BLAKE2b-256 3eaba4322d44d0558ff19a83ca5e87f88692967084a0084a4f395427a4d3d844

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 145bf7d6d5dedd8a4b1a198fc6d6c3d0e0714f340518440b25d16942aa07eaa2
MD5 1858f45cb1014a791eb19ec21ab9e5e7
BLAKE2b-256 62f910635613ad54a33d53269cbabaccb803c6366e3cc74c4bd440bcc9aa7c96

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.3.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 bee7216ef0a5e062db7fdcaa52e10b879f47b9fd26315580d8f42826e462a84d
MD5 646b5596d9ab7d454df3684efb48f032
BLAKE2b-256 35037012bd2d468d90fc9017202333c21cf9fbf1c7738ec2c6d8c3d011bfa54b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c4d7e285b51a49be2e88613ea1861e35ad1f3bf0b1180a55c682dab7291a5e8
MD5 65dc2a53695203cd051855d36d184da8
BLAKE2b-256 0569ec1b4b8f77694b50b538ecc30c89d9c847d273286ce34ede45ed9150484c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b45db93c23fa28d0126b94424183f582f5df85c5ecd25a6b9a90c3b166505bf0
MD5 cd17a2101e14ffa936ddf45c3c137b01
BLAKE2b-256 1dc9b49af39a9441deb5250b03fc7969d4ca4e3b634cee4060d718f79efd6ec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b2a07b53839e18e1f5ba491f6bf772fdbff5c4b256cc1a9380ee137a01d80e28
MD5 5912d13e3b5d477f5e9e5b6038cc1632
BLAKE2b-256 210402b93c2349a8aab589c42c0a07ec6e76a57344571b7fb7b078d43d572ca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5fabc1654d67d22e025907b1c851cd6dbad2252028d99bada583cbb40be422a
MD5 0f8d48baf4a96c86b6dd3377c459f2d3
BLAKE2b-256 ebb50a997e813e861afa8282204f67c6808355a4cc9f0ad3c02f7be2dc28f709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9925b8545b5d7e391d2c5adfa1bf45c8de0d43547eee83cb11e720c089e87d5e
MD5 827c1abc2aa8c927ae4c6159f0f363fa
BLAKE2b-256 c9a36109f314931ab448c86602147abea914c3d73d2111be0d787b08bc2a03ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1c2734c57863d35f1039c3090c08d6918ccb6e7006123f2ba4bc6b6f62b0fdf4
MD5 6034604f4bed3362e7b960bc62c3be47
BLAKE2b-256 3a470c1e9787fb7cb9ebf19cfd99325e0ae80d5bead2766c4b192efade273a5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5d03a72c61af4a03f125a1081360c7dcd87dd80383dbf8b94d825378191c27b8
MD5 e2ed99e768eefbe820832edce4ab41f3
BLAKE2b-256 a7034e052713b271b26d1b403dca1d537a7c7a7b37b5d957465de14d5f25cb6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 58e1fe9d90224d454f9ea6862fa2903729416c5ab49b65679859802b53121281
MD5 ca5f0f89b90d20b233848fecd79e48c5
BLAKE2b-256 d626ee120c8932fac745b026743ddc778633a999e2234cdcfd9f93d7d1c19cc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3354416774fcf12e3043e243ba006dc414eccf5b10732ec41081ecb7da9f4fef
MD5 7a7bacb34de4ba973d666624b5c80f85
BLAKE2b-256 d361a32309ce1e556913de3a371036329d01b924fa6a913661a0bf71233c43e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dafd25012d20800f7aa2e6c5e0b03683851e7acddae23b317cb044c561b30ce7
MD5 a2b40098fb039b369813d4af349a2d2e
BLAKE2b-256 f76d7cf46c4550e212646caaf8ef9d24cbcbfd232225e832c5c1e11219f5f3cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52a0602837d193a0bf1afa896919d87c2ed50cc42c4c1c92ed96c268136ec987
MD5 607de7c64d50f15226b21afaad09a427
BLAKE2b-256 cc3601ca527a52a91d5a1b250776ce1e56dcf85ae2d1d928b0d82a3ae0ecd918

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 e2729ac62a4c93936f4c5296e837830f19c8f7e173c511b5a72890cbaeecd1a6
MD5 3c0655b730733d5788c17a657201fe97
BLAKE2b-256 c7de4f525ab18f754c156cb4a74f1a8de08c76e6757fa5a1069646bd267fe94f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.3.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 7f6c3441757455731cb517ded540cb8cf12049b1fd1b45a23e07eacd5a55c51a
MD5 0692adaa1f9e32cc58da061ab2842741
BLAKE2b-256 850d6b06d2d8811441c8529de4946faf2f78fa0a24fbd0e69276d1df65384444

See more details on using hashes here.

File details

Details for the file cachebox-3.3.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cachebox-3.3.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c563331d02586b467168373e3f40da66c221e8196c9f30b354750962b33f4e5e
MD5 4b7a157abbe49815c536fb961f07ba14
BLAKE2b-256 ad11b3e975c2d2335e0c8b0217f0e813a3a7418c0249b849091cb6e61c20b1d4

See more details on using hashes here.

File details

Details for the file cachebox-3.3.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for cachebox-3.3.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b14d113ebb1dc1ae71ecd01b24e60fb2157a46d84510951d0295ac5191683d9
MD5 004034664c88d9984d98844ff3a2730b
BLAKE2b-256 6b8eb998c5c773d7389c01b1522fab9380a5bdb78abdf6b812e83cfeb1211739

See more details on using hashes here.

File details

Details for the file cachebox-3.3.0-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for cachebox-3.3.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8ead6ea40610ce084dd9659bebf1f93091ae9402604410d753d1914f6aaa9fc8
MD5 6b85a256e34f4f0d90735d5637db91d4
BLAKE2b-256 44d2e3bbdcc404a90d9e7c5c24c9855d464745dcaebaef69e534fd6c989727fc

See more details on using hashes here.

File details

Details for the file cachebox-3.3.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cachebox-3.3.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0ff1bcb92f8c5898f75202d3fc449a771de1904d5dfbc67edf713c673e78ee23
MD5 75c468de3417f22f183326e47316b4de
BLAKE2b-256 2fffa19112fd240be16954d93485443c7c6a5e386e7d421c208c20ef93f40648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48004cc08482575e4e858228c1e5558dd77aefad26cb298830bbcc3d0525fc9f
MD5 2b98fe8484bba19e30e74e665be3dedc
BLAKE2b-256 0628627433b6089a363c79875fd938c63d436f8525d9207491a178cd8dae8f4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32dda885b38e521ae3018a4e05a2a3f4440572a717d06bc54958907b9d37f62e
MD5 9dad348b52548340f6647247f67441ac
BLAKE2b-256 2ee84d87eb6925d3c3e93fbb27da1e876aadbe66b9350d50af18fca01d9e518c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 77f98a50bc5f8464163b01a6b6a8191bc7daff315176b0a7eb31ef3390d7f6d5
MD5 280641339400ba062bac1f5c2d69e06c
BLAKE2b-256 75610989484adfaeff42616527893bbe0399932399017e0b483b40523eb10267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94e66053681d52336130383aaac81cc8201b0524837c3fa01bd57951f7210f69
MD5 73828925cadbc4d25ee5f4cca7f4b3d5
BLAKE2b-256 2585dfb2c4e7e518e11b2d8527689afafcdc385b145887f472c3df961c7f5725

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3e3d94cb73ad1d5d292341eb379770703777670aee54f67f1611155bf2f65867
MD5 b8ac37e76bb1c6d92e0cc630aceac9f3
BLAKE2b-256 7dfbcf92989d415820ffb5f358ea55997cd3f66ad79b5897ad38792d85d47e87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 549c3cfd60cab5f7dc7b341db0793209067bb073e68c51c4ddfbab28748d739c
MD5 ccbd5a2d482f13b25fa30be9fdd420f7
BLAKE2b-256 3a2f17e5f5f21c02a6be190170fa1758f6160608c855c3694e460e1c3c30ea59

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