Skip to main content

The fastest memoizing and caching Python library written in Rust

Project description

cachebox

Changelog . Releases . API Reference

The fastest caching Python library written in Rust

Did you find any bugs?

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

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

Features:

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

Installing

Install it from PyPi:

pip3 install -U cachebox

Page Contents

When i need caching?

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

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

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

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

  4. Caching query results from databases can enhance performance.

  5. and ...

Why cachebox?

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

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

Low memory usage - It has very low memory usage.

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

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

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

Examples

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

decorators example:

import cachebox

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

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

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

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

Implementations example:

import cachebox
import time

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

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

Incompatible changes

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

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

Maxsize default value changed!

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

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

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

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

Iterators changed!

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

import cachebox

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

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

Type-hint is now better!

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

import cachebox

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

Cache iterators are not ordered!

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

import cachebox

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

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

__repr__ changed to __str__

We changed the __repr__ method to __str__:

import cachebox
c = cachebox.Cache(0)

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

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

FAQ

Can we set maxsize to zero?

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

How to migrate from cachetools to cachebox?

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

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

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

Uploaded Source

Built Distributions

cachebox-3.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (394.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cachebox-3.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (679.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cachebox-3.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (412.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cachebox-3.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (379.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cachebox-3.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (362.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded PyPy manylinux: glibc 2.5+ i686

cachebox-3.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (394.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cachebox-3.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (679.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cachebox-3.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (412.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cachebox-3.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (380.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cachebox-3.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (363.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cachebox-3.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (394.3 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

cachebox-3.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

cachebox-3.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (679.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

cachebox-3.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (412.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

cachebox-3.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (380.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

cachebox-3.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (363.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

cachebox-3.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (394.5 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

cachebox-3.1.1-cp312-none-win_amd64.whl (287.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

cachebox-3.1.1-cp312-none-win32.whl (233.9 kB view details)

Uploaded CPython 3.12 Windows x86

cachebox-3.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (396.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

cachebox-3.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (719.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

cachebox-3.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (414.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

cachebox-3.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (381.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

cachebox-3.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (365.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

cachebox-3.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (395.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

cachebox-3.1.1-cp312-cp312-macosx_11_0_arm64.whl (330.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

cachebox-3.1.1-cp312-cp312-macosx_10_12_x86_64.whl (365.4 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

cachebox-3.1.1-cp311-none-win_amd64.whl (286.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

cachebox-3.1.1-cp311-none-win32.whl (233.9 kB view details)

Uploaded CPython 3.11 Windows x86

cachebox-3.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (394.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

cachebox-3.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (681.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

cachebox-3.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (412.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

cachebox-3.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (381.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

cachebox-3.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (364.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

cachebox-3.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (394.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

cachebox-3.1.1-cp311-cp311-macosx_11_0_arm64.whl (329.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

cachebox-3.1.1-cp311-cp311-macosx_10_12_x86_64.whl (366.2 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

cachebox-3.1.1-cp310-none-win_amd64.whl (286.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

cachebox-3.1.1-cp310-none-win32.whl (233.9 kB view details)

Uploaded CPython 3.10 Windows x86

cachebox-3.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (394.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

cachebox-3.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (681.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

cachebox-3.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (412.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

cachebox-3.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (381.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

cachebox-3.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (364.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

cachebox-3.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (395.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

cachebox-3.1.1-cp310-cp310-macosx_11_0_arm64.whl (329.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

cachebox-3.1.1-cp310-cp310-macosx_10_12_x86_64.whl (366.2 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

cachebox-3.1.1-cp39-none-win_amd64.whl (286.9 kB view details)

Uploaded CPython 3.9 Windows x86-64

cachebox-3.1.1-cp39-none-win32.whl (234.2 kB view details)

Uploaded CPython 3.9 Windows x86

cachebox-3.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

cachebox-3.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (682.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

cachebox-3.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (413.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

cachebox-3.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (382.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

cachebox-3.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (364.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

cachebox-3.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (395.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

cachebox-3.1.1-cp39-cp39-macosx_11_0_arm64.whl (329.5 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

cachebox-3.1.1-cp39-cp39-macosx_10_12_x86_64.whl (366.4 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

cachebox-3.1.1-cp38-none-win_amd64.whl (287.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

cachebox-3.1.1-cp38-none-win32.whl (234.1 kB view details)

Uploaded CPython 3.8 Windows x86

cachebox-3.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

cachebox-3.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (681.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

cachebox-3.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (413.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

cachebox-3.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (382.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

cachebox-3.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (364.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

cachebox-3.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (395.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.1.1.tar.gz
Algorithm Hash digest
SHA256 940ad0b3cf5617e7d3cf50359f45dffa1dc12e96330a3cfe954036f7dad7b741
MD5 a39b4c89a15f8e7d4fb7ea7172577845
BLAKE2b-256 75d6ee61a10dda520a42f735e96dce56dd4576f825fefae74ddb1c9e8353e174

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1b9068a4acc73068ea48549e2b5970f3d0d78af993add8bbb50f77f1bcf347b
MD5 641b4d0eca09ee084df7ba39f44dff11
BLAKE2b-256 ec8113182d853064ed247ad224c7191a3dad59ecf199b2dc0bf47491b5d4f155

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a9d9e8f7338928bbd82cc455924029ea7145adcefb3bff3d779d42752df7be4b
MD5 3f93d241208f1ab18fdaa0e4f023e214
BLAKE2b-256 3b31b923da9a3c7090fe2750f25122c8f5190f231e2bdc3f212f6664b628e831

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aca368f41fd6543265e64e5aa9debc80f7f297ec9886242c9b994b0112a39865
MD5 7cc7a8e6f0eb34cac7fa1682a4a21f22
BLAKE2b-256 b3c42f6ed4f49cf849c08b414c33e353d5e3f8658de7342b3a49b6941b667703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 47a459780ff71c88c18392595b8eb02d9e24132b5a59809691eef9dfb063bb22
MD5 983a01ecfebefca07cf70d98f5f4dd36
BLAKE2b-256 a9fc2040079a1282f3f6d903e0f10af0e76032b35db67fe64ca8a764f46b0a8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1108ede20017aef504d5f621cbd33d055ee3e6895dcdfe85d9d6928694234a1c
MD5 5476874513c9b305753145d54424b635
BLAKE2b-256 fffef6bffe7e115c3450e276d04823b25e057c0bf754c44fb4dc8582defb52e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e14c9bd363d373e4ea3e3b6a88ec0ded022194227efce3e1462451f1d9f94411
MD5 07469d3af51ed74875581f4c1a553c66
BLAKE2b-256 107a87ac98a2f5371c58b8a8228a0b972723d8b00560fe2c9d51e4c2486a2afc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5f10bdb55bd125cf849408b4a137554bce3c4a7d45df829caa4d2f03fd79d4d
MD5 c57cc4e185a8cc301129608ab6406ad2
BLAKE2b-256 d6ab3a61832aedc9378c72f6f7d70ad4770b7ce5b210a44436471961ace439d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46d516715c7e30661b60be7c6b506fe4c6ed1fe5d832c01ff4a41c4fed8e8216
MD5 5fed856db7ea7189382d8c15919476e6
BLAKE2b-256 e2f89d335646783d4bb530df0646270672aa8942428dcead4e0523c80c16c15f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bededa22aa901aeeb4c36794b955944cbbc1767885b4173bdd71a10f883e0859
MD5 dd9a11c28bce365e9c2b78ea7fa4a5b4
BLAKE2b-256 461ced7adb083985e96e58070562ecb7f082f3a510d5cd4a9c7c4684d67dc0a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b161dfe6f44f2a8df3c319468f11751ad3797eda722ff2a2101944100ab98e65
MD5 1655e9898894791cd81f045ac73d160c
BLAKE2b-256 d42845de6efef75fc00172f0c272c7ad0afc8dcf11ae6ddade4d3442fbc574de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef9da420b98cb28c6cd5286b18cdfe3046bc6767d39bde80f6fd5b8327e48862
MD5 d12dc7a9e88fc9cb690a0fa1ec6511f7
BLAKE2b-256 af10cc7feba056b7b08183a215af6cc0d4df5211a913030b8cb51c8a6fadff56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f0e8e0bf264cb8fc4cdba318cebf761e26a4fd1e2492401f186d81673873a941
MD5 87b49856296f2f099d912ec9d8c96e7a
BLAKE2b-256 06f8b83430df4362f752232dc157bdd86edaf5cefb7dc3b9fc898320b2584c46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79b5135a9e0e6ba40d53415950977bbdc1eece99905c199eb89529be84b32b68
MD5 73978205f4a9b9ea587b85c581e379ee
BLAKE2b-256 3167c5c5044ee9ee660a695bad94c3a1030457eab9ece13f3ec06a065edfb16f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4fabe4cfaf86b4dfbf49b8e24e55efe8c8cc258081f67bea1b91b16bada55428
MD5 29b8a00bc87e9d1e582158351ba7c37a
BLAKE2b-256 6353fa6bac9257e6641cc7a37278545889786f6e237a6a0cdff55584b65ff8a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e5e94faba6806a496e47fa49fc8eb7cc869377930a8c5afa6947658bd2ca69f5
MD5 d66c8f488015c2d7f3c9d80acd32368a
BLAKE2b-256 197f6a7e587309667a6edd7796a80cf5ce4779a344de55ea2330a9d13b643118

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 be36e2d75e6f69b05c12e5fb42448c478e770a8e0cd8b327f5301502762f4712
MD5 3460a71b59160f9b28e29525393b2ff3
BLAKE2b-256 e52a3747e6f13d9621d8687df84caafb7e6e5466fd06c093c050b72179fe5a2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 828b3e633f4d380fa20ef18af6f861718fc67503fce87005c646ae852d6342fd
MD5 700829352fdf3580734674673fed3c36
BLAKE2b-256 bd9ad840f107f3fb0cb6488b3b7749df14a25631a4b9ba1f40828e098ac0bbee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 822a221aa072f9d4a2cb56290cce022d761eb8f0d96963867d19964f8abc764c
MD5 319d9fb2e6c9f87fcd660b89ea0866d0
BLAKE2b-256 a6d2cda0f732de0a2888d473266ae636d366fe746f5e458eca23a49c88a08878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 6dfd6177cfc3b795fcd5f2a0935f536fbe5d3b10183ec742d3eef0f50db91b7d
MD5 7d5b492f39f83348de792f4ac35d0e39
BLAKE2b-256 3ff95cc5c83974f6a4160dad49491ecb904ac39236e39c217fea2cf2120e8866

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.1.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 18efb80c406016b486bbc3b809d517fab1c358905092cf9058212f8c72a16f8f
MD5 0d9dd3264b7dd8a3c0e5d9dbca84f7ef
BLAKE2b-256 2a27ede32ca0991007e1d7cd76e04e75868cb3a1407418553d188771616f3f47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e726b451c3f6ce716da3de2b8179c0999a136b7121dc77576023c005536179f
MD5 055213e6850dbefe2812b4ffb55f544a
BLAKE2b-256 5d07d683bcc0f13c98331421a3977270f21d31df11966a816dfbe507d3e35006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a94e886cf73cdfe62fcdbc52808f19624849167c68f48f46841ee0090d4f8a9
MD5 bc1888e16e319365139beb67a1deee53
BLAKE2b-256 6eaaed5636adfe21cf97a1403d79e795aff5f9e88e8a73108cf349a2b5e1700e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3e15fdbfe849849c2d444a4a71fefd8b95799af9e5e7b8710abb5c2b6a5f3156
MD5 9369c947b07b3b4b5dd4f8b75ec92794
BLAKE2b-256 f5f797a1d841d304f84be1c44897fc1376b9545db2a5c6e7a411380a5e503de0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 445e9fca026c97302846a0a422d2acfbea9250a9436f6ced66074b6e7355eb87
MD5 5c45f2a2f8054c9fb1db99862ea5e5cb
BLAKE2b-256 b5645b9d6048032051a12ed7266ef921e0c2977fedcfe8a249a7214fe2d2c17e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 607b41b81f4e420b39f1c99282efcdcab07c7afc87501dca76f711834df79db8
MD5 53f4ff7ec75b300a21244866c6985ee7
BLAKE2b-256 85473b36308f67850deab682d0e63630cade3ef7ffed24fdbb30036296bb6835

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 150bf8c3476d39602eeeceb27e25bfab08d94c771e8765f8ab581745979eb07c
MD5 ae9dbe3337eb179680906e3f79a9e2b1
BLAKE2b-256 23b15e806926a2d011ab414ce3b83763e1f398e875b9b96aa523c49a73876bb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1eab3ea6634bfb6787ee6fb21af453c1fcb61682b0a47de698738836032b8bc1
MD5 5fb578524c1a8393ecd20c9624e2320b
BLAKE2b-256 81b201975e34194bd5e903d958d1d7ba0d4a9cbc9faba9ec20306c50ef1c053e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7d708a6902cdfb36221157ed13edfd8fd3c325c96fa0c686be37402b64cc785f
MD5 1f66707f3849f4059f0f0c28e250419e
BLAKE2b-256 c67bf49cb027ec4dcee7772c943cd365eff410d635169a9f54213a2b1a9db717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 09a0861c38da17f46ce5a68efb877a1fa97220a204f92e25f985c32500994166
MD5 fba3dec50ba8696e843bcc1a13e93e8b
BLAKE2b-256 c358a35b03a1829a587f225bba84bc10e2990ee6f70d227bf4ce5551698e03a6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.1.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 409440d0c383bc06dbcbadeb26553db4f1878202504eedfa1868eff367ca4fb9
MD5 4664b4784ebbf44faf98348953c895cc
BLAKE2b-256 af9cbfb3e356489e578ac7e6d00501a0f63167adf3b47c92408e7941a504c9fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 144e0f6d3ae054f026cf26d793bee8e3bc63d0bcbb399f329cdb82fd9d73f6c3
MD5 24be7ed9d1990c71767836f7ae89caef
BLAKE2b-256 1b9ce1f7563fbd500124e053e9caed68f8233e51457bf1fd789064774dbb62b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a174c4e097e94038242daa01bc07810b8f373e58050c039287081ddb1247589e
MD5 ea1ecb9ae80f4c8992796498bf02e1ac
BLAKE2b-256 64e4ac1d6d1920d0f02d08dbc507f31f5871f99f2432a548495fcdfcb80bd6a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1bf572e8f9e802c8532e24cd3ed7e9371dc608d92b27012b457b058f94314170
MD5 be90f53a572b7adfa94773b3523ebe9b
BLAKE2b-256 da97ec0f0b69147d47655cd07194c5945297faa28e1f63afe2779026c47b2368

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e998d70e74c37eb6c46bc2aad442df7654d644a95322ad8a13165895641af7f9
MD5 93de6dd4d99d3ef4473285e2a994167f
BLAKE2b-256 5e56b061502fde906d7428df517443314c2f46ff4b3662c52411bac6bf9d1043

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47307881a15f3199ad6dd2fa31bd901bf8a44dbfd6594f090ac8551129e98a07
MD5 3293571d1655a309fcb523d0d70de713
BLAKE2b-256 f0a721e8bc021a3b392f6cecaa2f772016e1e8d876ef37b77a34f7eb09d24241

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b5ed4b4ef5337364507fc11d5c40feae70b411615577c48b9663b5482bf1307a
MD5 06521c9979d8dce8fcd850ca506de488
BLAKE2b-256 8b2460822aee875c9a18e9be4c012c41cd1c9faa9d63c07b6db5cf0ed49092b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8265596830e1a096d433c4d54bbf94232b4f5b389666fab503325f3baa34e612
MD5 86d2c7845ee0b354dcd53f2d31bdbcbe
BLAKE2b-256 7120c9100cea32d960c0c7fba9d3d82d73951a50209041cd9027334642f33a45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3134f35a8953bd1677c88667d2c56439aa3c1f475eeff8178514e03d77845154
MD5 ca9a50b475e0e058fa6ddda9c4fa6ef9
BLAKE2b-256 5e316f637599e23ba4816e5965fd2a7a61e742d77b1d896b50fad3968f50a035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 baca672cc5a9675e38a78197a847c8ea29ba8ee2c491b1a90dbc8813b2fb8594
MD5 feaaac0510064f72645845e8ef8a131d
BLAKE2b-256 02f08271b160b4de76dbce9f9fb1a3a1e1f8a8039752b0f30e79eb2a21bbd549

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.1.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 0863dae1950aea5abd8430046247a8c68569ddfcce7380328bda11ca6b016a03
MD5 70c15a765867d82f53241fd981603160
BLAKE2b-256 bf6e3a778ef1e21aad6ad4d3d407fa39ec6f28596947e2e6065869ed4deaeaf6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68cc7c9065aee8d855026f329359670cd8d9a57887383239680d0320658cdf11
MD5 dd4303a31f8c90039494472580f59ece
BLAKE2b-256 cfd238666571dc7ed8adf31755e284c11b20ae5baef2989225f27fde3803982c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b70d8af6110daf13dc1a3d1aadd495ba2a54309baeaef43c891e127725747161
MD5 aceb547bdb77c08120f94541be61e0a9
BLAKE2b-256 f38664e8616264b281b4ad04b833a6d1d16a27d86a06b2c2a2e1bed2ace964ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 29f10f3803574202a60b51e4358217ad501d6eca5f452e9b6367922dabbda749
MD5 375b39fc8ed85010306e3d6f2778a754
BLAKE2b-256 b3ed22fd7779f39a2474cf2e2165d69b2f9a201540d9dd4cff0cb44ad282b8a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f5caaaf9ab14c3b1401d45d4885c47ae0e9d12a630cf4984c17b13f9e02626ee
MD5 c1cc0375ebebbce3e2b5cc9ac9fa8604
BLAKE2b-256 ff5aba4ed0361b2560a1b29feef1110f6e9a75a8332c43a947a7bce9e6a944a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c5d3d9878126f7c0a72db73018a9342a842f34c06df6967ef7803a351583398
MD5 53df5902cc69c2aa53e2cf11b22c66f6
BLAKE2b-256 704176e7c9174d51f371bb395a4bf17a9986f93c5f90893d274242e4d51c40bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1ec756943260c2e6f0218f03dfff45b614edcdceefae926b67c1b6f5ac607e47
MD5 5f45f4f8391877ff167fbea95f970048
BLAKE2b-256 8ef1944661e0931c4f2a21cc3ff0447654d1fa9eb1a9ec232c21e2b6c7c56d67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94ca31fd8a1aa4dca7a9d3a701a8f3ef5f04c28a77608f8823c2ae5563e1c531
MD5 17e6d0f4ac2fa004bee15292ad870fe6
BLAKE2b-256 4726daef221915567dd3ca905594c8ee5bf6ee47bece294604cd4d7d7dd9d1b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 17db80ce9ab279d8018b1e191c7224d695eb55d29db97788b91beb379635613b
MD5 90511845919581dc5c3c7085f2399756
BLAKE2b-256 cc544a9b721ca161d66acb0dc4d9c9cbcdc30738a8941304cdc981f01657586d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 d243178e66b6a2aca44a3c025468c97b1599055fc306fc953faadd08672a51f5
MD5 2908b95a44432be74b357aa6b1fc9dee
BLAKE2b-256 dded185a4c1a696b5db31b756864de06ca1795baf6606af9eac4904bdbb0c7c1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.1.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 45038b444f83025fc9cf911f7ea1c3e091d99cf0610a0b967d0ee82bb575a0cc
MD5 8d5a9c341227633d83b3d67256b10109
BLAKE2b-256 20c36a53d2f865ae917fe6e881b4d2536422e0be22966e02b65757f14d3c7f16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 afcd8036a7eb343efe23003ce8c562d42be86992d4ba8145ebf5d9e32caf8abe
MD5 d4a4a38c6621a2255c7a78c246698ce5
BLAKE2b-256 5ce77a086b03f117ec5450a276453cd5202501fd1ff9105216f6ee74fcc8684d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 43c01fd3c517736cf67bb7dc6292db75d03882a36a4589c663e997522a148f17
MD5 df726765fcc06778db6fc87658641d36
BLAKE2b-256 e4ea664e59c0039e5fc03a522403cfb6d3ab1ca16d728295b482287d4717372a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e25746c3e06524f5fbf2a0dc33ee420d127c99b7956babf1d6e5c1a7a06555ed
MD5 6ac01c3226978dce2791178830cb2398
BLAKE2b-256 c57d058a57560210f4edb084a894a8cb4ae202a9834f5fd86c06aff713bf07e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 013e4b046bba7df8053f908bb842b9081e55c5bd07ceb3ba864903d06e30c040
MD5 4964cd201996f11691c1affffdd7381a
BLAKE2b-256 790b044fedfbf2f78137537192dfdb7ed56c843d754465bb00102187eaaafef2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5106a90da8b3891609d76305478d36578e8e88cd2e97a3758dbc7816a2ca0ceb
MD5 921194397ca33d64b8e5ce168bb6e78c
BLAKE2b-256 72e1814f81711d4c56ca0e81fd45b659cca20ae08f30fea030fc0bb72cad6d80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f629e61454d09753d47b9c9ec14c8a18292fb9f7db872bc95038aedfb06d9466
MD5 73155b6b38469e4367b7c9ab64eb5d8f
BLAKE2b-256 46fb18e59d2f94bb84389418c82acf73fb784288c3c710d3b6727b74202de2b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87eef27ab877b161ca604d22c6a9d1ec1ce316a1dc3d8340943285b8abf490c5
MD5 bc9e538ed6fccb62b8107f67d2a9894c
BLAKE2b-256 58da2f8277a8d94b8a0ebda6a6ceff2d69404e8945f71cc0551dcbffe0a46b47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 43c4ff6c0a68dc02b65e3fd3a183b4dfe80529dd423483569f0312a3d10f6d44
MD5 a051cc6d5160726a29f9d8e86dd08aaa
BLAKE2b-256 6baef11e31feeb73d7b8108e9f854dcd74ea3232952711d580a1199f63bfb974

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 c1e6612c38b492de4cfac5138c77b67f2263114ef74e930036d1edb60f613370
MD5 87c5ba1243f2547b55abeed8d8569122
BLAKE2b-256 a4ba98d5cb3b757d9710b619444ee935ed480517ee029aa1b4ce111cd6872982

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for cachebox-3.1.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 8ec5e907946bab6816acbf9f2c08274367e06d345af565db93b2afda0ea0e29a
MD5 71865b17ad25fa71396a4fffca6da035
BLAKE2b-256 ce307aaae1659bfe5b7725a20755436eeda2c0e9579c8e2fbc52105bbb535c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2c18cc0b291a5646afa097afe7c5f789ef2a5900f30b625662309605d3bd8f7
MD5 6a1ba1c2a8ae6475058fb46349c76042
BLAKE2b-256 87fd8e8f863765e6e559ebf6353798a5343f04f642766cf18bb9c2ca9485776a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c5a5b584a922ac8aea82b8005f153069ad964e61bbabc83c20d0b5ee39e883bc
MD5 7a4b4b702f737c3acb8fb1245f072219
BLAKE2b-256 f5960a52d885e622d7ea6d9d04ab7af5645d2140babf2279cbeb0808f05df2fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4e77d5c2ee524f67c0ae293354668d2a53fb6d8aae469a7128008ea4531f6297
MD5 49d9a3904400fd2585c4e60f10b0df76
BLAKE2b-256 91a23684e050d74647421ec8ceb52ea0b487ee5c37419e6571449d8338893900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 adaac78b64b3f4b85aac02c04195ff2e8e4250e39e72560f8398cc624c71ed1e
MD5 44419caa641d522abcca7dfdb75c62d0
BLAKE2b-256 b8620eb703888c7082ec8b0a7f8f86a319bfdd22bf1a513eb1debbea7e5d8762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82b4972ae3516b774b7ba4fbc1b83d3f3c08698a60125495a4bff1b4504f1aa9
MD5 28db02c85c535fd565661a52b6ebb267
BLAKE2b-256 3f88da9809ae502d57d0ba6900206fcdf6cbca8ca177465d0d494e48c80e29ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for cachebox-3.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fe3c7fd251aea950e90398d51217c1c082a196e3bc48cad7d358639da360ecbe
MD5 1ca66cde432f6bf0f773c74e0f7c0e48
BLAKE2b-256 c9a75b7fefc8d74d3f8c597185093e14fbc494c51e71abe0970dfe3f5c63bcea

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