A library for fuzzymatching
Project description
floof: simple fuzzymatching / comparison library
What is it?
floof is a Python package that makes fuzzymatching easy. Fuzzymatching is a common data task required whenever two strings don't quite exactly match. There are many algorithms to calculate string similarity, with dozens of disparate implementations. floof aims to collect all of these in an easy-to-use package, and reduce the boilerplate needed to apply these algorithms to your data.
Usage:
Dependencies
- [pandas - Output ]
- [scikit-learn - Used to implement TFIDF]
- [sparse_dot_topn - Fast sparse matrix multiplication]
Installing
The easiest way is to install floof is from PyPI using pip:
pip install floof
Running
First, import the library.
import floof
Floof provides two classes: Comparer and Matcher. Both are instantiated the same way, taking as arguments two Pandas Series, an "original" and a "lookup", although in practice the order doesn't madder.
matcher = floof.Matcher(original, lookup)
comparer = floof.Comparer(original, lookup)
All functions in the Matcher class return a crosswalk of the original strings and the best k
matches
from the lookup strings. The primary convenience function is floof.Matcher().match(), which
applies several different similarity algorithms and produces a composite score. Given an example
input of:
original_names = ["apple", "pear"]
lookup_names = ["appl", "apil", "prear"]
A matcher function would return something like:
original_name | lookup_name | levenshtein_score | tfidf_score | final_score |
---|---|---|---|---|
apple | appl | 90 | 80 | 85 |
apple | apil | 70 | 85 | 77.5 |
pear | prear | 95 | 90 | 92.5 |
The Comparer class is meant to compare strings one-to-one. That is to say, given an input of:
original_names = ["apple", "pear"]
lookup_names = ["appl", "apil"]
A comparer function would return something like:
levensthein_score |
---|
90 |
95 |
Performance
Fuzzymatching can be very intense, as many algorithms are by nature quadratic. For each original string, you must compare against all lookup strings. Therefore, floof is by default concurrent. It also can perform common-sense speedups, like first removing exact matches from the pool, and using a non-quadratic algorithm (TFIDF) to filter the pool.
TODO:
- Allow custom scorers
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 Distribution
Built Distributions
File details
Details for the file floof-0.1.11.tar.gz
.
File metadata
- Download URL: floof-0.1.11.tar.gz
- Upload date:
- Size: 70.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e71465ae16504f98083cc5f0de55290cf8d6a94f06c16226ebeb5a9ff8f5e3d0 |
|
MD5 | 694d23149b049e9b7279c1ce3a67cd73 |
|
BLAKE2b-256 | 181a3d98b087734c4109ceb8fc96ea979663fe2db95d461b9bf0de50f04a0924 |
File details
Details for the file floof-0.1.11-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: floof-0.1.11-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 582.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99cb2232007a4aa651449e6adc7cfddac4ddc5ab0805edb8678773ab2b9150d8 |
|
MD5 | b619eda458cc80213cf840cb58307898 |
|
BLAKE2b-256 | 23d193c3ba120014befea212cd401bce001596104a7e44636f233bd631fcc299 |
File details
Details for the file floof-0.1.11-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: floof-0.1.11-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 683.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eea9f5961c5346ad5ec9c13a551304cb66e079efb57d1adfd71a631d7661884c |
|
MD5 | 77188131159b72278e7b3791260e0f58 |
|
BLAKE2b-256 | 5c18419416e46ecf17ae4a916c17a279cf74beb524091ed79f7b5e927ab51368 |
File details
Details for the file floof-0.1.11-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: floof-0.1.11-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 695.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 015d7380bbaef91732620edfca90c3749de2487b10d36d817ae5714a627776b7 |
|
MD5 | fe63d6df5f6e44fd746c31e124f359e7 |
|
BLAKE2b-256 | d31456ed0e020d45d996b12aa26564d09228498a9cd3ee00cb3a39c4a5b0be11 |
File details
Details for the file floof-0.1.11-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: floof-0.1.11-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 568.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c6d0bd24818f8507dc49118f543a7130ad7cfdc8bd951e4f76d874483e94d8f |
|
MD5 | fb5b43a495bb81a24e443766617994ca |
|
BLAKE2b-256 | a7782fd3d35c55a738dcddb41f18d8a555db891ddc909ae95b3b4ce827b8a0ed |
File details
Details for the file floof-0.1.11-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: floof-0.1.11-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 560.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 77e0544d161762e2b06d67258faf0b2809c4115a0ecba54026b26ff93a723662 |
|
MD5 | 13b4ea71bc9608936c6ad39e4735c373 |
|
BLAKE2b-256 | f747c9b9458a98fa4065101516c4890ca91e1478afa48877e2fe227aee003702 |
File details
Details for the file floof-0.1.11-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: floof-0.1.11-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 614.8 kB
- Tags: PyPy, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b475401c1a44d5edc21bc76050ee4e2b2b0316ee5db7fb5895033aa0fe25a5e |
|
MD5 | 62cccf41f0a113152e808f598c8b1bdf |
|
BLAKE2b-256 | 3f41999ee4425fc85a500234262ad60f83ade220b2a910c24e1ddbae9015e5f3 |
File details
Details for the file floof-0.1.11-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: floof-0.1.11-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 582.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9a7e3ef7b1d56b73cb6785d43e02b8cd4b56d6dc00c9e513d563d02c1dc4688b |
|
MD5 | 205072559a81914d7535903e35512f08 |
|
BLAKE2b-256 | a78aa2f672d80eaf72e6d841eb6b898f94c24a5e938b23a26183bff2e8ab0349 |
File details
Details for the file floof-0.1.11-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: floof-0.1.11-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 683.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e2f18351cfa492549e8b058c98ca49762be0b7b5f33a401d7002f916bfa922a2 |
|
MD5 | 44c589e56101feb52eb9fa96ce2b7dc0 |
|
BLAKE2b-256 | 99ae8d560dc3ffc29b69c4c970c4cdc4e35cb9005980272153b20a1af8d675cb |
File details
Details for the file floof-0.1.11-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: floof-0.1.11-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 695.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 53081a49e896c8aa43746a32967ce16e3daccb05fe4d58d9619b3b9c4fb339d4 |
|
MD5 | ea53d75fda8518d40886ffcd1efd2d21 |
|
BLAKE2b-256 | 5fd5a498df20806b7ebccd308d91a910658900259a162ac2ffefd14956338777 |
File details
Details for the file floof-0.1.11-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: floof-0.1.11-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 568.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5e4382026490f48094c9b40c732cd7b424d24ea024e6825cfe928bb5361be5ec |
|
MD5 | 964c53957d45eec50c32003b276d66c3 |
|
BLAKE2b-256 | c44acdfb7fb8d628fbb37a30b5d2a8c78d0c3810cc71c065123577a4f0b4c082 |
File details
Details for the file floof-0.1.11-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: floof-0.1.11-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 560.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c9857a8ca354eacfd59b0aae0a09bee0ddf1e7109574425ebd79c9703087bb21 |
|
MD5 | aaf974f764404e04999f8be1876c988b |
|
BLAKE2b-256 | bbf17f31544d6131f6a37e809c6fdd72e8bbcda85158138baa626f84e0714f1b |
File details
Details for the file floof-0.1.11-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: floof-0.1.11-pp39-pypy39_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 614.8 kB
- Tags: PyPy, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ef676d797492951843e8e1438b2cd86ce12e3fefa5b2f2580cb7436b756db636 |
|
MD5 | 76c9833c87627674d87efeac28f8b474 |
|
BLAKE2b-256 | dd3cbaf7e8e8f6361d0633eb4a0f544191795baa9ca501442fb13bb6b49ad283 |
File details
Details for the file floof-0.1.11-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: floof-0.1.11-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 582.5 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 127911fc16214f71617fa03e506e5385bdbe397ae00d50a01ae6e4bf9f608629 |
|
MD5 | f7f13e1cc0a4dd345d3734313ca0bd0f |
|
BLAKE2b-256 | 733d73b392bb415185c4f0d817bc86d1a861362c24c151c6c77ff34f24088e86 |
File details
Details for the file floof-0.1.11-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: floof-0.1.11-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 683.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9d376e164e8f4fcc85c74bfd57e36b92f7348b02be2799d2529b40a067b62ba |
|
MD5 | fe854297ba1a6834e12220027444ca5c |
|
BLAKE2b-256 | 11b24ea618bd7debef060a195b0eb0378841e563d4b203144be3dd6df5c12725 |
File details
Details for the file floof-0.1.11-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: floof-0.1.11-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 695.6 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3e08af6b8acf857ef6924e8b83a72dfc0ab65d1a76459a5bc0f7d3d7819415fa |
|
MD5 | 68cb707ebeac15b16be9064042b46d7e |
|
BLAKE2b-256 | aa34defccbc5dddad8d28caeec78a171be1deb68c0bb29b4d270c7978cd1d2c2 |
File details
Details for the file floof-0.1.11-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: floof-0.1.11-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 568.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3bd713bab9f5198a5c105ea0fc76ca517083bfba56efd819fc00d0e716bb69ac |
|
MD5 | 69646ecf23017c22ef3e9fa4e3d46346 |
|
BLAKE2b-256 | 081dd878c7de1a5643f1c53234b03b74415e68844e12a690b7965ac24ca72e6a |
File details
Details for the file floof-0.1.11-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: floof-0.1.11-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 560.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc3e0825183a6b2d4c816257537ce1690ac957af43367855bbc3c63168d87bf6 |
|
MD5 | 9f8e2f7e9ca900c53e8e69009889a5c1 |
|
BLAKE2b-256 | d1fdefda621e2eda5f0b0d6b64a3bb185a0fdccfe7e32050480b203aca0dae1f |
File details
Details for the file floof-0.1.11-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: floof-0.1.11-pp38-pypy38_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 614.8 kB
- Tags: PyPy, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0318ca6f25539599dd3f9e845efd0a79c886904fa3363edfadd0a22b7739ede0 |
|
MD5 | 5bdc8b6ef3e8805ed4381a9737f18c2d |
|
BLAKE2b-256 | bbbdf97f05dbe1af6f2d11788ed2d1e59040ce6db3af320c32b7232475121019 |
File details
Details for the file floof-0.1.11-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: floof-0.1.11-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 584.1 kB
- Tags: PyPy, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5aadc778282ab55100e7c54ef9c03726aeb14a3af67ecddc5aa0c5195b0f0187 |
|
MD5 | f3c97b6f3116988699f6d0d7aa03d7dd |
|
BLAKE2b-256 | 628bd0234d13424f883e551a71585634f13ef6738528f0497fa43d4d24865db1 |
File details
Details for the file floof-0.1.11-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: floof-0.1.11-pp37-pypy37_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 686.7 kB
- Tags: PyPy, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db7fc94c01e2be93b18733c34f8dc90dca0076f75b00b936e0d51473ce5e2e28 |
|
MD5 | 3153ea4522324d30bb4aa5d6f483ea1e |
|
BLAKE2b-256 | 7b3d13d3a3ed08928e9e39bddc7a30863096410a7fb3ed6fe28d06f55c04ef94 |
File details
Details for the file floof-0.1.11-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: floof-0.1.11-pp37-pypy37_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 697.0 kB
- Tags: PyPy, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ecaad72c0bbb1883663171610847476f0bab3624be71c42b5b97738ed290da9 |
|
MD5 | 4cbb2c4e34692133b87905d6f9cec190 |
|
BLAKE2b-256 | 810825c201cd7f3d4ed93f1e578d5f7be408298360a94193970639687e9ee075 |
File details
Details for the file floof-0.1.11-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: floof-0.1.11-pp37-pypy37_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 569.9 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e6e17ca4b8d24c4dd21797ae7be9108e54c72f5a6947037df6488d05eb4aaa53 |
|
MD5 | 55e77e7384d13fcf94c5db5dabddac6c |
|
BLAKE2b-256 | 8f13a3f38e314ab76ae5d66f7511b83980fda390b222f64fb09feef4ed924dc1 |
File details
Details for the file floof-0.1.11-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: floof-0.1.11-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 561.4 kB
- Tags: PyPy, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dba1ece4a7100fe2026fa2620d73fe5479908a485769c39f180a1b8f68cbb7cf |
|
MD5 | b20839a3d77075b962a8b558f0eb1cdd |
|
BLAKE2b-256 | af8f5023e1ee89eef2a9743415cd739be298fbe0ce371c901936356e7bf151a1 |
File details
Details for the file floof-0.1.11-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: floof-0.1.11-pp37-pypy37_pp73-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 616.1 kB
- Tags: PyPy, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 776e3add69c7462fdf2511451ee501fb550b6dae45819a6de9a9a5270ba75182 |
|
MD5 | 9e5c0971b06d69f648aff5dc32f21d62 |
|
BLAKE2b-256 | fbb8df715d6855e543de2af2981445e35bfc264019c7abf83c75782f0b1c00a4 |
File details
Details for the file floof-0.1.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: floof-0.1.11-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 582.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 906fbc739bd452a192c02a6b3b3917b1f88f71ddd87b3461b2b5a2d659aff660 |
|
MD5 | 903b1adb123e807b77efb596912d6ce5 |
|
BLAKE2b-256 | e983d133c3ce018be0f8d45adfb974da6857ac21e05139c2684d68ce702598f0 |
File details
Details for the file floof-0.1.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: floof-0.1.11-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 688.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bc69013c549fe71a11ff2d13f4376b6c9a017abab6733eeb3cba1a9544dba879 |
|
MD5 | 4a5090e41c8bb2321f57126ed014e883 |
|
BLAKE2b-256 | 5f803422d384efa6ef2a40c11ba01d4803682ea4693c357af37bc93001cf9acd |
File details
Details for the file floof-0.1.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: floof-0.1.11-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 692.1 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a6327f7fb2f4dddb49e6fb69735f0e8b40d8906ee7531b80409f14161cc5ae9 |
|
MD5 | d6461612bdfd7e39e7a6afd60cc1a8a2 |
|
BLAKE2b-256 | 697a58ea57731f4c6cb442e6de54da55c793253e393b76e71720bdbabe2910df |
File details
Details for the file floof-0.1.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: floof-0.1.11-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 567.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d5b4557dcd62992631ef3966d894593ac8c748b625ff0abca57b67a0215c1dfd |
|
MD5 | 51cd3fd3c8e48760f10976b283881443 |
|
BLAKE2b-256 | 59311c7f9605c08fa3d755548cdede6ff514d6b5b0c6abbf55146fb40e6c1736 |
File details
Details for the file floof-0.1.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: floof-0.1.11-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 559.5 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3b9ce8066ba4a9ed41d93d535751dc18d23cdc0892ffc9f6c68ec8d8fbd7dd6 |
|
MD5 | 228b9067b677fa6a4a081eaefcf7dbe1 |
|
BLAKE2b-256 | dd4b5ad9ce06005b2de92ce53bdb2f3039776940ee80dfa65668e61b9f518f5e |
File details
Details for the file floof-0.1.11-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: floof-0.1.11-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 613.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cbae22b3442c877fc25541be21f4b5c17ddc65db87be62616f732db4daf762ff |
|
MD5 | c9c2b9758f7a69986760cb69f5394488 |
|
BLAKE2b-256 | 5d2da4f4fc5e7606bd5f4cd97b096cf6693b4a33215784a5073460f95c267788 |
File details
Details for the file floof-0.1.11-cp311-none-win_amd64.whl
.
File metadata
- Download URL: floof-0.1.11-cp311-none-win_amd64.whl
- Upload date:
- Size: 459.6 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 65f58fc3da7bae397bfb705a6b7fd559fd69a88cb4041cc243910da1fbc5a85c |
|
MD5 | c747155b24978f1d72a3eee19e16fd71 |
|
BLAKE2b-256 | 0f44e1d53d214d543d07da64550d773e2da8167874f80ca935a5fe1f6f13d3b3 |
File details
Details for the file floof-0.1.11-cp311-none-win32.whl
.
File metadata
- Download URL: floof-0.1.11-cp311-none-win32.whl
- Upload date:
- Size: 450.5 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 92675adb8f46a5eb96f22e3ea5cdb8253423f4e4408ffacb43a0fc1c03c1ae52 |
|
MD5 | 6e7758060482b0fe612b858ec65ef642 |
|
BLAKE2b-256 | 7b9c9e2e9838327dfd6f2d719efbd86c24daae5a374e2a4639f138375047936b |
File details
Details for the file floof-0.1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: floof-0.1.11-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 582.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 508dc632a8a6cf9abe4c74797f431333f301b096b328a3c32cec703049df456c |
|
MD5 | 82df8559f7e1cc1e778ea4390148e5ca |
|
BLAKE2b-256 | 2049a4ffc518c7bdbc3d1956fdf0fef97e2ef88c3188d6e3502ad05befcddc6d |
File details
Details for the file floof-0.1.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: floof-0.1.11-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 683.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2fa4f4c53b8133e452978ee356df83c4eeb27ede141aff2f2ce7a07c447ef312 |
|
MD5 | 4551c34eab836d115035ff79f4ad0048 |
|
BLAKE2b-256 | 35b85b8ba71f100d7a05cab3ec993d98664c5b965d6a73b72ea04f586cc1d557 |
File details
Details for the file floof-0.1.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: floof-0.1.11-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 695.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b9d0965ca281e96c6036b8fad96564997fbc9f008307c71e6548ae9f9b4b27d |
|
MD5 | c2d8260c56ae00ba73e31fe994c1e0be |
|
BLAKE2b-256 | fa9228909f93c91be63e9224cb31d9641c58227b659b2af9b776f3ee4cefdb43 |
File details
Details for the file floof-0.1.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: floof-0.1.11-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 568.3 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2e64f7c1f4cdd925d554d477f270da1013983bec1ffc6aeee6a71b25a3f3def |
|
MD5 | e529afb06ef7c178ff203c84d71ef171 |
|
BLAKE2b-256 | 40ffd1b141a27f4d2a374769ff8e43a388c927702e3703335b6bcb5630bde1e2 |
File details
Details for the file floof-0.1.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: floof-0.1.11-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 560.0 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 87332e0f85153eb9c81a7155de6d7cd9cea2990c4f03450d3c88dc971f3c82f3 |
|
MD5 | b7bd057a47a992f76ff83a2913181b25 |
|
BLAKE2b-256 | 0a458af84642877d4e5fab19898c9057f115d94cae2d00c9b452d8fe898fd4f6 |
File details
Details for the file floof-0.1.11-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: floof-0.1.11-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 614.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2a6b13451d96b7b14f51ff284d3d1979d13024c9ea296d236a057a82df0dab80 |
|
MD5 | d9322d76c8446ed5b1d25c8316d207de |
|
BLAKE2b-256 | 9cada1a04cb27ba70be24e2fdc2c916229404fc880b084e804db812f8c604ebd |
File details
Details for the file floof-0.1.11-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: floof-0.1.11-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 524.8 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5d0e3b3c2fedf049b15e3b1ff1f2be7618c7a874a180d8d3e33ac197212f6a93 |
|
MD5 | 0feca729a24a4abe941fbcde2fbe79d3 |
|
BLAKE2b-256 | ccc786d9dc46acf9192517c6bc84d4ca17863d367f5992aee2b9a851d6197cad |
File details
Details for the file floof-0.1.11-cp311-cp311-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: floof-0.1.11-cp311-cp311-macosx_10_7_x86_64.whl
- Upload date:
- Size: 548.3 kB
- Tags: CPython 3.11, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 14e06b3f19faa4f6a584c7c3e84ce36d9f406f91e408373a916903fcc3896091 |
|
MD5 | 1fa25a98c231771074fe76d56b2554c2 |
|
BLAKE2b-256 | 88e2e50cba09d1a511374866ea2f3abe364a9844d99e7df0699d1d1c8550e512 |
File details
Details for the file floof-0.1.11-cp310-none-win_amd64.whl
.
File metadata
- Download URL: floof-0.1.11-cp310-none-win_amd64.whl
- Upload date:
- Size: 459.6 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | edbfa89d8c0bcd23301e82e11aa9873b0314353bed190b453f86cf1fb4700c5a |
|
MD5 | 4788e94fe2ec1a99c756451e37f62ee1 |
|
BLAKE2b-256 | 8a0cfd234d5e795c34c3b42a63841bf9f8a6d644e6435216f27766e6eff3b9ec |
File details
Details for the file floof-0.1.11-cp310-none-win32.whl
.
File metadata
- Download URL: floof-0.1.11-cp310-none-win32.whl
- Upload date:
- Size: 450.5 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5306ca9b9bc841dd1bdbc9c4e47a93732fa4bde2769eabef3cd15fd36bcbe878 |
|
MD5 | 58c0dd354eddac94e9c756f31ac6082d |
|
BLAKE2b-256 | b2cf0c1e6db6c1a979f2bc6b688677ea931f96bf111238e5ce370bbf04680203 |
File details
Details for the file floof-0.1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: floof-0.1.11-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 582.8 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3bc0982a457e682a5d7a27b9d0bc13ab4b132e28cf95e7e78247fb3a02258d3c |
|
MD5 | feb95154720b900abad8bb23ffe6570e |
|
BLAKE2b-256 | 1c45d25ea3b5f108ffdaa96c8316fbf45d720c8493d2c7329a5a2948a5c13fbc |
File details
Details for the file floof-0.1.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: floof-0.1.11-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 683.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 70b14569dcabd6ce2bc0d7f0d52c9e7de71e0d40ec0478fff0380eaef199f8b3 |
|
MD5 | 9b8634c9933b8fafdd222ccd2a305ca0 |
|
BLAKE2b-256 | 020739af0674240e043ed1b8d49e7c6bd8491d9bd6905b7ae1120032b753143e |
File details
Details for the file floof-0.1.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: floof-0.1.11-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 695.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 321c41734d255aa047e778aa8b838e4d5c336741676213d2be0fd8b42701d48a |
|
MD5 | 79465f2ef5a92ee51963f1c68f3e9159 |
|
BLAKE2b-256 | b6f61e01ab960cbf64df69ef118ff442821f067850952369726c7deba4b34d8f |
File details
Details for the file floof-0.1.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: floof-0.1.11-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 568.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 80dcbfb379c66a6a74bdfce728e74383af8c1ea3e8f415198442f16457474a24 |
|
MD5 | 473dceca1e7618e9e943814a27e90e9f |
|
BLAKE2b-256 | 23d55330591555d77ae5b8dd8a121d29012edf248065db6528ce96e648385ab3 |
File details
Details for the file floof-0.1.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: floof-0.1.11-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 560.0 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 03b8a561d3ba2c8d4fc7c131e02929e4aad1fc3bf101a42ba8caf3afcd41bae9 |
|
MD5 | a0001b75cfb45e116e829c65fd5192b3 |
|
BLAKE2b-256 | f8bed02b86a9ab483ba81e7c4817b098b2c59e02c175b1bb1db35018f3bb5de7 |
File details
Details for the file floof-0.1.11-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: floof-0.1.11-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 614.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9bb2e1023a118c09f219550b86fe9f3cb4daa2beb73411641d44c2f528299003 |
|
MD5 | 3a5b1d94800598595039e1662eeaf734 |
|
BLAKE2b-256 | 334786e3222977be9464b2b91a2f534f2439715b93cbd72e0527d7e3d484393b |
File details
Details for the file floof-0.1.11-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: floof-0.1.11-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 524.8 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 362f3f68f189bc15c5d04121f87420290f2cee1f68ca5ccf26918905273a307b |
|
MD5 | a695445a29edb2e51996a22c28d74a52 |
|
BLAKE2b-256 | 2d9f1e6a255d05fb5b39d14c8053287c6bd5b773296f0345fd48c7c03e45862f |
File details
Details for the file floof-0.1.11-cp310-cp310-macosx_10_7_x86_64.whl
.
File metadata
- Download URL: floof-0.1.11-cp310-cp310-macosx_10_7_x86_64.whl
- Upload date:
- Size: 548.3 kB
- Tags: CPython 3.10, macOS 10.7+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d3c74864d91ed7317e6fcd9c32017f3f0801c5951ebabe76f1eabe0854015c91 |
|
MD5 | e7a042ab6db30a4eed6549af0e8ebb7d |
|
BLAKE2b-256 | e27ab4bae550c716071a1fc6315864747ecaf3c7bca7f6c1e49d4fa6fa62f074 |
File details
Details for the file floof-0.1.11-cp39-none-win_amd64.whl
.
File metadata
- Download URL: floof-0.1.11-cp39-none-win_amd64.whl
- Upload date:
- Size: 459.6 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a03c4124a4cdefc8e4bed8c1269d45e6e86cf6f7e4923105f53574f53d29f310 |
|
MD5 | a694319a2d7a2fc156b43fbd0ad211c8 |
|
BLAKE2b-256 | ac7d090cd2b7c3498d0ef827d9d657c642f438a4b015201454cc22f9904e8d40 |
File details
Details for the file floof-0.1.11-cp39-none-win32.whl
.
File metadata
- Download URL: floof-0.1.11-cp39-none-win32.whl
- Upload date:
- Size: 450.5 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8167f7a54cfd7c4813954d4e68d0e7bf384803cb8b3bc69a93a7a3d21b50156b |
|
MD5 | eca67423391032db0dc10474374278b0 |
|
BLAKE2b-256 | c9b1e60c1b27201a8a07daf61621098bdc3f006cd1a39497bde5592019b8dbd0 |
File details
Details for the file floof-0.1.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: floof-0.1.11-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 582.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2cb7c731f8abb95391a35a73fc0a5929d1f540b4e3c09ca0a69f7b7c9d4c90d3 |
|
MD5 | 118c21e7b6b006ba7eb6b4ebd081b88a |
|
BLAKE2b-256 | 437ead2e38d577159d42460789004e2f77115cb07f33fec59abd20452563a960 |
File details
Details for the file floof-0.1.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: floof-0.1.11-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 683.7 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c1a69de2a4f7d16338a96bbde82d2735f41fa4da12adf0f72028c1d6cec277e |
|
MD5 | 3b007ba74b1e8a6c179a90c5f9abd9e8 |
|
BLAKE2b-256 | 5cb83a1b5d95826059e82c5c51077bbcca68a02e95d5549359b26e7fcd0faba7 |
File details
Details for the file floof-0.1.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: floof-0.1.11-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 695.2 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7007b125b8549d65c040ac516ea1909826babbfdf55186ff20aa9fb9e8b979a9 |
|
MD5 | 5c44c10349a6695fa419f2f38a960345 |
|
BLAKE2b-256 | 25634fd33ff4d341eaa505b1a662cacec98390ed605f8bb666dea274d397d53f |
File details
Details for the file floof-0.1.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: floof-0.1.11-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 568.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1a710c7fbf3c929680dcde172245ad04a90249ebee8e5a12d0120c9a412b0ea5 |
|
MD5 | 499d2128dc2454762919e28e9f5b303a |
|
BLAKE2b-256 | 13c17e0125c5b0787923813c71d138d2c44c20e47f815f9261808522cbc9601b |
File details
Details for the file floof-0.1.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: floof-0.1.11-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 560.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | faa5644baa5de54e0d397972561eba6eb4a1f9ed49ea4967835822ed613fdc3d |
|
MD5 | e62d12de649a021caff5b78af388938b |
|
BLAKE2b-256 | 0a645b7ece650758263db5cd2547693132f9f868c557cde78136535bae46fb0b |
File details
Details for the file floof-0.1.11-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: floof-0.1.11-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 614.6 kB
- Tags: CPython 3.9, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b1f0b780a53250c6a9f492c64023ebbae70084948fa4e52f9f5edab3ce21608d |
|
MD5 | 94d5eea07880ff4ceff8f2719cec59af |
|
BLAKE2b-256 | a53222ac0d6e7b088347b14d9e5ea02e63d34ac818cac5277f437de50f9e0e15 |
File details
Details for the file floof-0.1.11-cp38-none-win_amd64.whl
.
File metadata
- Download URL: floof-0.1.11-cp38-none-win_amd64.whl
- Upload date:
- Size: 459.6 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1ac5ef7ce39467c539e92b390003dcf26de4fa6cbfc1bab6995c177127309513 |
|
MD5 | 8d47147383e90188b715b580c0368167 |
|
BLAKE2b-256 | 2f6877f715a7b9125ad28d71e10a98202828cc48e2332f3a4b1e711c5e5186fc |
File details
Details for the file floof-0.1.11-cp38-none-win32.whl
.
File metadata
- Download URL: floof-0.1.11-cp38-none-win32.whl
- Upload date:
- Size: 450.5 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a6ac9ea8d9671f11b8b2e0c2650ba7e79b3b72529e0c7148b5382dda63705fe |
|
MD5 | 2f8d1c84549c61347a067f17cfac4cca |
|
BLAKE2b-256 | a0b58fada06d6d1e59323a73c0e1208d8536363d107ef03220a5b5cb47f14202 |
File details
Details for the file floof-0.1.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: floof-0.1.11-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 582.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b6d4a79d6d95b964be5ae57579c138f94076b4601938ba0fc724d0adfd7ca251 |
|
MD5 | eae446d3554e9b689d06df72a0efc9f9 |
|
BLAKE2b-256 | d25c950031b67a07db2aa92bff8bd1c3a7347092fd6f854437fc1df4bf3bb817 |
File details
Details for the file floof-0.1.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: floof-0.1.11-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 683.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4f10c48b4db7c20cd5d85145421f3427dfaa342ff76c4bf8bd3cf4614c6749c6 |
|
MD5 | 2c9956469b189533e7aba6e24d0a38eb |
|
BLAKE2b-256 | 337497802087c36cd19fe3d32b938751146240cde4272aa145f92ec8ee8e1b3b |
File details
Details for the file floof-0.1.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: floof-0.1.11-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 695.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39d2967e2dc3bf5b65414bae80703d26b41374b0a28a888780b38aadc7a71bdf |
|
MD5 | 8acf0bbc4c6a51104016dc804f4563a9 |
|
BLAKE2b-256 | a8169d2d66c5a4957a29e6d0a82d43e25d54a8ba69ec7a79f9fd43aba006e55c |
File details
Details for the file floof-0.1.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: floof-0.1.11-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 568.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 31094b855f26c46c4a632e82ab600bced1f0565ebd9a4427731a3d10f8a9d480 |
|
MD5 | 9f5ffec7719d4e001384b7235b519025 |
|
BLAKE2b-256 | 907bdb774717b63283371adfe90105d7af8e972a9d666225e581626fe5b07ad0 |
File details
Details for the file floof-0.1.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: floof-0.1.11-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 560.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 91b7e0bfe6a23721da98d3dfbd298cb9031f0a440de68e87b59ec02d67278c49 |
|
MD5 | d0b63469ff5736c17c11a710ce6495e8 |
|
BLAKE2b-256 | 03c5ff4d672ec18052394a005a90035bbf322f86131514b3ae1e12a6400feab3 |
File details
Details for the file floof-0.1.11-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: floof-0.1.11-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 614.6 kB
- Tags: CPython 3.8, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a457dd65c716ef87b737df25ddcf1b19e6f8e071c62e44d461480d43b8cea52b |
|
MD5 | 41c832c6e2b65bae7a3067646f7a005d |
|
BLAKE2b-256 | f0fa19faaf159faea9cd879589a1347f1345d084ec4cf2c356e607424ebf6b6a |
File details
Details for the file floof-0.1.11-cp37-none-win_amd64.whl
.
File metadata
- Download URL: floof-0.1.11-cp37-none-win_amd64.whl
- Upload date:
- Size: 459.6 kB
- Tags: CPython 3.7, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f62661ac25bfa42f4dfc0725ad4c76c62000a359f829f34fb212fb838c4911ca |
|
MD5 | eec7e9c8c1e37e96d62ebd570e5c3b2b |
|
BLAKE2b-256 | 1e12074516918834364a8f6ed2e243e7fecf391216935d6c1148607e50cea98c |
File details
Details for the file floof-0.1.11-cp37-none-win32.whl
.
File metadata
- Download URL: floof-0.1.11-cp37-none-win32.whl
- Upload date:
- Size: 450.5 kB
- Tags: CPython 3.7, Windows x86
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 43ced94d930d3a10b3180958b54680f74a08dcf57a01425b196a66271b9f0949 |
|
MD5 | c5f39810840b1b0da5905762e94fdc84 |
|
BLAKE2b-256 | 5bb6f74b5437fa31239e135b74a5538776b63413aa74aa39f52da98c8ced9db1 |
File details
Details for the file floof-0.1.11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: floof-0.1.11-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 582.8 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a294a78b571043bab47814403f1cb237ca61479013cecf57c3c06d4b80b8189 |
|
MD5 | 59a6489f4f9e821d8476c8672c93e79a |
|
BLAKE2b-256 | 83e790f44b0a394f3b170346eac78bdbfb1b6387ef33d2461c58a3a865f55cbd |
File details
Details for the file floof-0.1.11-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: floof-0.1.11-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 683.6 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 83a2d96bfcfd2984c11bc9ac5cf12b8c6cdc2454588f9b46dffaa1af474f7bc3 |
|
MD5 | 0986bd743f42a9713f0140c54fe7ae11 |
|
BLAKE2b-256 | e06dc345b117f2b75919732ced2606221c09ebdaecfb27e7d43d96db47183817 |
File details
Details for the file floof-0.1.11-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: floof-0.1.11-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 695.2 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eda9fa9c1e9e6a171bd276e64287c58d0d50afdfc5269c0cb9423e57e453349d |
|
MD5 | b59e318f9dd7211b0c0d07f730df6ee4 |
|
BLAKE2b-256 | 7379c9bfa5dbcf132e8d9a7913ed99348af8d72206c7cf14b8436994d259af4c |
File details
Details for the file floof-0.1.11-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: floof-0.1.11-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 568.2 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9f88b509c8e3f1a4c328e1c42ec9f3208f7eee9a9dcd7ea50c2acffda3de95a |
|
MD5 | 05554a1f218bd0f4f9d93822f8c2dd08 |
|
BLAKE2b-256 | 89e5fd421dfec4d9d9ea258aeb98ed416c8b8a380536ed6979f599d31b2e744d |
File details
Details for the file floof-0.1.11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: floof-0.1.11-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 560.0 kB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9abe0a827a632a96a2638bd3446aa62f2d5042df2fd5799311a0bcd2193b7b7 |
|
MD5 | b101cffc791ac4efe5d15875f45373d5 |
|
BLAKE2b-256 | a5228573e706cf977d54a85b5cbd9fe5ab13ec9acced04d3f4b9deb2aeb009b1 |
File details
Details for the file floof-0.1.11-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
.
File metadata
- Download URL: floof-0.1.11-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.whl
- Upload date:
- Size: 614.6 kB
- Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | de7b40b456969160eed8f1885c5d748ca2dc533dc6383f6ae5c1c4ed10f4fd7b |
|
MD5 | fb7a3b636eb74063eafcaf84a35f23e1 |
|
BLAKE2b-256 | 478dcc5502f0f63bc766efceb481e49470ecbafc80a0b4e5b306d6ea18717c4b |