A cuckoo filter implementation.
Project description
Cuckoo Filter
Overview
Cuckoo filter is a Bloom filter replacement for approximated set-membership queries. While Bloom filters are well-known space-efficient data structures to serve queries like "if item x is in a set?", they do not support deletion. Their variances to enable deletion (like counting Bloom filters) usually require much more space.
Cuckoo filters provide the flexibility to add and remove items dynamically. A cuckoo filter is based on cuckoo hashing (and therefore named as cuckoo filter). It is essentially a cuckoo hash table storing each key's fingerprint. Cuckoo hash tables can be highly compact, thus a cuckoo filter could use less space than conventional Bloom filters, for applications that require low false positive rates (< 3%).
For details about the algorithm and citations please use:
"Cuckoo Filter: Practically Better Than Bloom" in proceedings of ACM CoNEXT 2014 by Bin Fan, Dave Andersen and Michael Kaminsky
API
The filter is wrapped in a Python extension and packaged for cross-platform installation.
CuckooFilter
objects support the following operations:
f.add(item) -> int
: insert an item to the filterf.contains(item) -> int
: return if item is already in the filter. Note that this method may return false positive results like Bloom filtersf.remove(item) -> int
: delete the given item from the filter. Note that to use this method, it must be ensured that this item is in the filter (e.g., based on records on external storage); otherwise, a false item may be deleted.f.item_count -> int
: return the total number of items currently in the filterf.memory_size -> int
: return the filter size in bytesf.victim -> Optional[tuple[int, int]]
: return metadata about any victim
Filter implementation authors
- Bin Fan binfan@cs.cmu.edu
- David G. Andersen dga@cs.cmu.edu
- Michael Kaminsky michael.e.kaminsky@intel.com
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
File details
Details for the file refcuckoo-1.0-pp38-pypy38_pp73-win_amd64.whl
.
File metadata
- Download URL: refcuckoo-1.0-pp38-pypy38_pp73-win_amd64.whl
- Upload date:
- Size: 19.2 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 00fc51fa34c770c4e18a6d44480985cbfe16df1ef11ca6cc6cced01c989c829f |
|
MD5 | 169ed582fdfb24c00393b7d00e786a12 |
|
BLAKE2b-256 | f9705c58fec17cddb3e3c0baf1e8f80b55b1c1f2be7237ca2bd4aef56a318ec8 |
File details
Details for the file refcuckoo-1.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: refcuckoo-1.0-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 66.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6b92660f179768d9e7dd7b345e35735b62712f21363e99347e3d97636198fff8 |
|
MD5 | febd608302456462531752dc40cfb90b |
|
BLAKE2b-256 | d7549ffd8b7849e2d4dfad32214a15c30b50904023914655644c0770ea8d16a6 |
File details
Details for the file refcuckoo-1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: refcuckoo-1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 68.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a04e08a9d9401a5ad87748c502d9e7facda76470ec00af216bb447ac243b3cd3 |
|
MD5 | 5eccb5537797c1a1acea0504375ba09c |
|
BLAKE2b-256 | cef7968fa400c910199397505c3c8232ea7bb3a7ec0d1b140fc4d6b28207087e |
File details
Details for the file refcuckoo-1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: refcuckoo-1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 16.0 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 693cbb8bf944d84a3263dc272aed7ab6393a20c8d18dc3c9e39e1a818c4538ed |
|
MD5 | 59bbd6829fee05cca3950c0b8c0da61b |
|
BLAKE2b-256 | 81a343960073ab14798289fe33012d37d6afcc22a26b08c1c8fceed7fe1fa39e |
File details
Details for the file refcuckoo-1.0-pp37-pypy37_pp73-win_amd64.whl
.
File metadata
- Download URL: refcuckoo-1.0-pp37-pypy37_pp73-win_amd64.whl
- Upload date:
- Size: 19.1 kB
- Tags: PyPy, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3ccc8b24000eda149f8b175bfd636eda76cd81e07f0beb31a8cf8392c7903bbf |
|
MD5 | 0959bc41ba55f1da9fd5b2bd2b02c399 |
|
BLAKE2b-256 | fb96b1b5e28387ee18cc757ccf9e00d4a363994ac96db3a9a62676503f0edc90 |
File details
Details for the file refcuckoo-1.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: refcuckoo-1.0-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 65.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 86566039f060ab62fb66eb733dd09c1a71f7db1b0a41a296a2b87e98330787ef |
|
MD5 | fb6965cf880ba9691076162958d24a3f |
|
BLAKE2b-256 | a36b8b60a9dc98dc4ae0a5fa42852d06542b7df298885f573da77794b4aca37c |
File details
Details for the file refcuckoo-1.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: refcuckoo-1.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 68.3 kB
- Tags: PyPy, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95e52d2b84714caf309980c31700cda194ff430c6b1f3281446dd1e19a02d2eb |
|
MD5 | 6eb3394fda26bf0525648346e5b3ba6d |
|
BLAKE2b-256 | 344bd909fb9ca0f430dce9c4777e1cd454a5b049fcb1a297280cd9807b3c51f8 |
File details
Details for the file refcuckoo-1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: refcuckoo-1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
- Upload date:
- Size: 9.2 kB
- Tags: PyPy, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b1779c3fd3f96bc8b310fc35990439ee0015a03cf70eca0a80367b001ecec31e |
|
MD5 | 9ad29acdef0118cbc7091035ab215b07 |
|
BLAKE2b-256 | 0809212a7b84d79686aa034c5c8d35c9314896a044a829626f718d4c4a0a6129 |
File details
Details for the file refcuckoo-1.0-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 11.1 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53b70cd69fcb713c374dc8d62aae0a87bc8fb9ded57506e225cf4a52f246ede1 |
|
MD5 | 41a7f683beef343c0fb23a67c4330f8b |
|
BLAKE2b-256 | 5454d950e66f694b21102e656176eae8760b24f0bde2f46b4d92e84d2716805a |
File details
Details for the file refcuckoo-1.0-cp310-cp310-win32.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp310-cp310-win32.whl
- Upload date:
- Size: 10.4 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5110a837ab352fbdae4a255619cdee6af328f66cdb1651e061d1e2b12e44430 |
|
MD5 | 66c40c2b7831c87daa1f3e79635704c7 |
|
BLAKE2b-256 | 2dd50948ac98ce73ac8d1024623765cc8240203a5499b903b3b44784ccbc4f69 |
File details
Details for the file refcuckoo-1.0-cp310-cp310-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 613.0 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | efd00daa6a879ba96d570601608c026cd6496da600984ea71f8fbc9dd4542521 |
|
MD5 | e0c6f43db9f3580b98ffc92b74865c54 |
|
BLAKE2b-256 | 49a7ed3bf33beb3c8ab233ad2f39f77ea2bf4add285922acbe519029905a29b2 |
File details
Details for the file refcuckoo-1.0-cp310-cp310-musllinux_1_1_i686.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp310-cp310-musllinux_1_1_i686.whl
- Upload date:
- Size: 666.8 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 131d2413a47787a916470e52ea090aa7861185abd1a7657fd83bad48ce4f32e1 |
|
MD5 | 7cf40ff5779ba7ea3b300cb90f8c35ba |
|
BLAKE2b-256 | c563987a5357e3e1e720bef714e751c1839e3a876457cbc2e0c8d8c469ef9ebc |
File details
Details for the file refcuckoo-1.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 59.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 37723c2a2be544d1e4188d085657cf03b7a5f379f2bd52d5757c49c8af4b473e |
|
MD5 | 82e3cf94a72b28a2fc1679ee9c7bc561 |
|
BLAKE2b-256 | ce32aed3a51019a7cb8a507b15d8b073091d10e61ffbf10aaf6769142bd136dc |
File details
Details for the file refcuckoo-1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 59.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7024ccc123a4eeab01b0f09a3a7ba586ab9a5157a4f7965cc31d99a9a60f3386 |
|
MD5 | f5c8e987ab4a2ab9a4063ed492da1eaf |
|
BLAKE2b-256 | 2f567aabd7becbda850e084c54f16d8e1122152884eb0b9b30990d802f9d2c2c |
File details
Details for the file refcuckoo-1.0-cp310-cp310-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 9.9 kB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc6069fa4ecea8588fc0b03b20d2ef7b36ad0d1830fd28747cda312df5d12dc4 |
|
MD5 | 0dc90f7ba82ed4a4bbad15f9daa26677 |
|
BLAKE2b-256 | 448d62721421980a5ddd7f9b74b2ab3e03ae47e99154ae53397a9275e6c13165 |
File details
Details for the file refcuckoo-1.0-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 11.1 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | df2b71ccda487456240731bc7149766c311afae0d3e15c27981014cd673adcdc |
|
MD5 | 423d5a72e6e17c5d59945ca094f2435e |
|
BLAKE2b-256 | 0bf5eb36b27e9c586a0db31421fea039102f45402b6d8850458fe6c5ee1d5113 |
File details
Details for the file refcuckoo-1.0-cp39-cp39-win32.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp39-cp39-win32.whl
- Upload date:
- Size: 10.4 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5b5a992384a0f0a71bbdd085ba7bc830d3711985aac34e76b005c6c48b1204b |
|
MD5 | 8de99c2f3edad1d3c9a3d133702a6bfb |
|
BLAKE2b-256 | dda62325af3aeb5fcff00004b5a30289b35848b55798b7b9a96131725b2b85cb |
File details
Details for the file refcuckoo-1.0-cp39-cp39-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 612.7 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e9be07feafdd3ec21a96bf16263d8b3032e1b457b2465a3ec099b4c48bc7a43a |
|
MD5 | 343d43482e1e19eafbf8c75b91c5a227 |
|
BLAKE2b-256 | 36c9e8b5d64c799050e7a8873c7c5cbba6cefb4339d21f72d4d54b05d00dd8fb |
File details
Details for the file refcuckoo-1.0-cp39-cp39-musllinux_1_1_i686.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp39-cp39-musllinux_1_1_i686.whl
- Upload date:
- Size: 666.5 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 09debc2e6c52ab4bf726acb87252f7a10960202161ca5acc5c64c82ed53a318a |
|
MD5 | d0f80fc80f870e225b387ed9416535a5 |
|
BLAKE2b-256 | 25095a573d9b7c72177556e200d491b084fe2405e696f0ebb1e6c99eefb83077 |
File details
Details for the file refcuckoo-1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 59.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 49b46bce534743b0044f01d60bf3dff07160332c35fc8555ffe5d8f6500e4442 |
|
MD5 | df46e9c4b477e7c81e430c01f8f41ee9 |
|
BLAKE2b-256 | 60573d2e308e9c9db03254c637ba6c80e9685c373ba87d502c191e00f8e290e9 |
File details
Details for the file refcuckoo-1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 59.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2058ce436e74bf9482953e7e284b269cf350d10c78681f080de9f3b3a0e9a7eb |
|
MD5 | 1c3e0b30006bbd574a9809093f072845 |
|
BLAKE2b-256 | 36c44cef3c7331d38d21682c459dc4891ad1265f26ec47b42d2c334123ad5962 |
File details
Details for the file refcuckoo-1.0-cp39-cp39-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp39-cp39-macosx_10_9_x86_64.whl
- Upload date:
- Size: 9.9 kB
- Tags: CPython 3.9, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6bfc6106a4e7ca0e7bc27b911f76b139f2014fb91d7b8ca8450fb7cc529dbc0f |
|
MD5 | b6e08d2e1c2478a6ea0badabe4aa4b35 |
|
BLAKE2b-256 | b1cb61b4255adcc952ba204fcacd35a42b82d75d75f9742aa1d3e51e685c8ec7 |
File details
Details for the file refcuckoo-1.0-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 11.1 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 90533b7ce71d5daadc83c381077665f69863979407983bf06b8a4b92776bc9de |
|
MD5 | ae5e855b195cc951fcb0d6c4db91d526 |
|
BLAKE2b-256 | 28b1dd1034955bd985d0675b32c1b4b7afb8daabc4c3e55d011a27afee223d56 |
File details
Details for the file refcuckoo-1.0-cp38-cp38-win32.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp38-cp38-win32.whl
- Upload date:
- Size: 10.5 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 278636e95a875a876ccfc3975c4f10af9f9d48aa921ffce62fee6fcfe8c43540 |
|
MD5 | 9f5f7c7ced3a721d2ac4c99113c09e12 |
|
BLAKE2b-256 | 98e6b1dc372ab8bf27a8ffbdf14f3cc4be005e5a1245760b3ea5e5ffe6e43e25 |
File details
Details for the file refcuckoo-1.0-cp38-cp38-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 611.8 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b35565c9f836451c4858403e890ccff82106825f5180b9f13cd7ae342d93c159 |
|
MD5 | a33cd5992c36e5b5fdef9a296cc13370 |
|
BLAKE2b-256 | 4a6f95fa7d48153cc34f2a1e531747ddcb14d1dd1d77ce93012f6e56d926a2ac |
File details
Details for the file refcuckoo-1.0-cp38-cp38-musllinux_1_1_i686.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp38-cp38-musllinux_1_1_i686.whl
- Upload date:
- Size: 665.8 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 26758ce25ce98488e6b471bec94842834b17d311ce01a6b041518f2b9f20ac42 |
|
MD5 | 4a73ecb84bee0eed02d0fd26f90b8f87 |
|
BLAKE2b-256 | 599a602af2a1aae30dfea3310f1054756beb61db4085a619e0ea24f3abaa0f31 |
File details
Details for the file refcuckoo-1.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 58.4 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8467e0e07bb22c7f26bf03efaf7e403a22e81f8d6047e508ef2e631056ec3c54 |
|
MD5 | b93c56727d4b7db0d0268d729493cd2a |
|
BLAKE2b-256 | 9f6b6ca8a17a6cb3b43b08b0fc85b9938c1b93b5d87614d91ca8cca77ffbe6eb |
File details
Details for the file refcuckoo-1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 58.9 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d35db7401f16c774b71360c5ec16f6523ec3606637563991065294a46bec93be |
|
MD5 | e16ccbe09744d321043c3294e5aa38ac |
|
BLAKE2b-256 | f4c1657bb5b67fce113bae96bc8c4b58bcf2dc75862896c8493736b119d38d0d |
File details
Details for the file refcuckoo-1.0-cp38-cp38-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp38-cp38-macosx_10_9_x86_64.whl
- Upload date:
- Size: 9.9 kB
- Tags: CPython 3.8, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dcc2a7856235fff24a48e82fe058f69a434bc3da7dd825835648fd2be663e51f |
|
MD5 | 1ed0b00c0c48cfbefccf43ecce8f4a10 |
|
BLAKE2b-256 | dc837686aa5521aeda2415665fa0fe70dabf7a5b2d8e618ce766bb8887fac4d4 |
File details
Details for the file refcuckoo-1.0-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 11.1 kB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 772d7c8b1585f0f5bd64019441aebb8a3b3f92320b97c5f844a6e86501aff29b |
|
MD5 | 28f983b2187fa5919d373bc2a4556018 |
|
BLAKE2b-256 | 7acdb5b440a2a0fb4f7b53f29470eb87a2605ac9b965da6744b92c5ad1b9e447 |
File details
Details for the file refcuckoo-1.0-cp37-cp37m-win32.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp37-cp37m-win32.whl
- Upload date:
- Size: 10.4 kB
- Tags: CPython 3.7m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ae139a7e5ca863eb95add1870d61f363a7a087c7fc51f2385262d756bda767e |
|
MD5 | b33d818d3742c67297081763b8723494 |
|
BLAKE2b-256 | 5be8c75943c86e621e3e8202616cf5a03be23c7805e1b66bae8fbddb7eddb824 |
File details
Details for the file refcuckoo-1.0-cp37-cp37m-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp37-cp37m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 612.4 kB
- Tags: CPython 3.7m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ad35c9f638fe341b4547bc3cbf841e2193b944419943a4fac2fef1184897009b |
|
MD5 | 707271428a6e6196a74c630eab3b4407 |
|
BLAKE2b-256 | 94097d1f6e9d01b6d6372d994704b9733eba6624921c97745c228f8120ecc8a7 |
File details
Details for the file refcuckoo-1.0-cp37-cp37m-musllinux_1_1_i686.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp37-cp37m-musllinux_1_1_i686.whl
- Upload date:
- Size: 666.4 kB
- Tags: CPython 3.7m, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2bd583410501e347caa1b740b70001ca5eb915e6eefcd361de0b9da2137da0b2 |
|
MD5 | 971a3f3fab6752766be934c9dd318bf7 |
|
BLAKE2b-256 | 8338f15335fece4b5595318ce5a153276008ee4464bcb3fc2f8acac0f2c188b2 |
File details
Details for the file refcuckoo-1.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 57.9 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52ddf7483a2a7f8d795ffe62c6c7486837ffbedf9d5009d325bd8bc213206a54 |
|
MD5 | 0f696fd075b970e93fadeb015654cabb |
|
BLAKE2b-256 | 016a55c1a65719ea863753c7096eb269daa39f89570b2ebf76ef4dca4719956f |
File details
Details for the file refcuckoo-1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 58.5 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39742051fad9aedbe727b0aaaa3783235585ed542f4080b99006a2f02d9810f9 |
|
MD5 | e32ea1a49f703a30368d171c4c3d5f33 |
|
BLAKE2b-256 | b0f6af445e302551e2309f6aa24a8c23ee7774dedce87d5284489d750682063c |
File details
Details for the file refcuckoo-1.0-cp37-cp37m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp37-cp37m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 9.8 kB
- Tags: CPython 3.7m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3e5476fde6326a8fa3668383da787cdd6a3a4d1703fce58c95fa415cbb33b4f |
|
MD5 | 5dbe44ca71b14d8517b8245ac4aa2c5f |
|
BLAKE2b-256 | 04dd297697cbec6145cfa4641490efbf7ed75a73c27abfe9d19c3416c0704923 |
File details
Details for the file refcuckoo-1.0-cp36-cp36m-win_amd64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp36-cp36m-win_amd64.whl
- Upload date:
- Size: 11.1 kB
- Tags: CPython 3.6m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b8950b2d1034a9d51ff25be2befe892586dfd5cfb4224b664b8c5d809bd27fb3 |
|
MD5 | 18fdd95d4a402ae7d4692b2fbd401fc0 |
|
BLAKE2b-256 | eedbfae074eb91c48d159f9eec4d5293f0b3a40fc45cc5e6d41b26d1caf6ee7d |
File details
Details for the file refcuckoo-1.0-cp36-cp36m-win32.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp36-cp36m-win32.whl
- Upload date:
- Size: 10.4 kB
- Tags: CPython 3.6m, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3738eab4b1c213bd5aea13713f7d384615959664c8b0151e6c9c0faed43bc31d |
|
MD5 | 9bddaebcedb2311a8347a6e3624ac00b |
|
BLAKE2b-256 | 339f699ea0dc4074a26c6bb4c3fb7a2e8815a36321369761ccaceadec909b22a |
File details
Details for the file refcuckoo-1.0-cp36-cp36m-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp36-cp36m-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 611.4 kB
- Tags: CPython 3.6m, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4afdbb3bfce04f916a64e22d6eaebc69d494674bb4cd6b2806409c967f2fa055 |
|
MD5 | e1272c5b5608e0b9fbdc0c80215f4d5f |
|
BLAKE2b-256 | 8fefd6aa282a0a2d56215679e93125c6f3a1df74229087cd02e0991b37bc97d2 |
File details
Details for the file refcuckoo-1.0-cp36-cp36m-musllinux_1_1_i686.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp36-cp36m-musllinux_1_1_i686.whl
- Upload date:
- Size: 665.4 kB
- Tags: CPython 3.6m, musllinux: musl 1.1+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58bfa60f7c7e53076bb2a0eab21272a1d383c98181a777478b41558d2395c982 |
|
MD5 | 403778fa444432a44b0ea6c9302b7dd4 |
|
BLAKE2b-256 | bf0e7c621b27e160df16f206e732d6b6716f86184de95116c2f209ddcda7b71a |
File details
Details for the file refcuckoo-1.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 57.9 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.5+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cf2063dc2492ee54c13c9774fde6d75a53ece8cb11ffcdcee358d7323fc3afac |
|
MD5 | eb0907c0b613ef5b7702329f8ba24610 |
|
BLAKE2b-256 | faa17e765537f44cc8950b62276476c720189820cfc2e5fdbe4b479e20262e8c |
File details
Details for the file refcuckoo-1.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
- Upload date:
- Size: 58.5 kB
- Tags: CPython 3.6m, manylinux: glibc 2.17+ i686, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | afd5c85e59b5fb9fbe9594b144e5905817c18dcc52ed5d550301a49875c464a9 |
|
MD5 | 9a13562c7ff0b643fe2737c3398e1134 |
|
BLAKE2b-256 | abd94b116d08a6644bcbfee981c0dfc29192276eef2da44ac14a8ee95bda164f |
File details
Details for the file refcuckoo-1.0-cp36-cp36m-macosx_10_9_x86_64.whl
.
File metadata
- Download URL: refcuckoo-1.0-cp36-cp36m-macosx_10_9_x86_64.whl
- Upload date:
- Size: 9.8 kB
- Tags: CPython 3.6m, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.1 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0dc43bb6e66f91e3e5c6cd9c99ee1e845ea47d65c8b2f6bc41071c82ce37637e |
|
MD5 | 6afcd58b6e113312619317b88b1fb99a |
|
BLAKE2b-256 | 839a579617e96342dd83b6f4cb3be03f2db5054c08767a44b672c133189f8cc7 |