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

Uploaded Source

Built Distributions

cachebox-3.3.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (567.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

cachebox-3.3.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (567.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

cachebox-3.3.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (643.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

cachebox-3.3.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (545.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

cachebox-3.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cachebox-3.3.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (679.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cachebox-3.3.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (416.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cachebox-3.3.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (380.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cachebox-3.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (368.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cachebox-3.3.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (391.3 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

cachebox-3.3.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (567.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

cachebox-3.3.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (567.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

cachebox-3.3.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (643.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

cachebox-3.3.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (546.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

cachebox-3.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (396.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cachebox-3.3.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (679.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cachebox-3.3.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (416.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cachebox-3.3.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (380.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cachebox-3.3.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (368.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cachebox-3.3.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (391.7 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

cachebox-3.3.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (568.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

cachebox-3.3.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl (568.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

cachebox-3.3.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (644.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

cachebox-3.3.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (546.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

cachebox-3.3.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (679.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cachebox-3.3.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (416.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cachebox-3.3.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (380.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cachebox-3.3.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (368.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cachebox-3.3.1-cp312-none-win_amd64.whl (291.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

cachebox-3.3.1-cp312-none-win32.whl (273.6 kB view details)

Uploaded CPython 3.12 Windows x86

cachebox-3.3.1-cp312-cp312-musllinux_1_2_x86_64.whl (566.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

cachebox-3.3.1-cp312-cp312-musllinux_1_2_i686.whl (570.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

cachebox-3.3.1-cp312-cp312-musllinux_1_2_armv7l.whl (644.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

cachebox-3.3.1-cp312-cp312-musllinux_1_2_aarch64.whl (548.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

cachebox-3.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

cachebox-3.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (720.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

cachebox-3.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (416.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

cachebox-3.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (381.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

cachebox-3.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (371.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

cachebox-3.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (393.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

cachebox-3.3.1-cp312-cp312-macosx_11_0_arm64.whl (332.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cachebox-3.3.1-cp312-cp312-macosx_10_12_x86_64.whl (368.0 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

cachebox-3.3.1-cp311-none-win_amd64.whl (290.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

cachebox-3.3.1-cp311-none-win32.whl (268.7 kB view details)

Uploaded CPython 3.11 Windows x86

cachebox-3.3.1-cp311-cp311-musllinux_1_2_x86_64.whl (567.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

cachebox-3.3.1-cp311-cp311-musllinux_1_2_i686.whl (567.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

cachebox-3.3.1-cp311-cp311-musllinux_1_2_armv7l.whl (644.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

cachebox-3.3.1-cp311-cp311-musllinux_1_2_aarch64.whl (546.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

cachebox-3.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

cachebox-3.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (681.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

cachebox-3.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (416.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

cachebox-3.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (380.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

cachebox-3.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (368.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

cachebox-3.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (391.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

cachebox-3.3.1-cp311-cp311-macosx_11_0_arm64.whl (331.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cachebox-3.3.1-cp311-cp311-macosx_10_12_x86_64.whl (368.0 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

cachebox-3.3.1-cp310-none-win_amd64.whl (290.4 kB view details)

Uploaded CPython 3.10 Windows x86-64

cachebox-3.3.1-cp310-none-win32.whl (268.8 kB view details)

Uploaded CPython 3.10 Windows x86

cachebox-3.3.1-cp310-cp310-musllinux_1_2_x86_64.whl (567.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

cachebox-3.3.1-cp310-cp310-musllinux_1_2_i686.whl (567.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

cachebox-3.3.1-cp310-cp310-musllinux_1_2_armv7l.whl (644.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

cachebox-3.3.1-cp310-cp310-musllinux_1_2_aarch64.whl (546.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

cachebox-3.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

cachebox-3.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (681.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

cachebox-3.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (416.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

cachebox-3.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (380.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

cachebox-3.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (368.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

cachebox-3.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (391.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

cachebox-3.3.1-cp39-none-win_amd64.whl (290.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

cachebox-3.3.1-cp39-none-win32.whl (269.0 kB view details)

Uploaded CPython 3.9 Windows x86

cachebox-3.3.1-cp39-cp39-musllinux_1_2_x86_64.whl (567.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

cachebox-3.3.1-cp39-cp39-musllinux_1_2_i686.whl (568.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

cachebox-3.3.1-cp39-cp39-musllinux_1_2_armv7l.whl (644.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

cachebox-3.3.1-cp39-cp39-musllinux_1_2_aarch64.whl (546.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

cachebox-3.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

cachebox-3.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (681.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

cachebox-3.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (416.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

cachebox-3.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (381.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

cachebox-3.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (368.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

cachebox-3.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (392.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

cachebox-3.3.1-cp39-cp39-macosx_11_0_arm64.whl (331.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

cachebox-3.3.1-cp38-none-win_amd64.whl (290.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

cachebox-3.3.1-cp38-none-win32.whl (268.7 kB view details)

Uploaded CPython 3.8 Windows x86

cachebox-3.3.1-cp38-cp38-musllinux_1_2_x86_64.whl (567.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

cachebox-3.3.1-cp38-cp38-musllinux_1_2_i686.whl (568.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

cachebox-3.3.1-cp38-cp38-musllinux_1_2_armv7l.whl (644.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

cachebox-3.3.1-cp38-cp38-musllinux_1_2_aarch64.whl (546.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

cachebox-3.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

cachebox-3.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (681.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

cachebox-3.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (416.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

cachebox-3.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (381.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

cachebox-3.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (369.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

cachebox-3.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (392.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.3.1.tar.gz
Algorithm Hash digest
SHA256 a8fd167048edfc751dc5f8c2246c2c6728c49bf8f9a1ba6912aad916b5b15282
MD5 a5ab170f54e5418652adc1fc1fe93df9
BLAKE2b-256 d5c3fc41407a2743b280b264d7f220fa2e389ba44e284c0a67c91646cba1f5d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 33b26f4d06291d28d2f654aef0a45ad07ef09b83b37635a69f9fe473fd952ccc
MD5 af1e763f4e02ce3f917ea9775c52b914
BLAKE2b-256 e253d0eb8055eca70d4cda981137c23de4e7a97dbbe096947385cabf1c775b02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 183035f5bdaad132b5d0f9d6d1a905ff6da0bd5ad0ab3b1f0996f4e4dcd59d2f
MD5 c480bfe078cfd2e7efb66c928a26551c
BLAKE2b-256 a6cdb3074de15aab0092f0e9b439b46583775525ed588028b35be277f2eafba4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d7db9c5ab4d42d36d36addc14a1bb4a5baae05d8910da00b836e57adf5b2cbae
MD5 674c057b44bc8531ef35be0a83c7e54f
BLAKE2b-256 30219ad2db68a72c74d2c8a34db5d6822f6355d98cf5cdb4ac834cf1c4322333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc76c9ef0db8281689cea60da816b03184a7532162ed9255d191e2830b79f726
MD5 e1cae74b59d9d8b0adce845e4fdfa4e6
BLAKE2b-256 82cd922f341add000d8d2392167ca4a2d0ac3bbad816450b5fb261d5c48576fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2c2c5a439702163e0de075340d7f3be69eeaddd7a3a9df1f6299537f24c3448
MD5 e5a6cce96082fb1ed39660e38f53ae82
BLAKE2b-256 100123f9c71901fc2235e40cac9dc209e25c4df5e8b6357628db42e01aef0aff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8861a6f76d71462d17d50cb4364f6061427d60287cf27cacb89d65991a119cd5
MD5 7437d436dae6d37a55fba9c33528aa5f
BLAKE2b-256 e2db89d36fc2c712af42acb824e76350377cd1518437bdd7fa57e3d563a32375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a8da4ccf228018575a00292b288c5441ebfa087369c71ad23168a9585fe8f2c8
MD5 dde3fe4fd62bd4cda0c31d029661c742
BLAKE2b-256 2bfd24b41340ffe440c0a3d29e56ab3dae007563a91ee43fbe240ae81db1058d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7b26b04e559a338678311ed830482681d31a668167e89d6bee3be310eba44bf
MD5 eb7801295d638af1d0f43d7f96589c0f
BLAKE2b-256 d9cc7d8867f9c5efbb149cd2e81c593b1c7d6ec15e4edd0d6bf68488f7d3a46e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 666c97c99a472e32736eccac4f61bb22fde6e51426f8d0bc6d0ae9cf8db7144f
MD5 9ee4f70860aad1f7fca76ccd2309b3ec
BLAKE2b-256 9b79fcdc8512f414f3003752ce7f8a35012970c246cf2e124a52408673db85cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6bac1a6f45fee3718ef814a0a8dcc5d282c829795ff6218807794c5d0fb800d7
MD5 252bb6b462d24c2a4596704909d9dc7b
BLAKE2b-256 ed3ca883ce5a34be30a56dd3ffb92d62099af9aaa4ac50b488b9682cae0c67de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ddb4bafc80a4e7379ac8e7f85d317533f39695c542b647939bd82799a2149883
MD5 e5ac5c86abdd60173c757e62abc0f70b
BLAKE2b-256 e3e0ae521d79c2780d533b5f787973b7ea91f806f83a10977b6a38ce11b5fefb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1c11bfd5761e1ec2cee565ebf53b7e93100c673bfd50d2a90cc52ed7621a7829
MD5 ca83ce3af3ab554756031d9f1648f437
BLAKE2b-256 3af7b1c401ce38e674ad2ba1a1a52cd2dd7dcc4c9d28f775836075b4032f9d5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ce0e628477dff4a439b4624c834cd5386f2d2a1c0c385387c7c62b109ba12104
MD5 03947fda85d49a8a57fbbcab82f1702f
BLAKE2b-256 aa57c7c75c6ac93aaa373bfacebae2585e292883d671fea2cf1808d7014837d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0fa836e3f493c032ba488f48ff8fc6b6196cb2273fd4140567ef818e80d92835
MD5 8522fb6f5683b254cf5fedd2a6d30991
BLAKE2b-256 240c310d04c2fe450062568c2ef41b3094bb6e1918dc8434315b5e95a7681ae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec2fd311680d90b1a3af1cef546f2d35883e05eab25c320808377190fe032205
MD5 403e3521a08a70f8db5af0eda2b53d5f
BLAKE2b-256 6e154550d593ce648b6b3cc5982d808a1724947a9d5647db27e6090793ef324a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6a9bb137390c1e535fbfe5d92d1c772e538f6d91459dd446ae1bb6292fa826a0
MD5 309f21366aaa339b2e8abfc0c17fef57
BLAKE2b-256 d8a61494811608089ce94fc4e200401266f3b7cba300c0839639da024a974293

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 810c471bb3440d916692edc27edf456a5c300e86d1feb9c2c162c74601cd2290
MD5 13125a7d2c8931cc5262b2333602a86d
BLAKE2b-256 ad0559585d679ea4cb8d40e93c963426983fa1e328cd24aaaaeb9b717b962ed6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 17d7e2ea75ef45bf2a0e6a1d6c43c5e2ed3dd997d59918178ae6f477900ddb06
MD5 05b8832f871a6cce6038e7bc4635da66
BLAKE2b-256 3e2af2abc2a11b7d149f375322035c075da3d2a07b93719b5d39abf05b4ee8cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51618ffbe3637a2ba626515b47ed2fb434b43c4cc05cd0cdc47d380ffbb2f910
MD5 208612853bd7a1ae8f80b7ca1516013b
BLAKE2b-256 c207ce581322a0d1eb3338136d5e2dd4fea2bf81bcfe51f81bac9f3b45e1a6a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3bd3eeade49fcd2abf46798a98a9cfc6849b5b348e90d1d92acf457d80a07ab5
MD5 1e52041e9c7dd08218b80f93e0d7c4fe
BLAKE2b-256 c4b946ea0822b3d3b77f1f53a40b5bbf8eb8d616267fc2adcd63a2f39fd81d89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db996bac9efbbf5b4b51475b36e45fafc4f342a1703bf4d5f415a2e86893eb2d
MD5 f6b0fd21b61fb24947c3de6325d1f5c6
BLAKE2b-256 97ade6a3e9db3e73f2c0ca6ffd973a099c2e6dd603349dc41f0549d5ec931125

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0ac3ae4b965e4eebed5d84b29fb7c349c39bc60fa969eb0cbb77918186c965c8
MD5 18e505d879acd0752e816d933298bb84
BLAKE2b-256 10cd2b4accb3f52c97ca1b5084a6920e259e49e8241bf06dbaa779ff19aa4f5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 80d3c34f9a9fa99fd0750c310045b0e6a67661ca31839ed9f9c61321e9d5ba7c
MD5 95c01e22610f1bd4106c6a0443445b41
BLAKE2b-256 f3a0bada9454794571320b95371d30839effeae2701efdfb11fc5074de6361ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a3eab3e6df5b1a32ae541c1e4c4d3663eadf31744268f88e472fd93d2e809c6c
MD5 226f58bf75158ccf3d6c408485670757
BLAKE2b-256 e32d15a87ffc2ba75555f7f2de6f9497a990a34cdcbae34273627e7310706d25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 68c5e922c7ad77f66225158da63940b9eaa14ef3f2eaeffda639a92defa127c5
MD5 091e82a8e399fc5f74b9f8012c03d9c3
BLAKE2b-256 4a9a6773af6271541ad880d52a3ab869fa4ef60f13ba82e706887d52cd4a1bc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bfa158e2b31ec7c41fb5f78aa6ddebcbb581ab81e82787320d161cc457025ee8
MD5 5943d359dbae941a9bfdc4bfd21aecc7
BLAKE2b-256 7a54c971a2415b55294620a460a1aa6d26b6a65bf6107e7568d51c0e2ae73e0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8ee5fd62dd4c7f31db2c1a1b4190c9d92f6c8401febea927ae838cd26f0a6b7c
MD5 2450b108343b0daa3c5916f239610ae4
BLAKE2b-256 33f60fea636cda9f02c90a6bd241986dd5843481486f64d67f123186390dbfb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24486f38097006e48e71e113285d2033348257bce861e7a2c75750f613546612
MD5 cb0ee116f78d620a53ce5bea8263e7ea
BLAKE2b-256 d3d5c65e51450520ae75f991305b951d58733ebb621967c5be633f3ec7220aa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 28d06a704e6845db8deaef155ab039ccc6749007532c3419587d15f7028bfa50
MD5 db7d13aea3bf64cc0d32e63eaffed5f8
BLAKE2b-256 2df8e8825e0a2137e604d89d839ee952577e16bb27c7d40bd78dc54fc9f46c1f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.3.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 62b0c41086041f1153bfc867701290f8c3a741d0d1ff69fed3490ef5d780e708
MD5 5228e1207818f33155c008aed7848405
BLAKE2b-256 09dea2b688d01f7d196ad9793f73f6a6633d2069e4e018589183551d6bc0dedf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3a1a7fb8509de6ef9bd7e273e5da0f4bc8c3c12fd082c8636b7a0dfe25ac1c7
MD5 24d50c45f6761e2d4b5607a402ccded5
BLAKE2b-256 598a06221e2c2d28a7c07079958d509de7793407f9332ad380091c96d9047b36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8d0f83b1197d07ac7b8c73e8d6be8f5d99dd048261c3e3c9c111fd13ca167b66
MD5 8ee412b6a72497126f445939355c47e8
BLAKE2b-256 4b123011fc916b8a1f9dbfeb9e222e9d1d5d284d2bfcc9f6e9709229d83c78fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f2fe096d2b790fa81bc0d5bfb6a77c6fdf3465cb3eb659b7cfba8b063fb29cc7
MD5 c9bc1ccaab3e172da5f340a694eb3da9
BLAKE2b-256 bc707cf559ac511a159efd279574cb246c17d2617aebaa76012570582f8554c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 332e685e54f8978e539697d27efbbf5feecd6205b3702f6cda4c6a9fa7323152
MD5 b7fba712eee1fb57b5452f7065e65ba0
BLAKE2b-256 7df2751be97481eda26ef2ede6ba3dca188af346ffd0cab5f7c8893b71f99719

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86feb34d59ac45a47eef4f4a2926f6fe1937ccf1598908d15323815c1df790c9
MD5 2d74e957d262dad56f3e006f66a61760
BLAKE2b-256 b83bedf7b6f56497e64d548137775f09cbdf13d92729e53291d835eb6d69256a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7de2b2c052182f00297728ad53ddd71e46cbace1c1a9ceaeee85cac8eeabc4e5
MD5 ad0c92dd54d603ca822061ae29002db2
BLAKE2b-256 157e9b388c4220f52317737f385c9458e657233e876a12d8bafb4e9f46fb17e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3da17d92cd4db0e04591b2a7fe3c04586ff4e37b92c1877e16428c98648a8a06
MD5 80ad61463f971a5896495d1541d4eeff
BLAKE2b-256 167da1af14c95dd8bc426418f9c0460651a4de1a284838802533e542d0649390

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 15c3a522a9ce19c04a4bf4dfb870db742533e1ed0c63100cd61b45da825e2b5a
MD5 2e23ed5fdf17663ac070a0d8b96a8552
BLAKE2b-256 ed4fed81bddcc77f65def9bd601e7b21913d594b43b913e41125901febf071db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f3b6be2ddaa7afb528292a11fdc3f1bd66d1feab8af7f7a079b4f3fa421ddbf
MD5 b8c9b3c13f93658306129b4dc3f91e78
BLAKE2b-256 299761e2e596a0802dd8c90ad2507ecc90c42efa9f67779934156a77b4cd0ae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1431046b330cc4d46dcb6b96ae07d19a340d626d2159f5a815a83e4e6edf65d0
MD5 410b65adb5c672c50f9538e8d28a972c
BLAKE2b-256 30a85278499739bf11a6904749788cd9647a6fdbfdb83ca950a8f61c498f2564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab08afa1cd70268bfe5837cf497b3f3ab600bde85194dca4a6ab0dd5ca825cfc
MD5 c10de6b5cfadafdccf5dec26fe95c198
BLAKE2b-256 100c8a1c6aa624ff6c00f70114ca6108e897ed6978caf13b6c800f2cd011080b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2bd7f6d6269df7454ac448c834897e36d01af6eed91914fe9db9765a46ea6519
MD5 9ee2c16759442d9ae7731cfa963f9aa5
BLAKE2b-256 e5951454e13fdf13393eb8116f2fa2695e22d3520cfc45128b40be0c30db1b12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 768ed97f79acaceb07d3b7bd4ce5fb37a14796942103567a65fe3e9466551401
MD5 92c6de3f167d8caa050bc359ff8fcad9
BLAKE2b-256 b14fb1d5c60a8bf3e4e0f882129e9c88551fc77030b4e6cf280f41b23f1d86d8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.3.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 6e0160142f3064c87fba9dc90acf850c2a642b4cb933ac31fc6b777473df72aa
MD5 24ea86fddfb5efe245d0273aeab16206
BLAKE2b-256 a5cf4afdad0d43b4810c4d85b45479d2044a5f0d7ef6314bab039be2d3094970

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8e37ccc4a3f466664385294516eb2cb06ae459be92a4b5a0deb3e229e5f0136
MD5 f1a5596936c0ab1acd5dfb933212230e
BLAKE2b-256 38dd2021cc116651a6fccfc5e3a4320a6c666f43bffd8d5c51eaf08fd8496044

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 585fe1fe789025cba67507e7e839ab22e5e62f401406cf68d0f8cbc00383ba69
MD5 5c2d1ef4d97f8537aa53f42bf29a4a36
BLAKE2b-256 b49f8f627e0469e83151748b7ff69c2d848fa4c57046cb1d61fc98a95e852b07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6ec1b08f26e7bae11c2f500decaae0ad3762151a65de8db10081ffbd9d3b3f90
MD5 1cb5ae927c1810b5ccbb5e43c7c190e7
BLAKE2b-256 ec1b3eeacd7fbbf36259555f67102a6cf6104e6977ab35e4efc78056ee30d58a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 db87794309b70e01c5f4acc6b34f3a33d36604d4bd53bf54fdde2201cf8fc044
MD5 312f7bfe45c6acc7a36879fd9933adde
BLAKE2b-256 f7bb646c57ea1673cfe1cbeab3b9ee98575fe910a0c185e00db102b88de8cec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 615bf680f7eca2fca4a2eeb78f2cd438cb5511b519c199eb83f1dcbec74c2dd9
MD5 52972fc3893ec0ed114959aa38b58991
BLAKE2b-256 197ea644fe1104e1db089d70660ca7531ac80631115a256748121b08d9fdf2cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fbe167e9914f7c49fd63458da4dcdd4226efd2737aeebf149d70058883f33cc6
MD5 b7938d90306d940d4914b34dc84d5435
BLAKE2b-256 9bb040e827a16e9c7e6a538221e4740c5fbcb54422f44ddfe516b9f02d2ece23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 691895d499d004214e6bb69118fb2107a3e90fe1560eac417f1ea351cfac7c89
MD5 25c4b290d667eee5812df5ae6a6a2aaf
BLAKE2b-256 d267c66f05690b662dfb32ad53ee8b0ee6dce203bca8b4c876b581ba1bf2ac45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 75024358e48f6d012276dd2a2df7d93a0029204398cad97915ec28a0b373f158
MD5 10cba05e1d3f3afde44031915fdf8e4f
BLAKE2b-256 5a601cc52eace048f633aa75a3b0b6caddb556d907c8676d38b722379e0a101b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 867df6fc09901b1c5bf09260f625a5ca10c34f469eee795d038bd338f6793274
MD5 487f5ebe9061ad05f52083b37d94d7b3
BLAKE2b-256 37a7e0def30146fde5e8a1933abd9af111aa66866fe72abb6658aefbe1d86e62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 533c806f6d06a683520a78ba530054eab3172bcc6444cfc6e409dd54bbbaa990
MD5 4cc4805b2fc05a6151fd25bedcc7e396
BLAKE2b-256 9f7ee61d04dbdb1fc9537f6ffb2439412b82c5f2f6d0f66039363b8807ae8505

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60bc58811a79827aaf39b0087324556022ab4a0488a9b41e209ffbb5a1bf69c2
MD5 c2cc8a39f2b001624f69d2be8d95d6ef
BLAKE2b-256 0a123dcf25a528f3244089fa9499c8fd568940014a458ccbcd0b7d0be0415c07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1604a16bec1e4c9fb4b7d129309f28b5106a8b6a088a3a3bc52ca34b0ce75a14
MD5 3cb47b1aa5b127e5fef4962032818f93
BLAKE2b-256 f99e7bbc860af3d4bec088a552971d54071d0ba407cfa12462c6b82501735fbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 67438756f3e2c55a76cb4d3cc3af23423497c125be7066da3a9524f8b4572f0f
MD5 c8e757025080d4a91b7792509bdd35e7
BLAKE2b-256 0ee7608377e40ed965f06f81eee538ea404b1a61c6dbff15895ff50d5a80823a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: cachebox-3.3.1-cp310-none-win32.whl
  • Upload date:
  • Size: 268.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.3.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 127a8961ff6c2570d1f343520516f061019b297b4e833485dca6dc938ae75a58
MD5 c75c2c499f0a4121621b045f697527b5
BLAKE2b-256 70eef21768cfb77c26ef01548d25825a77f34af41cfbd381b51595ee895a7c41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5825c72d3c208fd3cbc222885655b93a93d17304be9a5bbc9c5d658c703c5557
MD5 5d9372dfc505d1c6956f75bd5c8995af
BLAKE2b-256 134c03b1c73b9550f50aff13549d9dbb6d031152a8c77cb9e0b5066b61cbea21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 135b7abf67e1e9f939a878f89a745d4b2b31b620c1e166d90612a3dcdfaf1167
MD5 12ec1bea8fc93f7999302455f7c4dc6f
BLAKE2b-256 ffe1b04d0e510e4762f9bb670f249eb3d4578ef3164dbde27e262c45f58cefc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c083b8eec3d411fe97e71e961ad56d355a82c6424e519c84f62b4606d4c62b21
MD5 8e1247165f970b5755dd14f6489ac56f
BLAKE2b-256 4e61f08e2944e5b38122df1bc73bcc165061cc69b611e2d5b4e89b9e86d7de9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 58836d9dbece38cad768bcc52b604a15b186b04d41ac11c65411af495223e767
MD5 b7e6dd5b96c40155c342c4d33fb93326
BLAKE2b-256 7d4892662f17721b6e76097f0ee1edc3de12348c1fe90106f8ef68389d679034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b7d28f2c7a1ceb4a903801e4867700cd84fac5b3983612c22a05bbfa9c6ec90
MD5 2960d6a97425c0b8e75ffacfe2963e00
BLAKE2b-256 84ed9959078a90d2708bff30a8e062168b0010ab2624a9c66a8736f46bee099a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c25fe7eb0c509df1106977953383a1eefcd531367cbcc441ec49f6c2cf7b9a65
MD5 410ea08e42364d0e31d94abdd89c6485
BLAKE2b-256 8be88cd4ac995b930b7d84d0cfacb65aa0bf2c4f1ac275e66274406c127118b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d036c503ab1579c545757d52cb78156cbfd09b411ae95cdfaa698d8e56fc990
MD5 e5db0ef55a9ff3aa0929f768d3dafdbf
BLAKE2b-256 32858a03ba3c34d518f38553d709db9ac7f43c7830fdfa877d326b9e2c2ad049

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f50174e817d1a58071d865ef47da4d7ac7d9e7deb56590037abe721b8caa4ba8
MD5 2c77b1f70778f0943777bfcdbc087dd9
BLAKE2b-256 7428acdc41b463676db1aa91eda1f65a7ec2c69c9a968311141e39d2eb32302d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bcd2c61b50965797475a52c7490495117b0045bd3f69a0f65b7e18a5e96f9301
MD5 4d7483cbfb680ba02a2eff88f40174b9
BLAKE2b-256 b3d9a5d19d1d52abc23db547c90e2a9938c9905bddd89d7fd1a1414ccbd75e16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cb3018e0a681c79e71101857cc978786ae84fb074334b42f343c24c205354e95
MD5 c0403ec867751f7c2bca53f376dc7a2b
BLAKE2b-256 7cd7c085d784b013fca3c1c9567de0febc594382dd030da684378b77ece791d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a9b79ec81b1199cf7014aaba174499075f9b292f375ddfae565c27b069534a0
MD5 34215fbc1fd9425ab142ea1772cd0289
BLAKE2b-256 c3477272aa79b5dec61a73fb8f13caa936b556d9a04fdb9f7003e3428f8689d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 0ade14d44bd57295e9d2fe06224d3f95fc992abe1c50006a946378ea3aa64ce8
MD5 b2be56d271fee980b79610662e37d837
BLAKE2b-256 243758ac4511505e46508d450f30db31cc7f20234607e525a36bb3765969e8e9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.3.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 726ba7b1fc20ec96cf860927a9f4efe8a99897d7b3a97068d633dcfa0300b9a2
MD5 3240240d004a0b59883e5e441ead771a
BLAKE2b-256 162203ef88f105ceff9660e448bf97275db20ac15739ba4657f231a9d58f302a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78feec2996037b02599b4fb73463cb149cf265415ad48c7fe8a80f85aeba935a
MD5 040f4fbe079df53b2ec6a3b72b2db4fc
BLAKE2b-256 23461e923a2a0b05df5d9e0e6431df4b4fc41abc878fdea39703c8377db15876

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5276c25b61c751cf590ebb837486763edaecf9a7602063d35abe594635123ab0
MD5 44381b8771378aca1567e960b4035b86
BLAKE2b-256 5e7631f41e26e11c0bf394c1bf03a0b1b5c789f9401ae210adfdc3ea30115b62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5559e2c98b2135f0a03523f0c3100bdce0655eb659ead051b45773ee25b31652
MD5 512bdafb770e814ebdb98cddb05a6b13
BLAKE2b-256 8b16c477893f5f9530dc7268832089203f1e5e9fdd830790303269c1f56289c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce8b25ee9e0a0211edb25c2045fb8014387f7712b51502b8e504a6ae7d7141df
MD5 f2924ced01ddd52fd9ef8609dc7095c0
BLAKE2b-256 e8260351a8127917297c7ac25a8b98d43a5f27242008835dc91c471732d3d325

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7207c8119a02b46c63026bed6941aae713561f430b39a327b61e6330b1aef385
MD5 1054d1f0901b5a0df9ba2064e96c9ffb
BLAKE2b-256 1a2aa57356aa6823fbd6f82c3e1b64bef5a9ed31e239842a27222ee1d89282c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f8d91a7cfb51cec66a0ebb6e7981a0b46ecdae7fa05d71c3406f239c14e863a
MD5 0a2e697f32025b0b730cd417de62b046
BLAKE2b-256 008c094d54f3c231c67427076cbb2e4ed8ef6da4d3b1b0b0496b0021bda69ad2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 00ca7b407ce2ee202fc059c9f026c8194bad0b5f61643898fdbae1c572c96883
MD5 b5fef3b2efff15884ae9888b7a1a388a
BLAKE2b-256 df91a6bc9250b00986883a0b888b9885804c30c8e0f8e98eece43cf13a59b681

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e9423780a047d9dc72741a0f01959372038ebe607a09b7619fc7192ad549918a
MD5 f09e2cedd350442c1d15946913328287
BLAKE2b-256 ddb4351df0d73a638a6c143010f6444366c6c5be50dcd1f4f675453d6b17203c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 95d9364e32c4d6dacaf968a8039538204b0dc4b8ea6422c4fc6cfbe396b618bc
MD5 ba4615836e55b0f8e4c23de75b0c7a75
BLAKE2b-256 bdfb57082ef9225e1581fc9348dc36e22b904b8bdc8d84dc00f42b4d7be0ac6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ecb9d8e9af015262dd002bc3d8fa1bce34ae0da0bbb99900ece1dfba77ec782d
MD5 029a34a483658d56ebe40c17e34a2b18
BLAKE2b-256 c5ff44cab846ba796f97f1a29b644df9257b6bf7d3e8fed95dd5481f1bc13201

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bad97cfdd2ccfcc999e7be9f7e819fcd4f5929c52be366bb06382c860ac54f1b
MD5 53d607d0d6450d8ef21ccb57eb70a0f9
BLAKE2b-256 ef8c8e26560ae0491129dd5376c1def8fa41de88bdf295d746b5965faf3b7ce5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 a15c5b74aa98f9a8218d03a0eca96e42c00f5c7f49672f7ffbfd8a0a5eb133d9
MD5 37e74eb692da8a7c2ab1fb1dfa83446e
BLAKE2b-256 9931684ed99108d65caa947779d118e0d8e3140d6c41cfcaefde4b54bdf8cbd2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.3.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 380f5b943cec044c5af455592eae10b0f45fee120e384fea511a38bee83986d9
MD5 7c912aad7aa164233850d7b1c96e9637
BLAKE2b-256 8754ac07a7b32e75dd132fdad5fac8bd06f15c3097729812740f7bcf4d5380e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea264441a1512d891245ff4ddf3b1d04e3e0e611ad1c736a0f1670fa2de45300
MD5 8e5e46455b52908c107e6f0f7acaa6ff
BLAKE2b-256 baeb9f2b31f62adff4929b383c3b6ed6807658c9bb0e2babb61678196929b8c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6992778599cc0a85024bfc195e0f1e876b750cc3f9378fbec106baf1b2c0b092
MD5 59c03d9ef06e808fb912b178a90e0068
BLAKE2b-256 15ee221e9a85f5c58c0f85774889c8b90aa5457e82d7a66e501567d826d6c300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8237652d562b4023da1a14d0fbd0002b74aeb25d5cf205dcfe6ea4b9f06b17f8
MD5 aebf1abcc134fc2d6e34068bac2d241e
BLAKE2b-256 4e5f996be6acf45e89b205a1cf9eec672950dfa57f7584387f36be1a2043503a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd49054fbf22d3bcd92fdc52a0c12762d289622055658ff978bfc726993e12b1
MD5 4bed8f9dfe61d8be842bf6daedfff67a
BLAKE2b-256 1c741fca49386a0e18f6b2e2d40e2f8f84d56e2314a100b64d719cf88edbe586

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f03f6af824fad4a9b74b308c3592a8073d45a01b4e0678acadf22b2d0ccfb8df
MD5 af8035ec870811d38ec49eca45997d1b
BLAKE2b-256 a77f2e1ef56867b37ae8f993d1557fdb612f9c9e3e0ef10da81358dff29e2eb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c23e205d97db6cf82f5f4a32ae95487baf2e0124515a708507b234422b0745ab
MD5 163bc3ad9d34e63970f877a5fb57ab2c
BLAKE2b-256 481bcb1a790ce53fc82d903b0f83fb9b57488d79ca50b7617bc698c41cdaa645

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae075920af96834b71cbf2b4194d7e715e55de541162786ff5d8de19a83178b1
MD5 ba159a8a12dcecfe1b3dbf991eeee772
BLAKE2b-256 440dfdef9929b5fc3ce8340cc57d086466be355271e3af246418c95d62712f91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b9316d06b3d4c2cd6258a186afd90d6338a09b32baac450b66196378c0aa5bd3
MD5 b66624373846e493e1808d4836c18e12
BLAKE2b-256 6e395a336b41666ffaea55de951e382c77ad7e690703f35c068f299187ca0d3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c62b24dd55b7ca44343be35edd14d075665d35eed05fbf02d40d6fed2e4c1cec
MD5 8f8b28d9672527fb4e2eca0e913ae882
BLAKE2b-256 463c32c5d3ab4d21e18fe52eb1930c9bfb1db85174b1fc8f2cd5feb79f4a36d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.3.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3661b7f815d73f6ef82bbf6eee0b2811e6bc651f742b80ac99c5f82540cb3f40
MD5 41bf3da43d4daaf4256f24a425706eaf
BLAKE2b-256 b7beb1776b283032cd9513eb2bf0c102da279372108a1cc65f1cd66ef7076b29

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