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 improve 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.4.0.tar.gz (49.0 kB view details)

Uploaded Source

Built Distributions

cachebox-3.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (520.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

cachebox-3.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (537.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

cachebox-3.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (601.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

cachebox-3.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (508.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

cachebox-3.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cachebox-3.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (617.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cachebox-3.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (383.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cachebox-3.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (338.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cachebox-3.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (329.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cachebox-3.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (361.5 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

cachebox-3.4.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (521.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

cachebox-3.4.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (538.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

cachebox-3.4.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (602.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

cachebox-3.4.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (509.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

cachebox-3.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cachebox-3.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (617.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cachebox-3.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (383.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cachebox-3.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (338.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cachebox-3.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (329.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cachebox-3.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (361.8 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

cachebox-3.4.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (521.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

cachebox-3.4.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl (538.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

cachebox-3.4.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (602.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

cachebox-3.4.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (509.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

cachebox-3.4.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (617.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cachebox-3.4.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (383.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cachebox-3.4.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (338.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cachebox-3.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (330.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cachebox-3.4.0-cp312-none-win_amd64.whl (258.4 kB view details)

Uploaded CPython 3.12 Windows x86-64

cachebox-3.4.0-cp312-none-win32.whl (232.9 kB view details)

Uploaded CPython 3.12 Windows x86

cachebox-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (531.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

cachebox-3.4.0-cp312-cp312-musllinux_1_2_i686.whl (537.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

cachebox-3.4.0-cp312-cp312-musllinux_1_2_armv7l.whl (604.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

cachebox-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (517.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

cachebox-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (359.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

cachebox-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (615.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

cachebox-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (392.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

cachebox-3.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (340.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

cachebox-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (338.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

cachebox-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (359.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

cachebox-3.4.0-cp312-cp312-macosx_11_0_arm64.whl (307.1 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cachebox-3.4.0-cp312-cp312-macosx_10_12_x86_64.whl (332.6 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

cachebox-3.4.0-cp311-none-win_amd64.whl (243.9 kB view details)

Uploaded CPython 3.11 Windows x86-64

cachebox-3.4.0-cp311-none-win32.whl (233.5 kB view details)

Uploaded CPython 3.11 Windows x86

cachebox-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (520.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

cachebox-3.4.0-cp311-cp311-musllinux_1_2_i686.whl (538.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

cachebox-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (509.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

cachebox-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

cachebox-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (616.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

cachebox-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (383.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

cachebox-3.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (338.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

cachebox-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (329.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

cachebox-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (362.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

cachebox-3.4.0-cp311-cp311-macosx_11_0_arm64.whl (299.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cachebox-3.4.0-cp311-cp311-macosx_10_12_x86_64.whl (320.0 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

cachebox-3.4.0-cp310-none-win_amd64.whl (244.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

cachebox-3.4.0-cp310-none-win32.whl (233.8 kB view details)

Uploaded CPython 3.10 Windows x86

cachebox-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (521.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

cachebox-3.4.0-cp310-cp310-musllinux_1_2_i686.whl (538.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

cachebox-3.4.0-cp310-cp310-musllinux_1_2_armv7l.whl (602.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

cachebox-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (509.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

cachebox-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

cachebox-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (616.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

cachebox-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (383.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

cachebox-3.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (338.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

cachebox-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (330.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

cachebox-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (362.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

cachebox-3.4.0-cp310-cp310-macosx_11_0_arm64.whl (299.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

cachebox-3.4.0-cp39-none-win_amd64.whl (244.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

cachebox-3.4.0-cp39-none-win32.whl (234.1 kB view details)

Uploaded CPython 3.9 Windows x86

cachebox-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl (521.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

cachebox-3.4.0-cp39-cp39-musllinux_1_2_i686.whl (538.8 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

cachebox-3.4.0-cp39-cp39-musllinux_1_2_armv7l.whl (602.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

cachebox-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl (509.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

cachebox-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

cachebox-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (616.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

cachebox-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (383.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

cachebox-3.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (339.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

cachebox-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (330.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

cachebox-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (362.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

cachebox-3.4.0-cp39-cp39-macosx_11_0_arm64.whl (299.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

cachebox-3.4.0-cp38-none-win_amd64.whl (244.4 kB view details)

Uploaded CPython 3.8 Windows x86-64

cachebox-3.4.0-cp38-none-win32.whl (234.0 kB view details)

Uploaded CPython 3.8 Windows x86

cachebox-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl (521.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

cachebox-3.4.0-cp38-cp38-musllinux_1_2_i686.whl (538.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

cachebox-3.4.0-cp38-cp38-musllinux_1_2_armv7l.whl (602.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

cachebox-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl (509.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

cachebox-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

cachebox-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (616.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

cachebox-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (384.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

cachebox-3.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (339.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

cachebox-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (330.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

cachebox-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (362.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.4.0.tar.gz
Algorithm Hash digest
SHA256 efec62bb0876688f618e26146353374854e7e7ca7e67f1a0598dbf63a1a154c7
MD5 f3b2c41417d5b7b97151b7258bca0c4a
BLAKE2b-256 31765e168c628bb6c0aaf25a59a2be89231a0af3781223ed518258444b2a0483

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e26388815189e124c6c7f4799788b91dc41b2ec8586d397db18f294b5fff7c39
MD5 b0177411539e5e61804def63012fcea3
BLAKE2b-256 e660606dda36098143a8a5ce3e0504492f6702dbefd667a664fb3fcff1895c62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 574a07f1e7b23cf76c2f1d2491c8d18a76accf0070b7b241bbf84a6af4f404b0
MD5 5d0a92178a27157a58d46b36612e8a2e
BLAKE2b-256 5a8ff72fb3ac6e26a10a5003c2b283f11c839233e1beded2d82b032329c26f73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 59a606617c784504065dbda995e196ad80ca88192020358d2610e55fcff287da
MD5 2e14f75168bda273781abf1590247e93
BLAKE2b-256 849b0c2527c652b993dca18369d26e6cd3e2b9e6a79844b22a1aa0a26ef4896b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73ae872f5039abdad1db4ca5688edd99a3b31ee4e626f643b354d33e33cc65cd
MD5 fa8f500077d6480c3c57528d3850394c
BLAKE2b-256 d8cb265cba523db7225348c41201a3e15fd90b22a6b4d7ba3d9a694562f49381

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 162c490b03fb829230db6560a857bad9ea1a9f4471be141fdab5f6ea8f80aa4d
MD5 cc739d111fa0f9051df697e8ee7c5ccf
BLAKE2b-256 64bf7be0b4161832271bb6ddf96eb02265c1d04e4c0868a0df14f5ba6c80b5d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c34db0d142805bd1a921b920ba92652fade44e470c8be93da09ff0197d4b23e4
MD5 f46c23af06696fd48aeb939b9c301b8f
BLAKE2b-256 276a3f422ab2c881c7224c9ac2fef951561d516005fae4d1e6960a0a350aea2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d90f0414971b7068a996765819edf5555374950a73b4e00a406aa49e5d6aaaf8
MD5 aa021acced1f70afe4fc21bf28fcc2a5
BLAKE2b-256 4ba6c156b90710dede63781ccde1ab603eaa0c68148c0b79b2c467e749016a4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 87dc3d0b9f3b2452dfa093b33541610453d7aba232e511331973b322f3ca2d32
MD5 42ad2fcd915458d07bbe72300b64dcc1
BLAKE2b-256 159a43d1692b1a903179b3c03f519e677a2752b2c75ad9ab982cd6ae9f26d638

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b9cb41d0ad88882978c1df90bb9e1701996b45e785306d6adb47a3428274a03
MD5 0b92f876bdb49e90b1235311a2060c42
BLAKE2b-256 d9089490f2fa0604e339dff1ba29511273777431cea18dcf0728102d0799268d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eb192eba658d7c8c022fa44f9c426619168eeac63243854ed4f0d2e8b945a90b
MD5 1d8055532261fba95870ac6e28c12ab8
BLAKE2b-256 d7bcb24a9b122fb8abaae719f71e3881e2ef140217fdb81b1367ccbeb7106600

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d6c34adf675cfacc3f2a14bfabccdc2f4484ec4f07e5b05d99c3e0feb32c8d0
MD5 3a2d6e9040861535942e51525dcfefd1
BLAKE2b-256 842c389ada4beaf8b24b2d062dd034668786bb2b47e1c1bfabd94a959c85bd5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b2f07a1e576ed65464198d082117e2b877ca6b34b9b7706ef06d164fb3d161ff
MD5 4ec3ee5449568a282d7abb388c849c4e
BLAKE2b-256 34acad23fbe7b5462bf9d3c22d310b0ba3a147b100918b3ed5be7255e0b5453f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1d3839a91fe9359412fbe5e7cb2b02e37afceef84f87cc76477898949e092794
MD5 e3a180c88d151689ca612dec1a4fd2ec
BLAKE2b-256 d0b182622c1a77d298cd9532e1020035627e253635c6bb26d7f38c5a5ad36c33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de80995629bb676a2443764d1dab9e7c80b952a990b2d29765ed6c9251a12b9f
MD5 56a276257cdb0204f4ab15e77fb7eb52
BLAKE2b-256 935a78e57bee5838b5bb38396e998df0750fe67f70bcbf597e28ba018e337e7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 535f7ae79a9b2730e4f6d767ea11f3b1686d35eafa192ed0bccb2c6059c40dc1
MD5 1934c82ede928f25684ebc61f322a95b
BLAKE2b-256 8684281016c5b8dc65876eb42cc1ec7876b377bd86c021df8a29dcc532e2dd72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 40da28a05fe1a9a4e650ea4868b0015da050dedda20a19fafead60c6e5b8c1d9
MD5 2924b277454c06c13a16d072891bd0a9
BLAKE2b-256 25b3f7b0b66d030405e28f11761263d0d1622b1b7f59a598d2db12ca5afb3cb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8c727c0f61782a4331e60e02d04abab80b56d3fd2970eb0dddc2e122ef65ae4c
MD5 6bebc22f3a121391517131c16970c7cb
BLAKE2b-256 bfcb01aa0bd666423b8ce8874cb8ae19574007a75ac9529bebb03b0b5d5a44ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3702b4611aca36e87ecb8ec1cb64194b97756b4fe2bddb5aa240a5d23692703d
MD5 7f4d0a7033b0837afb88bd4fc0816c6e
BLAKE2b-256 4cc939a69fdecb1577ee0004a2108cfab4a212c5c09589c3d61c8f8f1e40487b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6934361f0a3371bd1500cad0601366e842c06330658148926f97cf32ab32657
MD5 ff732c0d611b8128988cd22447f70201
BLAKE2b-256 0b5e8910d4ba098e593b02a272ae6e4b19fa7b36c94a509bac56542d8b4cbd1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2ece784df02692b9c14e14f62263c93651c6b122e494b9cf40c143375425184b
MD5 da69509d6059b3120e738804572f8cee
BLAKE2b-256 ea051ae50c31bd720b039e53362ae7e48f330b524191d58240c4c075ae0ce193

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4ed7b1d996994d18ba95363698fecfea39c2dd4542c8b7a6dcf5efe7d80af6b6
MD5 96f12f45c7017deed13d3b32c251268a
BLAKE2b-256 52f9ed214ab90e36dd59025672a35b1bcef063dccc9ef6700b0765750d2a2bdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de9bd141df8279ed5143e78d8cbcd04b6a0564e8e09945df526e885cbd7873ed
MD5 dca7a27eed58a200ea236d045acd96fb
BLAKE2b-256 f31dee94f71b2bc0c4de9c8d3240e5f02701fc7a4d42831fd83f208224c059e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7757641fefd1216869e5d061e3c926a6e7b89b73c83142bc71137f175268c5aa
MD5 4df115da198fd1f690ef9f5df1894205
BLAKE2b-256 bd567068a344375063611883e7b05593f7e6fdf615cadcf6b0afa5e20c9dfbe1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dfc66b893e3063a7bde77363bfa2e06f101f1dd3422b7a804e670f045c4b89dd
MD5 703c264d442e01c907e0d7cb67958c3f
BLAKE2b-256 31efab726ed223faf864bfdc41304d5d917c4725aff8d8d9ac1716bffff0c236

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 120001dbba12db086fabf02cabbc761e10b685f8c3449f3607db5e4e038259ce
MD5 2bc6c410d6921bcf696dfac27d0edaaa
BLAKE2b-256 e1cf18405dae5e9a514ae9a44662ac614c8df2b7e949b217ec8772ca1770e909

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 26347421650bb5e61cf2cd488f559234e87d9022cd95a5b565bb8b4cd3bf3afc
MD5 6fb798d61de182d44f707d7d23567bf0
BLAKE2b-256 9734108645e3a59f85f7249cf53fdf4098fc747ade261931bbb884aa7b570f1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f1b577c56bb716fde491783c6b9154c2e0f2961a5ac4401f288f4428283fe52d
MD5 8eea5672cf9465f91874f414f945be80
BLAKE2b-256 3b393a45b1fd46a8ffc7824e71378f1db439c8a670ec865cec012e1ad4752bd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 372b698b74ad33735f3d8911c9dd239739a9055e81f0990e6fd31871ce0d897c
MD5 7f568040894ee28d20d3b6b189d7daac
BLAKE2b-256 eec26146d4f4927ddbfdac265c862ef73aeb262187aa6b12456ac7712deb7895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 8de5ea0d42377b5f0bf7134d4a26477f4a36053ed175b20505e5761dc611b485
MD5 4dec5113661721a761c6385f287ebf70
BLAKE2b-256 8efb643e5460423d2554277b6c50526346e76cd0994d21a3aaa2645e525996ca

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.4.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 c270d9e3b77da27d8beca2dd39f4a70942accdc5268918aded22c3e34655e435
MD5 03be8b7e0dcd2c0ac0f1a266042581c8
BLAKE2b-256 952472db5adaf17381af4b513c7a112867ca6c5983f406c964777e6c07a0961b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ad7769bc5509ec80bf0dfebf9ee22beb7a5e3134b334e84ede6745a6c21f308
MD5 687fe22001c47f7cfae3aca9953a1b58
BLAKE2b-256 9fa998dcf9e3ce17e6d3deec166ab2c4a96d1e56a5b067f4f5372724892b20c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 04be8a9dcf996c26f1a27cfbe4044c76bb1cadd2b37931a79d135a08bcb863e6
MD5 5b89be8cc3de417bd396ad3a6f84f20a
BLAKE2b-256 64e79fa2196121f0eebffe360eae2e0147685ba86a8675b519d7da040b32a499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b8afe9e8643134a7cc387b1663fb8d51368ccb92eb55d0588cc0a9409350977f
MD5 5d9032ae9aaf07fcab2095542adca448
BLAKE2b-256 7a54616aa2f91ce6dd955c6e98fc6371deb69b90adb44bcdc03e60cc85bdb359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b7282487b4b924b59b5d680caed779461683bfe60dea2e6315496017d168f10
MD5 d07766dd34dc2efbfb05bc0409bc65e1
BLAKE2b-256 7cff80ce4c2a43dca174ef1633623978394418273e145578c633ab3a6a47c9ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea8fec785e18fed61457c44baa1217fe2e4a492ba761ca9f529f6e2799f741bc
MD5 1aa3fd2263d437c0bcd4290590265061
BLAKE2b-256 7fa8e4effab9d48ec72d017c9cd22dec3a92947abb89a667e3fb012757481d7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf0b7b53c6343b6a42b7c4aacdff25c0ea18d3594e53f8ced17af98fdb9c2699
MD5 c4bf36516e11f397cae897ecd1446a6a
BLAKE2b-256 b75fd0c423bd0335ad2e2d5e3bd39cf99fccfd5bd616be1b71112a84021e35e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8717c4ed31fed6ad746e2883d93a0563d19879b0b4b932fcc88a431cc7b1a8f4
MD5 cf688fe57f87eae81af6b69a9be00f79
BLAKE2b-256 fb52da4cef026ce00a47af765883f2b123d90e9405cd5de0563460f57826763e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 43de6281a274b67495e96b34029670fc63de410ccf46b046e8a8b16ac81e327c
MD5 3e257be6e75abceec8e6f7f03a621fd9
BLAKE2b-256 61ef556f000eeb52d99d1a68add18ae6b460d7028ff46b33998e4d653676ae45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41fffff88b8fe904e9667e748c593c1f8f3e8bb34a5d3ceb0c045b992d1c6862
MD5 d2768f3b37a83b68a5659bc5cdff1e0b
BLAKE2b-256 27c1d8a444289857cfa4c684c1811917bd15f60bd60c6ce223b0a6437fb39f9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b981dcba22aad8e3737067afef3ec27ce35ad7041189c1a232516a3dc9627d5a
MD5 83fe6fcf5772c0e538969f7a5e23e4e8
BLAKE2b-256 f9359c08b637794e2661af15ad11fec9439356cc1f6b74dd5c6413a92a6a58e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 24c71b22260c225204dd39ed3dc36725619bf0c867b43060987ca2a0f3e73b8b
MD5 a111f7883e5b4c5c6c7a532c9a7d1706
BLAKE2b-256 b1e27f72934a273993309a60868a7951ab62b7641c9b7bbdb3bdd1bcefd038df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4befa730dde7ebb3631e7082c583dfa29d701f26952654d5c305b4c09546c54b
MD5 d755042fca84542638862d41fcf7b867
BLAKE2b-256 7dc16b84e63f3659fe96b358392b6c33b878b3037c25cea5faa0509c29bfb25a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 47d359fa04364c0e94bb64bcb24e779e620f84fa271d6a3f3e2c7b0642f8f029
MD5 175565a8fd40b414b9a0e13a9a88a566
BLAKE2b-256 701b2cff50a107d50d893b2e02611bc7dbf9139ccc39fdbefc82404d5a3bc5f9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.4.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 57769c9a7d17851e031380e783c139adff72efcd21a0057a4adf08c5feb9937a
MD5 c4211cb8c0a5fc63ac90fce22501c9e0
BLAKE2b-256 752c8cad08afd9f79e9b6be6c1aa1f8369f3d2a5e509fc12ac83c2f3a8d02f5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ebd7750f84c9cd0d9e94a8d1ac51b074d3edfe29f678da2e82f52aebd7288b7
MD5 39dcc6dbc89894f1ded0fabf7165aa7c
BLAKE2b-256 0b7ddcd92e3237b003f58b9ee2ae4d0e2a716bcff2b99788144cf60a936c1fa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e60cde2850486c8c4390e9a4dc472b01fba9fc63136d5a8c8de24f4cbd3446ca
MD5 9e1120cdf8bad97c2c516287505bf692
BLAKE2b-256 6d20e6b3c4442c89cd0f177c61a8d8bde68a6cac5dc0c8e642d76e44142bbbb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 97c1b97707eac5697cf48023abdb385b01f3da73a068306b69982f5473a40e76
MD5 6a6751317e084e85516bdf9f85659b23
BLAKE2b-256 45a1ffbeade55327f3b747066018963445bf98be5f1b69d50cc32d5407cfdb91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 483fa7a5da00e3890776dfac8d299854db03c905b888f909fa1329017ee1d931
MD5 99f0b8281647830d8e123e9e58f81416
BLAKE2b-256 ee12c7491c04e1d996cdb846c2e99894627c072e4be45409cef2950ec3c81332

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4369fddb9c0b42cb56e5388dd759e35cde875b9753de8dfd19ffbc80b8683cab
MD5 984653ec3fb00519fb6e829968d2eb3f
BLAKE2b-256 5731f88aba05a8cf1b1593dc88808666e0de09403e43f14b40486ff94128ad76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e71ad0907b122e0ba16d81f90e5283319e34cfa3edc1073efc3dcf23a37124bd
MD5 63c90157e4dfd42daad868c07fa5ee54
BLAKE2b-256 eb3f8a356aab990022833e43a2742c2cf6c5ef6bb75adce12881c659b737b662

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a05d2883a0096d77a19c972d3be3bef51d9e4f01f650e57bde7f2bb7f2bc3a8d
MD5 1b9e6f35089fe9eff886472dd4dc60d6
BLAKE2b-256 099cf49688150f1679af9649a8cd06b83c2cf31b6989f55bab8018185d15adfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0efe4c447ab3d7c20fe8d18afda854eb11fa130059e9c215e436201dda8c9d25
MD5 84ba66537b95d6fa6605418110941ffe
BLAKE2b-256 2ebe630d6a6825b1cafcbbc84dd394e7c0f42a2e1c41c7a85fcfc3cb69aefeda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d036d5c94df6f64566d24cffbb4f12b46c755a80e72c4e0a132614a48da082c
MD5 5acc1386342066ee8f62a635582e449d
BLAKE2b-256 bb7a21809dfca91828c2bfed8fcecff86a61f19404688664221ad0d593b4cba7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f9ed4ce4c26873837149793f3ac0fde8bc746520a0917f0aad0be243e5a7717d
MD5 7897deb48ad1d4dd42da842f6c593822
BLAKE2b-256 881c945f7bbff9e5517d3b9254598707419fea2bae48afbb5cdd2021cae5ddfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6b88f5defb68793a3c47354b8a8876c720a1d0781874247f2a87401507e9810
MD5 bfcb42528de9fb14bb23a1a0ad2950fc
BLAKE2b-256 949450844e05b1dd14c29e4d2c913bf07896fc7a9ff6c6696a560126c2b32e7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a18b347384efc7f0389bb5cccdd9215498dcbcc3fc103a20768f547702027710
MD5 c84a7b451f6d10252f1ce9269ed5cb79
BLAKE2b-256 e55a62a71547b19c4c9c26c8788c4811ce251e2e2081bdaac626f6eab53d8ae4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 def57c9a0124cf8eae3453a545743a5cc808c17ce7030810f8ff6323041cffd9
MD5 be735fb9a6cef8883b0f21837cd04cca
BLAKE2b-256 bc94118fd36ab6becd7d9a6a7bfd72504597e3e65889cd44f9ba68f5227cb237

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.4.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 527ebc6f24c153d9256217313900dfbd7bc268ceb080d9bf995e8c6d48be36e9
MD5 abf5d68073d19630f266754c65207cd5
BLAKE2b-256 4523a9da3daf306fd973d503eb3288c9ac5dcf8e15b200adacf5a81276d7b248

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2cbc3b504ae386a050120912cff19213c1819e69261deffe5873f9bad8a8078
MD5 348963b8555476787cfb456a9063bed8
BLAKE2b-256 d3547698909c56d07e40e0bf92be97ab0cc60d9eccb253f94078cf008cddacc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6f19f240288ee001d4d66535b757f98912b834b50e4e5cefdc7e123798d011a0
MD5 b7493bbc4a9ad858fbac340d756370cc
BLAKE2b-256 f23f6d164a23f8e713ff70e09bcf489cd879e1cb70e3b060a71bbbe61489af75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fdd475b7f6ff59c38dc9cbd907b25c92ac0b7d21b0c345c99d7b60362971b482
MD5 ce8210252fe6f69a4353b091c5114651
BLAKE2b-256 7e8d4e2918aa378d54b0a1ea2aa78e6845fc7f9b65a4a6c64253433b7ac4d529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c8196c59defb56fbd5f3e997b97c70629a9fc59f8069ae71a7981ebc84f053a1
MD5 1bb1d1caf8348b6dc727f65f8a84fbd6
BLAKE2b-256 ce1a577729dc526b566f1612fcbd1661948af18a2bf2b4bbd97bc473a42c20c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95dd62ad536aca7b78eadc70324106207fb761827191f8c0cbf4df8c6eca8f3e
MD5 4e322b89fe45839b130fa2e2c6eabd60
BLAKE2b-256 1153c2a8f793528c39b23862f951b87c6976e6ea734dff149299ea6ce1ce7a71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8bef1051e91ec125153ffc93d4b49b4592ae2e38742364aadc17e53adc560344
MD5 4546dd0249a3dd5a2bb6d9fc442785e4
BLAKE2b-256 518afc5ac2568209b5392fd310a6b58f711468b9eb6302b67fe96186d40f9273

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 91325eb135718e2511d0d8f2acae6815cd74cc7aafe0723bd623fdb342c54f78
MD5 a3232d197347781d45770591f4a9e0e4
BLAKE2b-256 47a60199abf2e9d0505947e8e83decedcf062ed6d70a150344088edc538b9f9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cf8de5ee070f22ec3d27ed98c8d9760f0f5be489edb0c862389f498660ba4fec
MD5 b7a6270023b13e60e9690362f3aba1a5
BLAKE2b-256 c078a722d140096dee96e5365c749ae914b0e3db724da53eb3d72dc2e474bd20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be4de5f8e621236e6ad0e0c7f4207e9df6ff37fa912eb3e7235e1479a43dec88
MD5 075177232cb0d39fed5672f4fc2ca2dd
BLAKE2b-256 326692ad4f7de1f54c436b6488174d47c785565d2ab89d13d332e64794bdbbc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 805e26730d467872620daa99d33d8999e1d80a9322ce3ea54f2ce2a79056b9e2
MD5 b481212915e32b96ef34d69f5d3023a4
BLAKE2b-256 55bcb60f1471bd2527730ecf110446563439b1196f8ab8efa0fea2822fb712c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad952f6eba7391b2ecfaf4fccffb064d764292fd7dfffbd7d7827db00e383806
MD5 a9ecbe420cc0b14032bf08f3cad13ffa
BLAKE2b-256 94a56ce52941639fc4bdcd94f19caf95691bbb4a4b86abd47007ef7c6bd04b1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 23697520ae9bfb8a89c811442211f3b10be04892081ffad6fe19ab7b7ca82f7e
MD5 5fdb0c38680f360c0843fffad155c132
BLAKE2b-256 339d39e5b1b260fbb547021effea9fbdbc3eb225a290071e4fc72ca2ee3e9417

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.4.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 4df1b0680bffa7fac24246fd87e726e5af6523e07ba6edff45f91b297aef1ba5
MD5 1241460c4b6dceac6f85a5cc1112d19a
BLAKE2b-256 fd048c34575f786f27158b9c5bdaed1938ebc08bbdc8ca01194e6a647e258e7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f1c9b89de42df983474db038730f2125904e9948d60c6b4a6aa245f6386d707
MD5 fe737319d52681bba11f718fcf6b08cd
BLAKE2b-256 20a6ec321f533fa5f89ca774d0f34baf66199885c5abbf30feac5f00da89dd54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4589706ac958be667c1ba60b9cd96f4c4d6f36006b232502ac0f0033610dba0b
MD5 40e48067ab7ac3b1b25dfc528c4011ba
BLAKE2b-256 2cf9f0a4bb9c3ed15a3b5a00aa8a65ae44e051ba80d031c69a47e3accc6bdefd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 402f499b9982225e9573c78a4c58d44676d9e15300bd294c7f466979edb2ed61
MD5 70418c72f9591085b503cdefbffa507e
BLAKE2b-256 6683158b47bb126baf9664a718c8ed72dea9e5379d6b271cb17e5ff9012316f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b002508a50b85d76468b4d0d9a4238aaf4f7f689a246cbe2331a27fd67a3ef4d
MD5 d3e446a254a36e8c4573dfba951bdca5
BLAKE2b-256 cd43eeca3093f16e93500320d8dc8ece275bf7ee308ee25c95ef4007e85ea145

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5919c1de5ba41b9787c0c8722e81876af8949d7102d09190a56fdd7b1fb4bfbd
MD5 81109d8ce8e88d8d89042f822e8fc864
BLAKE2b-256 fa15c2802af74e054419866167c6145475b1942e40ed419f84406561b9624d59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0500f5abb6363cf1c2b46dd09b2277b2d8c997a87dc5f2fc2461d115f68db312
MD5 7bc7c4108b1839fe00967c5a14cac0f5
BLAKE2b-256 82776ba11ede89524eea91dec419996d4f7ae33c78e46080fa4c699a125d00c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c3739f03f58c05fae5ae65aa1f40d7302d7c52a8b0fb362168310c0a22f6094d
MD5 7bb6bc426c04ce327e923ded2749592b
BLAKE2b-256 182678ec008bce485f654f267333265766976c9e982771f03d02ab96f7a6fb1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 24a3afd74207091baadd41bdcc5268761d8240f08ddf8539c559f99ad5407c8b
MD5 a5c2bfed7498113a9f8bbcf4c4fddbfa
BLAKE2b-256 b314c512f919e8581348f074d1a32683e5bb5b84ae97aa30708a9e37446fc58c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a1e1fe1eb75fa6f5cc8ba1e6339580b2b3b00ffcd24dc4dc5db9d76f00fdb39
MD5 1887c2cbc8ea59939b5024f23a396f95
BLAKE2b-256 0326690a698522b7974f66875a2fd19654670677ac1e6645ea2b14915d81516f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4beeb4d02426d5e834a5fd9b866431dcc7e5e4265ac9d42aef295c402650b8b9
MD5 b277e350d9c80640cb52c9e949a88971
BLAKE2b-256 eed550abdbceaa92479555ad22472200602166c4517c02e499e766815fda755d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50da60df714a7edc91bfcb749ab6ed284ffdf0d45f62aae5f30b0ed3bbcea690
MD5 abd35a47627b5c4583eacef4f0def846
BLAKE2b-256 415a6d8160ea6c28a9637190d6bbdddd1d82bd26ebe9c68d824305448b789f30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 6c2901c0ffa7a808e795d62c6437bb8c1e7e1f6ae2258bfe42f9fdcf59ae9873
MD5 1042a171a4f9470d7cc4f9b5cf0fab06
BLAKE2b-256 5b3dafc5baa0ce3bca57f55da68772c291a267c2bc43975ae1380936f5792399

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.4.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 b12c246df0e299ad79a102b82b4b8b7f148556aa7a6e2a345e27c6ad3b4d8f06
MD5 4aca6510421f7f034e9078e7d057024f
BLAKE2b-256 1d2d26ed69c1bcabd6e083bd703f7a77860173f5df785e915126206136b58cc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8de4c0591d8e3de0f102689f8f9e2d98b4e3df800c6f9052dbf032310d68ae97
MD5 0d717af4c927a2eb817bdb7691cb032f
BLAKE2b-256 c13f6ba1f293690044638f93ec2c73561b0a12ad450d1b84fb6a03cfde439525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 069b44a9e70b05b02d798046ae732663bde74ab1d7d7e122e9abcd27afb30078
MD5 78ab2ce3b1a85e5f023bcb25ce7d3434
BLAKE2b-256 69a18892b95e37a02c88f0a3c1dab67e31aba70351ba351474895c3fe8317c18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0ff9e8d262f8e5c00ff7361fc4440e4722ce6eceb1fc15756de4ec762d451b37
MD5 ba48351e4cf09841c9f01ce26bf8ba66
BLAKE2b-256 9a2dd208bd81fdced2ac35828b4da60313b0ae1326082c73869410811ffdd435

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc53d489f667592fe3ac3f4ebb3971162cb6349b5bc20cc26a98ea672a3e8df7
MD5 46f04181d4cf6ab6de8952a34b75d565
BLAKE2b-256 81bf4cd0658922532cc56fe9f838ad10897a2ad696d171e6e234a6b0a5923075

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a32a42557ca5ab7e2b531c68a3fcf18d72f38817b09428b5d62bb9876dc60e08
MD5 d9831e1703827d18adc5af200b4ba11b
BLAKE2b-256 9d326046fa8c0c85388155f6d2bd87adb7b29e605dc4179d06120f0e642c43b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e88e2e50ec6f2afbf62199f3a443bc6699df5a59e007a452f556133ec46e90f0
MD5 d9c5b92fab75a61f297d7a1c5eb86e5b
BLAKE2b-256 40e43509f6733a683c677ad9e154bb8bfee07617d286ee143e94740f47a20b7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 116e53971708eb4c76ccbe0627978171c731186a389c00f709a8ae93a24c61a5
MD5 83f74fa498d1f640d0ee05b4241cc728
BLAKE2b-256 ec5ea663bcd4b7b69db0067721989f6dd6995820ba401c1dbe0a2884631362bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1a2eb5d0b1013fb60f9032c8efbf0203e6831df68c4ea03bdb22525e2e9ba318
MD5 f32e40dce5609f6ffa25918310e5c992
BLAKE2b-256 6eff5ff13fb73f2bc6a71a34267ccc06bea975b5c9fbc9bf99a612d86fe89c56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66f2001d3e408a8891284ace483e6895147b2dc09f5c31398d4e111a34824fbb
MD5 3e788d49589815f5b8b31970f6e84eaa
BLAKE2b-256 c3bf8dc32d06d6ffde2a2444ded2de5057114f9ca7a12b9a97c8f5da1c33c337

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4b6371c5ef5caf9e43e7779214aa17a4f6fb217499477f94c1e3969de514c082
MD5 7d7489dc097e8d73cb36cab13fb4c124
BLAKE2b-256 0c9f34e46908430fc75c9cbcd373500b058d46bd23bad56458a4ad7d093b4cd5

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