Skip to main content

No project description provided

Project description

Scikit-Bloom

An excuse to play with Rust, but also a neat trick for sklearn!

This package contains some bloom tricks for text pipelines in scikit-learn. To learn more about this trick, check out this blogpost.

You can install it via:

python -m pip install scikit-bloom

And you can import the components via:

from skbloom import BloomVectorizer, BloomishVectorizer, SlowBloomVectorizer

BloomVectorizer().fit(X).transform(X)
BloomishVectorizer().fit(X).transform(X)

The BloomVectorizer will use rust under the hood for the hashing to construct the bloom representation. The BloomishVectorizer will just run the HashingVectorizer from scikit-learn multiple times in sequence. The SlowBloomVectorizer is pretty much the same as the BloomVectizer in terms of features, but is implemented in Python.

Benchmarks

I ran a quick benchmark, which seems to suggest the approach is pretty speedy.

Show me the code
import time
from datasets import load_dataset
from skbloom import BloomVectorizer, BloomishVectorizer, SlowBloomVectorizer
from sklearn.feature_extraction.text import HashingVectorizer

dataset = load_dataset("clinc_oos", "plus")
texts = dataset['train']['text'] * 10

trials = [BloomVectorizer(n_features=10_000), 
          BloomishVectorizer(n_features=10_000), 
          SlowBloomVectorizer(n_features=10_000), 
          HashingVectorizer(n_features=10_000)]

for trial in trials:
    tic = time.time()
    trial.fit_transform(texts)
    toc = time.time()
    print(f"{trial.__class_.__name__}: {toc - tic}")

In this benchmark we're creating a

Approach Time taken Description
BloomVectorizer 1.562 The speedy rust implementation
BloomishVectorizer 2.111 Using sklearn's implementation sequentially
SlowBloomVectorizer 5.259 A pure python implementation
HashingVectorizer 0.695 Using sklearn's hashing vectorizer to only hash once

You can also choose to run the BloomVectorizer by just hashing once and it seems to be competative with the HashingVectorizer.

Show me the code
import time
from datasets import load_dataset
from skbloom import BloomVectorizer, BloomishVectorizer, SlowBloomVectorizer
from sklearn.feature_extraction.text import HashingVectorizer

dataset = load_dataset("clinc_oos", "plus")
texts = dataset['train']['text'] * 10

for feats in [3000, 5000, 10000, 20000, 100_000]:
    trials = [BloomVectorizer(n_hash=1, n_features=feats), HashingVectorizer(n_features=feats)]
    for trial in trials:
        tic = time.time()
        trial.fit_transform(texts)
        toc = time.time()
        print(f"{feats}: {trial.__class__.__name__}: {toc - tic}")
Number of feats BloomVectorizer HashingVectorizer
3000 0.6071 0.6864
5000 0.6092 0.6947
10000 0.6123 0.6911
20000 0.6124 0.6918
100000 0.6108 0.6938

I want to be careful with suggesting that the BloomVectorizer is always faster because the HashingVectorizer comes with way more features. You can build n-gram representations, just to mention one example, which the BloomVectorizer does not do. But it does seem like it is at least competative, which is neat.

Important

In fairness, while this trick is interesting ... you might be fine just using the HashingVectorizer that just comes with sklearn. This project works, but it was also an excuse for me to try out rust.

It's a nice motivating example for me to learn rust, partially because it's a tangible example from a field that I am familiar with. But it's also been a relatively low investment to rewrite an expensive bit of code in rust.

Development

These are mainly some notes for myself.

To install all of this locally;

python -m pip install maturin 
maturin develop
python -m pip install -e .

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

scikit_bloom-0.2.1.tar.gz (8.0 kB view details)

Uploaded Source

Built Distributions

scikit_bloom-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

scikit_bloom-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

scikit_bloom-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

scikit_bloom-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

scikit_bloom-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

scikit_bloom-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

scikit_bloom-0.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

scikit_bloom-0.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

scikit_bloom-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

scikit_bloom-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

scikit_bloom-0.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

scikit_bloom-0.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

scikit_bloom-0.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

scikit_bloom-0.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

scikit_bloom-0.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

scikit_bloom-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

scikit_bloom-0.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

scikit_bloom-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

scikit_bloom-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

scikit_bloom-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

scikit_bloom-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

scikit_bloom-0.2.1-cp312-none-win_amd64.whl (118.6 kB view details)

Uploaded CPython 3.12 Windows x86-64

scikit_bloom-0.2.1-cp312-none-win32.whl (116.0 kB view details)

Uploaded CPython 3.12 Windows x86

scikit_bloom-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

scikit_bloom-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

scikit_bloom-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

scikit_bloom-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

scikit_bloom-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

scikit_bloom-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

scikit_bloom-0.2.1-cp312-cp312-macosx_11_0_arm64.whl (243.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

scikit_bloom-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl (242.5 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

scikit_bloom-0.2.1-cp311-none-win_amd64.whl (118.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

scikit_bloom-0.2.1-cp311-none-win32.whl (116.4 kB view details)

Uploaded CPython 3.11 Windows x86

scikit_bloom-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

scikit_bloom-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

scikit_bloom-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

scikit_bloom-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

scikit_bloom-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

scikit_bloom-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

scikit_bloom-0.2.1-cp311-cp311-macosx_11_0_arm64.whl (243.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

scikit_bloom-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl (242.6 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

scikit_bloom-0.2.1-cp310-none-win_amd64.whl (118.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

scikit_bloom-0.2.1-cp310-none-win32.whl (116.4 kB view details)

Uploaded CPython 3.10 Windows x86

scikit_bloom-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

scikit_bloom-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

scikit_bloom-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

scikit_bloom-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

scikit_bloom-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

scikit_bloom-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

scikit_bloom-0.2.1-cp310-cp310-macosx_11_0_arm64.whl (243.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

scikit_bloom-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl (242.5 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

scikit_bloom-0.2.1-cp39-none-win_amd64.whl (119.0 kB view details)

Uploaded CPython 3.9 Windows x86-64

scikit_bloom-0.2.1-cp39-none-win32.whl (116.6 kB view details)

Uploaded CPython 3.9 Windows x86

scikit_bloom-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

scikit_bloom-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

scikit_bloom-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

scikit_bloom-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

scikit_bloom-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

scikit_bloom-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

scikit_bloom-0.2.1-cp38-none-win_amd64.whl (118.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

scikit_bloom-0.2.1-cp38-none-win32.whl (116.2 kB view details)

Uploaded CPython 3.8 Windows x86

scikit_bloom-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

scikit_bloom-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

scikit_bloom-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

scikit_bloom-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

scikit_bloom-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

scikit_bloom-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

Details for the file scikit_bloom-0.2.1.tar.gz.

File metadata

  • Download URL: scikit_bloom-0.2.1.tar.gz
  • Upload date:
  • Size: 8.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.4.0

File hashes

Hashes for scikit_bloom-0.2.1.tar.gz
Algorithm Hash digest
SHA256 308c3f1a12d2d15bb9939b868f097b3d3535757b29645ef669cf766916fae62f
MD5 5c7b01eb7aebf8388ff17e709a1056ea
BLAKE2b-256 86988e5c70407796143e1084df3cd467d271478d432ad14ceeac6e5446326316

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5129d8c370a647e24446ff6a43524e3f50eb68da1199aabbbe43b83604c487ab
MD5 e931a44983ba59213e4e675c883f5c53
BLAKE2b-256 1b4bc268859c506f71656671f27aea228081bccde6b9c9b697d2d6d4a3b39059

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 562f49341bbac5e50f25d74768a8768cde1e06ae0c3b97a3fe8c294e10d16167
MD5 d0c5ddee9ef2236d70c2ffad5f70aa88
BLAKE2b-256 31d96f95f9fc454a56a59663807e2b8ddc5b7bc2483acff1575af2fa03248318

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 498fa10c3246161e8cf98983f65b536bedc7a9efd71f4e100b6d5f2571ea47f7
MD5 fa89540230ec2f7c2839f881bbcb8069
BLAKE2b-256 19fe739435d58fb2851a14561fb3cb29528460216b2b72a55c73d386d32423c4

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bad096dd0218f6cc89a13956e71aac950af294e3f85a50480847311ad4dd6cb6
MD5 4fa29cb30e48b39e78319e69a05e4198
BLAKE2b-256 4af597d567b8e80fa5764655c5377cb7c284c8ba863cd410fd459fb9f611d00b

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f18f48f7ea8d5b441684b76bd6bb6be8181c69760de6892ff31b099e15187a27
MD5 b9391397895293098ca2054b95da1416
BLAKE2b-256 334d7348620f75e529c0ea76f454c94f5533b5e94a8d3f45d7a08d1af2f6ad94

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8b8b0d599c09bfb0d44aecbc702ec5dfa360db56f44f179db4051c0e9b75444e
MD5 7954b3454025e399bf2cd7e7bc555749
BLAKE2b-256 f5f866d31a49fe3d9f855db509ddab65f8209ea809775430897428cea12ba1f1

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa055888d792c288f026a5ca005a58c5f986ae4c1edb89cd6f7a7fa6c86ef958
MD5 1efb27a8b98f1976aa7c937995a802cd
BLAKE2b-256 e097e21592844b606f73418a95f473c5d8d873128b7ecb0da4d54528d8b2aaa6

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1fd8d8ef399fcab75fcf20b1af0c3fbf0fe669c7824076d1c31d93f2fb37cbeb
MD5 026fe58e3b411d9bb6672cbf400937a3
BLAKE2b-256 398723b5d76839f190bb31208db25ba5b31bd7a7e7f4a5c5f2b822175bf8b90b

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d88af89ab3354a26a5a23bed3ce523723cf3f7092a9cb1a199b5075dd9e8f988
MD5 5977737a32e30744c824e9142b5d1c15
BLAKE2b-256 4a1cef58003218abb5978b0c6271f64fe228fb8f7974201a500bb8c6dfc29e45

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c8f27fdc19aa7dfdc2552a501c32e587593fd3c5ee9566d2d0f5f71d294c9d4e
MD5 3d9ab2b38e5bf209d5554df1551ff879
BLAKE2b-256 ec4f85943a673dc04465ae9a2a6758f330ea76303d89b0e06064a417b4312349

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4189491cf1af6d1ddb689d2a7420bbcd9750b57cb659cfb7a2896facf33840b
MD5 d5229d6194734789fe592c44882ead09
BLAKE2b-256 81e8244a74c6e31a0ede795a93117e59caa43f2a1c46a17f7cef29958410d783

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 70108b87acdeda428971e70ae65520b8a430ab70bd979d4c17516b94fa4a2556
MD5 a7c64979770fd11a6eba105af87c7630
BLAKE2b-256 b4438f05a4ca8213c06b02f506dc51621796d53ce6cda76d6f4414abbfec52ce

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d860ddea704118233d70e3b9fe68377c4c4f2771d2bdf21f7814d758b68e1397
MD5 7361959488ecf60062204d0bef2130d4
BLAKE2b-256 d259a3fbab3001c574f02aa54d81be68e5cbdb67d610cd016b40db6c198610ef

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2fc9aa7260a00d5661eea53c906083fb86992c485c4f1306309947b5f6a4f612
MD5 5fed0b06ebd665546c873a497503aab8
BLAKE2b-256 9c24a7a67eb4d3e3c47cfe49cd6d2ba2e589873459bdb8558d88ea5cf9e6d9d4

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 afb0f139d9a80ed2dd4d568207c5003f9a1ee7f25c06da2b9bf56c4322af0916
MD5 0cec39b92c481475d47445fd4defbd97
BLAKE2b-256 04b978da7cfb7aaf55dd6228f7de3f4d9ebc03646ea8ce388ff498a482057de2

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5b01c2962b01d08b3358ec18a9bbddce1686aad7271d96078c43b0cc25890f83
MD5 56c275280f8b8f597172732b26501279
BLAKE2b-256 99673fc4d7c84e71a42e8adf75863218aa182530759c2f192d019631ab849216

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 664c063f04d1c4b182a7721f8c86aefe2b65ddc4463ac6ec0e349473b9bdfaf2
MD5 6b7f78d51643433c566fb7f1d6baae9f
BLAKE2b-256 c838176ad6b588e3bb79c77deda147578903b7e6f604cd30cafcc59f05b74c48

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 156df08954304e37a2361e07f53337e369decce3aa4d5dd3cce347713b2f8fa1
MD5 945e7bdcd9326cd65da0e17b679b7117
BLAKE2b-256 37d56eaf2026933f3926eb54e4d138105625a06fb0a6f1632ac7a03371950b84

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4888c97129e021db1e1aacfb0ff141ea4327c20e7d18652cab98f06692f71ecd
MD5 c49af1c2924466d99f5c5aff8ec6cb20
BLAKE2b-256 ac4133f20623cd409bb5c37eb1e44d0d776964516cc1237acc1cf8d2183bbccb

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e5ee6be1ce72cd68809ce2aceb4cf63399f528b0221eb39e280272937799d4ee
MD5 1e5fa241f157559ec2baceb5a0c4be71
BLAKE2b-256 b52ffaf26f478183a87968c1cd9d4b3a6c55c3f4c97ea8ff92379f40791900ca

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 963920e377a69630cb530e2599e892b0effb2e6a42704b944dad7a5dc940167c
MD5 a66135b110f6a5e5c01e9a6bad627ed0
BLAKE2b-256 8121d2757bc3863d7f82ca3e55a4f23796a01ca62e0355942d553be54eb516b6

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24f32823bb05fa1d2c55471650e4e143aa8277a9475d70c255fc35c65a6ce8aa
MD5 e6932cdd0205bbd9ee62c3115cd09c30
BLAKE2b-256 f9a8d5c56a0cd975a8b36450c884eb5f44c8a986ab6a45b5502d109cca880c33

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 3da859043e0125b04e86d303c61b323a85e48542360bb950f194e0b73a56b9a8
MD5 e3179a742b516f943bf0b22e409ddff6
BLAKE2b-256 a9768ac9c5c0e1f2dd56c31d418643563a1df881264a5f322359c6399463a89e

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp312-none-win32.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 5354b5afb5dd1a9841e37fd24cd75a821cc9ecda728e4afeccf077c480fce70a
MD5 4f5615f76c802efcd4135a8323bdaf27
BLAKE2b-256 e57fdc9059b6e7eb6b5e899d82da825d2ad2c0149336a4e4efccd524489423a4

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9a3af99b06c0fa8b2770cf35e57970209995745eb3622b04ea10960dd1ed25a
MD5 ea03f877123e9288a70b29c6d3f3e339
BLAKE2b-256 b0258d491fba4c3a39e812cb9bb8e5fdd3f82ca70ddba00579c69cca91338b8e

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c749eeab01836fa58d37d3e57a88b2b66fc654932adf96affd86443ea859d904
MD5 995bfc930d7bc5b8d572c72023eb5004
BLAKE2b-256 127c7cf991b0343b732ca64feb10ec1b65fd88fbdda4627cc1b277d2dd99bc67

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 719be3bd5b185ab42ffe7e65a5d7c8ef548d803e45a52155664a4589911f13f5
MD5 da122b92e241221cc0a693317e9e9d56
BLAKE2b-256 a0eda5710c3c0b7cf39e87c25ea1f0a3530cd60d9d2a445a38bd5b4b0d3fc452

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 843b470438e32ce8e8151d03013a8a2d806a15f11972086c1eb5e3c10647b9e4
MD5 7e7b9f2ea660eb9df1ad7167e6b93a2a
BLAKE2b-256 e5b1167b85ac37f92983d19b5c3ab5c3a14e0191eb2d414ecd267d3ff2df8f19

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c6e84639ec9f150f8b296f9dae4757345e99685abd8fa53a56886f1bb9b738b
MD5 8e13e97de98f0e8f4d5a9fe1038ddadb
BLAKE2b-256 12b3bb9f379add733204e71ac2e366d62080ecd95252ec477223de30217b4c5b

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e1fb8c43ca92c95427367f9aff8d3a1c212f10bb014e3a2db9ab7f6b0e1ec2a4
MD5 13885c48ac338624b619f5f641d356f3
BLAKE2b-256 ed998f9b10f1d5e36ddbb41d23d0e6e02074b0d8d9325741c042075eecf5d727

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05bdd830f717e3e087feefc23e55208b4b6721c42244de5b617fe8e40673817c
MD5 ff49c9c88f17ef17bdeede21b6c1e7d3
BLAKE2b-256 34a3cb5c0ca198c650711395971cb4fc9ada294e721a487bc053f7bd9757f286

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b36f929c0a895e1c9c4c5a980f296e49188fd5a0c11c2db9d794f4072a95a8fe
MD5 42d860c99a1d44ee64b5de3e4243e549
BLAKE2b-256 b498d302954bd1640c0af9f3013e2d33d4184c9f85f43dab54df69555d66d797

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 cffb032b33021f417e5c7d82aeb6e8d999f634ae3207c9e95faf73bcb86a13e6
MD5 a93852019a658423b35cf80a0f3643e6
BLAKE2b-256 cfb233198f3dea416d024174b0855de28688ee5ad21c6382c0c61ee2c8a896c3

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp311-none-win32.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 728d99f4af5fb71ab77dfd515ea2f8ddce4277f50b56d895de65cba79aeb0ac0
MD5 774bd499ef68da73a3c72e07757fc45e
BLAKE2b-256 eed2e0ab090a9fb7ec98663beb84fcda3decd054259d0cdd81cdb4cf5c4b7655

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ed00867c93e2781af6737904406bf9ebc1dc8bd6a40dd4df83ba76721477894
MD5 9079237daedea4fe2a622c34abdb605c
BLAKE2b-256 894dae54c5d70897c6a5599f7025c0f084552c6912719d42b7a3240a6e1cdfd6

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4c48d73f2d1b15ae43b63464e31206efabd4fd9425ec9ecdde98e69746541d92
MD5 147617c242610c9a38b47494bc79c34e
BLAKE2b-256 cc2f9f648dcf969b01d35869a9f7b4bf2fb24a800b8c7f2ee34d351a532d177e

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 72118ae0cacafa0540ccb0157e312e3b92f604ed767b1d5afe3f3e31ca49a1b0
MD5 2338d536413308d8cddda36eed4340bf
BLAKE2b-256 e315f398d456665bc008fda1ada1ccf7c62b312c472ed0ad9bc0d746a3919ad8

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 584da0e84aa105d8f6a3d942ff70d8541b1bb5c80bd221608871720d4632a55e
MD5 58709904eed4dffcd10aee38102f5fed
BLAKE2b-256 4fea6b443bcbdee58aa73cb28c82b46eaadf0807dffb3a15ff0bcaf35b66d69b

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3ae5d3372b2ee2007997eec85744c46143a9b880ffba60ae2e17fec7468e730
MD5 db1c4bec16cb62f9f78a74e8e475cc8b
BLAKE2b-256 b33ed9aaddb4afb84efd9e855d1168bdf4dbdbf03a96973f00abfcb5f6429626

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 676f45dfd618308f149ab489baa538de29d5763ad1f972cf0542a1118dfc3b5a
MD5 4aefe2ce101e263e1050199510672ab0
BLAKE2b-256 a94d5e1a458699ca01c4b9717fcf10336baf38c1ce3aa67261322bb0a66b7991

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 abbc0cba356528ce4967290e699427183064b2d2166d87fe48c3e4920264f86f
MD5 df4b1f4fe6a2c49143f241833f13a802
BLAKE2b-256 d04afead0e4addbd3086528054a2fbdca0c9db418774d45b9c6ed5dec1466775

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2ea2ebd7693b349623eb574d3e814ce232a85d62cd5fbe84c77d70ee6b1c3a23
MD5 062770b6daa5313d5788411027889ab9
BLAKE2b-256 e87db61a9ee91dfe688fe7a3e1fa15605db80b870ca54b32d387991d60bc3b21

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 680eb15be0283f86fdea468401270221a51fdc47cd499996eb6eda65a1413fe2
MD5 01723419a8c9026f11bb15a91bed7a3a
BLAKE2b-256 c0004a2ed85cb1eb200695d4dc2b28d8b6d8197f6edabaaca5763014be6f3f36

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp310-none-win32.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 890a0e58ed27af5ff49cbe28897970f23e24ce48ba245bb298f1ac892e499582
MD5 03b0b72a84f0b11b8e68e6b406aeda0a
BLAKE2b-256 765417f734720325a60109ad0ab322dd3a758f6230b8fb738f4d72ff1a9d5265

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bca217b9983b40bc862d9f216507f2d4f4036b0e3d9e9ec89f5aad841864794a
MD5 507a0c6461e3b5fb09371a565e477cd0
BLAKE2b-256 f7d08f686a64c51ccedefb836a66dace44f6662a41898321988ffebf739f50a3

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 47f6866a4ac818769c55256d0ffd0307f925da5e605e16f6aefbc886defceffe
MD5 985dfe956f26f716e7d808d8d67740a6
BLAKE2b-256 16b9977762332387442a181533ea361e4b9b9c2b6386adb275e4e7c84ec2f6f8

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6234f8d83164cd8ef8beba12e5cb08ff9c12ee3f7bb86fcfb0c6d2f9309fad9c
MD5 a0cecc3fb420468162beb347383390f3
BLAKE2b-256 700f3f887535dc7c8621e21af1f09a7c5fcb73b7e1cc927c0f913485d11a8050

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 319077944841087d068b7d0e300807f7bd4b5994d56e3c490ebc1a7fb9c261f1
MD5 d5b0affeeda5f8ef9a06f378318b19e0
BLAKE2b-256 7f4eafa720dd19fcaa4b4aa1285a12eed147cdc380259337a2bcac8eae6f7b39

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9950282d1a501746d0cb724cbe83b460660d215fed6accd76af9892f42bfaaef
MD5 90d31f305e6702fd53096048c5eb9b01
BLAKE2b-256 3a5fff10682f4cd60155f288007c171a7ebba8ec8dbf6b354ab632afb8b14316

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a36d0d5d94c6fe38a536167738a92a459b96d65c94b84743e0af5f04bf3ef5dc
MD5 d962c9f1692115bb57f8339173cfd516
BLAKE2b-256 b4b7a9a175bb8710f3a1b7ceef3f12c3155be1cc9bcdfb31701547e456e4e590

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c4033a124c42a01a5cdd2ed63dd9bf4594f2b4e2211db8f711299a3616a4a8d
MD5 522bfa936aaf8ccee5cd80193e862b5d
BLAKE2b-256 44edf24f0928b62fcd0f639ed831af9921c62411198b99dee9893fdc36176f6f

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b248ced2dad17bef83b24e99edadb6031acf7835aa8bdaab378b70e624da3e8c
MD5 5a1c5250e558087abe41c89282d5c3a5
BLAKE2b-256 008b24c38a86e80960b59af1f83e1a8f752df78a5c2c2e878330c4ab3baf2e88

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 c6b02064ba2d3a0c9f918e4aa2b82d36897a4a00b83f32372ea9be917793064e
MD5 32657317f17f920f7b3623b4442b98c7
BLAKE2b-256 64ce136e6930b7bb075923c3bebe7571d9fbd38df8f41cf07761eb7b420fc5d0

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp39-none-win32.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 e7490cd2abd2bdceb8a7bcc4dca086a56c6bc7b5563170ef44ccb96fb6c705be
MD5 80f3e7b2c4365f72ba3c2979b72e8204
BLAKE2b-256 f74d2ec7ff53f95325ef88dddd97b578263183be3fd55869bb683a8a55b06e0b

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 40188c50a95c27c2dff0870cc7d74430bfe8f99483dc9a2a64a3cf2c2b2c9054
MD5 3117551ea945e40c918e14b363595d07
BLAKE2b-256 3a8f93930ce79275ba3f519f0822a9eb4d9cd64a195f12a9df8899b923f67ef9

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a20e5fb75f2613084b982c090e4ea8ec69718eedb24477e2c371eecd831a0c0
MD5 08c26509b596554ded872f9d6b2f50ad
BLAKE2b-256 db6768fb574943d3264b8bc09c14cb57d3b5fbc169767d10d33c386f2cfd7ad1

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0dd636782dce975a4b46f91453ba94e09ee829532444366a663784990cabc4f6
MD5 6a9b12139b690c07ebad3454241249dc
BLAKE2b-256 1497433a39c49d1bc0ffe8364a1dcf4ff2a5bb78d7fec778b192c22889ef5c02

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4117422a53430180007e4656e323be3bf1678f749fd73dbddfc5b9a62b2de87d
MD5 c35823d9689eb90a0b09a17653c2d8fb
BLAKE2b-256 0e2180bfba41c95a38f5c0827315f8b74adf13d50fb970b5348ef93bdba0503e

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c24ae62a88573d8eb0ccf91edf18f53f2761d7721b02f8e23d13e6a7b8c9b577
MD5 1c36d0ad2d7c1f9d5d6a7421f5754494
BLAKE2b-256 6302588d837554b989596bf52d5a3e732be94818a70ea13c5a341eb55ae6d4d4

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 37dcd7f9701ae92556a7ed4fb15f65ea6aa1584d6441595e180c068eb977aa1e
MD5 27af9e4148eb0a7927438e8dc45d72be
BLAKE2b-256 d7cc9ed6e4050485856ec5056b3fdc758362bf1d0e0c184e98dbdab357047c2a

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 d576d111eafbb37fc50f7223d9a469d733748452fd4bc628032cdbd2ed279a57
MD5 5a6abc2d16b7a7c8d73191bd1fed2dd2
BLAKE2b-256 59ef4866519ee71631d1605b8edab64026e56602bf44e9d526470696d21b7fae

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp38-none-win32.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 b2565b18adc692b4aa7945856b71d472e837f0be4b20f15c94d7a1992900fdfc
MD5 57830f64761f28d8172fbd70bee82613
BLAKE2b-256 1e2a899a12ef10ef1a6b2f0f53b99c87960e70d1f002b7193762b1176657fbea

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd7f8fee86c8542162954750e05d83c9b707e0c62b96cdf30394e97ca450b4fa
MD5 8d0efa918bafb0867f71b183343a58d1
BLAKE2b-256 6eb05959e3ddae8cc1a5f130ddfef9567a57fbe54940a5b0b2c7ce678148ddb5

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a3c16cd718bd45e077797f458a3bf40818602380cc716e164a5c3d0a6ce06444
MD5 ad2de08bfda8a2bc40277355b8ffb0fe
BLAKE2b-256 561e729e21a35695c879da02ca47c543920a9dcfb734bbe884a165df1459ae3f

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a458a5d1e354a9ca228d277ff88f0ddbf019deb8ad1614c2df4b653b0d40ab50
MD5 e7567bb93b04fa585607e5b54ccc5658
BLAKE2b-256 af49f4c5cc8b65211ec6880988e7f83dd3dd6bdb9e2ec2549f7afd40dc07b49c

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a076544c86a059b477f1356de1ce0dc6bd07ac9e358918986498518ced21d525
MD5 842acca89fa389f833e999f37c642a8a
BLAKE2b-256 d7f9337f13de2775a3f397d3ecee83993bd981ecad0083c0e9d4e5478639834b

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6aea8a037725c1fc5638cf028a3c5ecd3ad150fc7d0e7d5caaa932cc642434c5
MD5 cbb08bd49fae0bfe1612a8c7f169463f
BLAKE2b-256 0d2fc8e1aa5d817e746722cfd84dc3d7a7c0fffdedb9dd3dca21e0b945898fb5

See more details on using hashes here.

File details

Details for the file scikit_bloom-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for scikit_bloom-0.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2ba7c47235b47281428fffa2a2dca7cb9825c687de91116b264e89619d8713e6
MD5 6f22c3b8d7ffd23ae7046976ac003651
BLAKE2b-256 a55d9b74531ea7338a40e472cdf4bfa4623c382b850598d90e4aa85621b4632e

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