Skip to main content

A dumb but fast bloom filter.

Project description

simplebloom is a (probably) dumb but fast bloom filter. To quote Wikipedia:

A Bloom filter is a space-efficient probabilistic data structure, conceived by Burton Howard Bloom in 1970, that is used to test whether an element is a member of a set. False positive matches are possible, but false negatives are not – in other words, a query returns either “possibly in set” or “definitely not in set”. Elements can be added to the set, but not removed […]; the more items added, the larger the probability of false positives.

The included BloomFilter class is quite dumb as it’s fixed size, only supports strings, and always uses the blake2s hash function included with Python 3.6+. But at least it’s fast, hey?

Speed

~1.4 million elements/s on an i7-6700HQ, both adding and checking.

Usage

Note that around 98% of the execution time is spent creating UUIDs.

import uuid
from simplebloom import BloomFilter

keys = [uuid.uuid4().hex for _ in range(100000)]
bf = BloomFilter(len(keys))

for k in keys:
    bf += k

with open('test.filter', 'wb') as fp:
    bf.dump(fp)

with open('test.filter', 'rb') as fp:
    bf = BloomFilter.load(fp)

for k in keys:
    assert k in bf

other_keys = [uuid.uuid4().hex for _ in range(1000000)]
fp = 0
for k in other_keys:
    fp += k in bf
print(bf.false_positive_prob, fp / len(other_keys))

The BloomFilter class

A simple but fast bloom filter. Elements must be strings.

Add an element and check whether it is contained:

bf = BloomFilter(1000)
bf += 'hellobloom'
assert 'hellobloom' in bf

false_positive_prob defaults to 1 / num_elements.

The number of bits in the filter is num_bits = num_elements * log(false_positive_prob) / log(1 / 2**log(2)), rounded to the next highest multiple of 8.

The number of hash functions used is num_hashes = round(num_bits / num_elements * log(2)) .

Parameters:

num_elements: expected max number of elements in the filter false_positive_prob: desired approximate false positive probability

BloomFilter.__iadd__ / add element

Use the “inplace add” syntax to add elements bf += k, where bf is the BloomFilter and k a string.

BloomFilter.__contains__ / contains element

Use the “contains” syntax to check if an element is (probably) in the filter k in bf, where bf is the BloomFilter and k a string.

BloomFilter.load

Load a filter from a path or file-like:

bf = BloomFilter.load('bloom.filter')

with open('bloom.filter', 'rb') as fp:
    bf = BloomFilter.load(fp)
Parameters:
  • fp: path or file-like

BloomFilter.loads

Load a filter from a buffer:

data = bf.dumps()
bf = BloomFilter.loads(data)
Parameters:

data: filter data

BloomFilter.dump

Dump filter to a path or file-like:

bf.dump('bloom.filter')

with open('bloom.filter', 'wb') as fp:
    bf.dump(fp)
Parameters:
  • fp: path or file-like

BloomFilter.dumps

Returns filter data as buffer:

data = bf.dumps()
bf = BloomFilter.loads(data)

Developing

Extension code is generated by Cython. Install Cython to make and build changes to the extension.

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

simplebloom-1.1.0.tar.gz (74.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

simplebloom-1.1.0-pp311-pypy311_pp73-win_amd64.whl (24.3 kB view details)

Uploaded PyPyWindows x86-64

simplebloom-1.1.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (25.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

simplebloom-1.1.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (25.3 kB view details)

Uploaded PyPymanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

simplebloom-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (24.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

simplebloom-1.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (23.5 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

simplebloom-1.1.0-cp314-cp314-win_arm64.whl (25.2 kB view details)

Uploaded CPython 3.14Windows ARM64

simplebloom-1.1.0-cp314-cp314-win_amd64.whl (27.4 kB view details)

Uploaded CPython 3.14Windows x86-64

simplebloom-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl (28.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

simplebloom-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl (28.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

simplebloom-1.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (28.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

simplebloom-1.1.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (28.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

simplebloom-1.1.0-cp314-cp314-macosx_11_0_arm64.whl (29.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

simplebloom-1.1.0-cp314-cp314-macosx_10_13_x86_64.whl (28.2 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

simplebloom-1.1.0-cp313-cp313-win_arm64.whl (24.5 kB view details)

Uploaded CPython 3.13Windows ARM64

simplebloom-1.1.0-cp313-cp313-win_amd64.whl (26.9 kB view details)

Uploaded CPython 3.13Windows x86-64

simplebloom-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (28.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

simplebloom-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (27.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

simplebloom-1.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (28.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

simplebloom-1.1.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (28.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

simplebloom-1.1.0-cp313-cp313-macosx_11_0_arm64.whl (29.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

simplebloom-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl (28.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

simplebloom-1.1.0-cp312-cp312-win_arm64.whl (25.0 kB view details)

Uploaded CPython 3.12Windows ARM64

simplebloom-1.1.0-cp312-cp312-win_amd64.whl (27.6 kB view details)

Uploaded CPython 3.12Windows x86-64

simplebloom-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (29.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

simplebloom-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (28.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

simplebloom-1.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (28.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

simplebloom-1.1.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (29.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

simplebloom-1.1.0-cp312-cp312-macosx_11_0_arm64.whl (29.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

simplebloom-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl (29.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

simplebloom-1.1.0-cp311-cp311-win_arm64.whl (24.8 kB view details)

Uploaded CPython 3.11Windows ARM64

simplebloom-1.1.0-cp311-cp311-win_amd64.whl (27.2 kB view details)

Uploaded CPython 3.11Windows x86-64

simplebloom-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (28.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

simplebloom-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (28.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

simplebloom-1.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (28.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

simplebloom-1.1.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (28.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

simplebloom-1.1.0-cp311-cp311-macosx_11_0_arm64.whl (29.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

simplebloom-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl (28.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

simplebloom-1.1.0-cp310-cp310-win_arm64.whl (24.8 kB view details)

Uploaded CPython 3.10Windows ARM64

simplebloom-1.1.0-cp310-cp310-win_amd64.whl (27.1 kB view details)

Uploaded CPython 3.10Windows x86-64

simplebloom-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (28.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

simplebloom-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (28.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

simplebloom-1.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (28.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

simplebloom-1.1.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (28.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

simplebloom-1.1.0-cp310-cp310-macosx_11_0_arm64.whl (29.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

simplebloom-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl (28.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

simplebloom-1.1.0-cp39-cp39-win_arm64.whl (25.1 kB view details)

Uploaded CPython 3.9Windows ARM64

simplebloom-1.1.0-cp39-cp39-win_amd64.whl (27.4 kB view details)

Uploaded CPython 3.9Windows x86-64

simplebloom-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (28.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

simplebloom-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (28.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

simplebloom-1.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (28.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

simplebloom-1.1.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (28.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

simplebloom-1.1.0-cp39-cp39-macosx_11_0_arm64.whl (30.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

simplebloom-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl (29.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file simplebloom-1.1.0.tar.gz.

File metadata

  • Download URL: simplebloom-1.1.0.tar.gz
  • Upload date:
  • Size: 74.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simplebloom-1.1.0.tar.gz
Algorithm Hash digest
SHA256 2e553d2cea8557c067156de7b8b28af738f36488eef01291559ccd7fa77c7b72
MD5 e3b680cca40c24172d3e83a9eee06552
BLAKE2b-256 5f8545f0e8448f37baa7e13949d1d93cf15264737498f4f953464494bf96f8c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0.tar.gz:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 15a81a6337680377f9037eebba2368f9174fc0d365f4b0c88717cd4dfb4f1233
MD5 35ef5fe8a88f818aeb4de963d64b3cd7
BLAKE2b-256 b09915b32a9aa3f3682ac1ed08bcb9214ddd5b45d7488c6442ad81ae576c9a62

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 86310d530533f2a6ac987d1753dab226d81d20049da30e3038f22bef4ac295b5
MD5 5876d57bbda5d50f5f99003105a0102f
BLAKE2b-256 88d435d695e7dab216a14f4a064022e747b42a65c1a359c110bf359c96b1d101

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-pp311-pypy311_pp73-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e9efd9fda69f365c2546ba5fc24e27e46201675a8a0d398f0455fbd85bf7ca44
MD5 83bc812d24c017242410a362fcfaeb1c
BLAKE2b-256 3f8010bc657c173e9fe3a17a611418ac89015b4dae28d642125d1dd2d6deee82

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-pp311-pypy311_pp73-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be8ac8feb9790a53280ac1bb4995d940ff6b9fca5e75bd131f760bdaa01e609f
MD5 6d2e94b856c5d65ce0d094b649c8f136
BLAKE2b-256 e9a111785a806750a41048af35f7bc46d3bc89f20b55fd731de1a71986debad3

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bb066a469328f13838d24f1712cc7aec25c9b257ab9b4ccefb91b4528b88a321
MD5 a44cdc99f25e6f97406220a24d605720
BLAKE2b-256 eccbb54368b35260e20bf6ccbdfd47123ae4984ee2eff4d3ede8fc13f6631dc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-pp311-pypy311_pp73-macosx_10_15_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ac43d001363155bbb8640eb310ba2bc10476efd5db69b5057b83c915ec9bb06b
MD5 474fe1bb7689963c506a60efff9546c4
BLAKE2b-256 c0bf1dd1c9bb253586af2ed360823f5b2680bdef22ac8eefad76f4c1bc72d350

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp314-cp314-win_arm64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6ee9fedd486661fac47574a554d09bc44fdedc8c068523e7bf36242ead793b45
MD5 6f60cd4ecdc01446b1e9fa2c259d0a06
BLAKE2b-256 b2b3ddff5027cce1f8b141b92aee94a1262f9e451e91ff01f3916e2eac077879

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0015e7e1722599e223cef6c11eb837ad6dc980d8dd7b6e27a844a83222fdb0e2
MD5 785b841855ef8f0bb33020ad41eb30f4
BLAKE2b-256 4c48474dc61c3db58b0a55615c49f6f51d3583a73f0772d19fa4455f53cc184c

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6340dcb4a4578067d84c2af81a99dfc83073f76b36113f0d2ea88f6cae7cba7f
MD5 85da688d14636e227cb4b3b306694efe
BLAKE2b-256 373057498baaa8994c1b52b9f1897d7e2590689fed5cfea25518deca2e2ae554

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b5f62f6b9fc634a85e016312a36ade7588f5453edc9c0a8c78e1b27f01347f20
MD5 c1fd6cc5bce8a1e0d0f9e59971c728b5
BLAKE2b-256 bcfeed8cad0bc6cab3ff1fa570f290bc529f291b42932811c3135ff18d413fa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ddf89d0419e02f1bbad1cc18d6268ff56bf4eaea1649e5f707326166686e2d86
MD5 7fe642e21a37cbc5a9b27a7b70f773b0
BLAKE2b-256 cdec1eb971aca491cc75af53475443dbad98a3c16bd1cb5aa8bd1ac79835e89c

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 799e6cd9ff0282b03e891153b73b034797d900a9b1dfd0220ebe04842e264b4a
MD5 8ca86c6ab016419b820c442e614f2d67
BLAKE2b-256 e6ec3ccb3f5bc5a28f493ccc2f96723ac2e4f1d6e0df7e7ce9ac8931608b2165

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6e44634801f1c47924f15f7be2225d62d34431119c5b38bfdb789ec6f6430cd8
MD5 1f23c983e35c5438cef318f1e9f71bb5
BLAKE2b-256 5a1174ea74f367a67bf7ed2ab5cc1c394b86368198d3a67015e828337532eeb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp314-cp314-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 fbbd4e32cbe2b42047bea082a36e05bd1fa2173d45b7d76762f956f028c6c55b
MD5 0b583081be4fcea91d20bad6216d49df
BLAKE2b-256 76e948529a74bdcce637a35d160f30094dd60e9a5bc7ea80667997a901de8189

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp313-cp313-win_arm64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 66e23cdacb5e8b267a70d8d30ecd9eacdde1e54c507aed9e9061b6c2e95aa52f
MD5 d979a082590f2b6f7cfaf7cd14df0bc2
BLAKE2b-256 752d857cbb1289707b2ff803debe297b4b528d4f08017b2e6f603cb0baf13066

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a53a612de1055e119ac5d95e7fe29043289e7cd16d7c928aa3c68333903fcf09
MD5 53a7e58b6eff222587b89d934363ae91
BLAKE2b-256 2f714b48d69c579198ccaa2f8059009e01af57ccbe6577b62e03d95c3ca7a99d

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4108553c65188c88b7eadbcf4d6e7d4b0da46b7de2371918a884d9dcf5ba693f
MD5 441dcf57403d2c23feb2baa0fa43db55
BLAKE2b-256 8f16bcba4767ec53914ac3184bfec3f19da95a5da3cc9c2ca20a158ecdb27f1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28fd5c314c0284df6e8fbc816cd99b11ec09720df3ed1a97f0231a7b27381271
MD5 4eb24de54bc83d409428ddaa9e954cc9
BLAKE2b-256 b7e812f6841e762b25b1d52f3591b61205e2daccac8c5b687c5438bbf9829695

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 be72ba2e6858305a8a3547c56f21f31b67d93d925a6732358cfbc4e94dbed437
MD5 87c8f43c07de580954df6fc7941e1c35
BLAKE2b-256 7d3e9f1e37873ca170cd19eca89d3b9d841faa427d4eab6780359df5850f1616

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02599046a55381feeb23c6e2c7bcd380900bcc2b96b8198d25832989dc203aba
MD5 0159bdc1530b648a3a65a3fd8b131aab
BLAKE2b-256 08310ce56ac66c1cbd7bd44534d4c431ee3a853d806e125281fb448f86616085

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 f36f7f40684243096d5dcc66d2d3daf39440e49151ff1b948b44410144215e99
MD5 74eb28e8d937cd0533fc4720d85577f3
BLAKE2b-256 14759b3836fe50bd1174e8f7586c60daf757805f1840135fb7244610c21bdf45

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 5ddcf344f77257bd656e988d857fbef64387d2c5b5f39fa144d11245b6dfa76a
MD5 b35435388dec6ff0f531053326b52ab4
BLAKE2b-256 3e63921f9e0c02dd745002552e12c6f6d3bb9c093fe5bf0d9c84f48a4adc72c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp312-cp312-win_arm64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 96a6d7e88f7f38b42214324ddd94f43bad04ac4a871de1236350e6622dc461ec
MD5 632e439dcd73cfe1ce396d2c21458729
BLAKE2b-256 16834d2e5df759f077e400b57f2e22b28fc45faf08673d187e70172720431077

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2c149c0d018b99c105ae53fc00b25423e0b8efde508be4172f0e6556a16609a8
MD5 6daa5eb1f9a22b8775f612fd17e79bc4
BLAKE2b-256 439b9ca5e408b828e136e0c275d441839f60bbefe94bb0235400e43d12e845a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4060a866be9b9a32b287668c8ad966d7f1a24ede4377361b1f63626d12c25bf1
MD5 01b023c775b087bcbdbde168b36eef7d
BLAKE2b-256 08e7780759cd5c39e9078ee638f288cab69600624742c54f9dd2fccd30532993

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7f514c8f9a259f4cfb0091be86923914573832be54a8027c299917343ee9baf6
MD5 5949b13dfa17d7807c67c6b98e79ce16
BLAKE2b-256 a5cd8879e1d7adc1701be376abd8237f357b2c5a76e3a8ab488338009c91bd96

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 84fd01b1751b99c0eec2a057c1aa9be705117a6ccd93b3cc3aad56123839d89d
MD5 eca31441b1b0721d33a68ca973dc9783
BLAKE2b-256 e376d5fb28ccdc4ed5cee13a376d34afea16e0b6d8dda7287ae5a656d6f70d99

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e17e543ee3a2b4ed025509a6b87fffcc9dcd8763dbcc6bb9a4eb42c4bc8d0dfc
MD5 67491a465523ba6f1e7f93dc2efcada7
BLAKE2b-256 d078729276bf1168b89c61d65ffad1be47d460df97461f1856c4b46ab4ef4954

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2f62846f8f6c705a922415b0c7041e08e98c2fec6be573f4d040e9ee75def6db
MD5 47e2eb8a5c0e8b6f27230d1d92e72c8c
BLAKE2b-256 d016580f2f6c357836c6ebadd5f1b2c8d0ce349b52f4b8644d14a6d9606955db

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 434821861b1c00f50cdd77f87b5e98348b23c6625f877b268af03dbf822a5217
MD5 a09ce831925646ea16c24d99842f4df3
BLAKE2b-256 c09c4418182183aa2091f48e3deb2352bc6dae1dbc771ceb83478d28b8073a58

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp311-cp311-win_arm64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1438207604a4ec0a03a811630997205a9aa38b5971a390714353a89bbec653e4
MD5 27b31e5c6bc8305293e028beab54031f
BLAKE2b-256 eefdca9450ec8623e9568413605ae1f2a4f580821d9a1e9c60dbae060666bd65

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e16f8ae71bf4c453c59faad9580043d1ce90c15e0c0bd21b80b8de855f961a9b
MD5 3ab41dd98fa2ed203a53c956ce9fc444
BLAKE2b-256 02aa0c6719d7d49c31c21181461928a401e37c6c1825fa1e77d6da8054bad8b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6174b2e9096d6fd0ee9ed9eb0c4c7568034ee397a0a691629f9050c766e094ed
MD5 3c83fa847af1b20b23aad72c54ea450a
BLAKE2b-256 ced22f2e5789eec283dee652707768923d7fcc0673301a5cea60238f722ebffd

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 211efd0210bea019174b078fc6304b52ca675d8e76842199c1339d84ee4571b5
MD5 48985f8eff34f4e6307bfd7ff79a7649
BLAKE2b-256 d11ae95815814ca9b2d3db710510423d5caa99df05864ca5cf37ca00f9b080b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 81a40982f2863618ee1ec93c39af03c9853f1102c5285ad9689414d9c821999b
MD5 83b949a7322f0846b5d0c0f8d6ad2895
BLAKE2b-256 d607d218212d28d16e9ad0e444cfc19053040e9291c41b85d846be2ee720c6a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b29e0372612c2faf0f971db56f17d1dd06aca383a8649c5c9aced9caed51a8e
MD5 cf7fe2121cbc2b2179282983f112dc6a
BLAKE2b-256 dab383857a8617546d9ffd598eb3a0d42f16db67d5add5b68b988a0bf86a8858

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5368923334c1852db3ff280880fe0ddb31585e0ac7cda0736d24fdd0cbdf4243
MD5 63653ebdb5044b84512608ee00aac15f
BLAKE2b-256 947933f98bcf49c930476ce982cc16424a9c63f801d54145ad1e26d5df64b7da

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 71b25e4a6ef9d2d0cf5db6d7243f16c427d95339ec31aeb59d94ded5b57329c3
MD5 6577dbdc7521151c068cd8b6289159cc
BLAKE2b-256 a17cd3b1994c1ebf388739058da363c6f903bc4f723ab61f09044328893b1410

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp310-cp310-win_arm64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 82e69e8c3a0fb230cc6ed23cf82f8c7256f1b9e382cfc5859c9045250755056f
MD5 f8d44325045a435bcefd0e7dd744e129
BLAKE2b-256 3b570b56e6ff8ea34a1ac09016e298912df9ccadc4ffe3c027a18ef73946d4bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 732ab44b6f22a027853bc03ae10f9c0a57ba351de2737bbcea3bd2df5efa8dc8
MD5 f9c1a56bfbfefd3f0576c98bd7b64dee
BLAKE2b-256 18c22ab42b7639eb6049aab2b9210e970675ac46112e5ab4a0ecfba53887fec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98c4ca6cc218e96782083bed8ffeadfb62ff632fa8555d975ff05911572596e4
MD5 a7c43781216a1ab2ebb375017d991e98
BLAKE2b-256 73af09a79612f72348b13ae78c462dbf1b5495e980f50547a2057372786176c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ef0b09ffe45015132984cbd45ae993d3543eaa4b8ce20cff0bdf90dedc90328c
MD5 cbeb4b9337e7680c726eb9897f4bc0a9
BLAKE2b-256 4e76a724a7b00f4d4f4bed3cf5f974e2bcd5324022cdd050fc07afbdd516beac

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d69979ded936e42a0cc511c91696517078f8299b36c7dc74c1f62c893b8dd0d9
MD5 0e8dd7f2978b3fb39f0b94621ed784d2
BLAKE2b-256 486b173fedf3f7c1b6c8ddcd7ed7b93799b77276372f9dfa89d21cbddd46b0b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19fbab627be3fe0b8ea86c0c544de7a51f337aea1a207ae0b3c1f5b7c190d93e
MD5 57172384e971e387ba1ba068b8e19e89
BLAKE2b-256 d6c73e56d08f9759a9583bc658fd7612385b2491bab0708fcfc26552080c473b

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e92fda6861e645630b9d61b5c5e027e7a8702998ba9e59a3067db574a07d17d3
MD5 da54f4b6ebf267c30391ec13f26888ec
BLAKE2b-256 cdb736f1f2d2d8ffd1192f6217aff82bff61a37c4d0b08665842c8d72ff71f36

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: simplebloom-1.1.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 25.1 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simplebloom-1.1.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 6864bb6404c174efeb9f2b9cfe7ac0bea7a26d533c60bbc5c914ff534cfc1d93
MD5 7b2d71e103fdb68c5577c17f29c0811e
BLAKE2b-256 078394274345ef2d277bdf2d1f5a18bfc66ed02bd89f51585271641e0d931965

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp39-cp39-win_arm64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: simplebloom-1.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 27.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for simplebloom-1.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 01e45a6a66ed614d9c051c14d8818f8ad43763a085090e7e8f0e78415ca175dc
MD5 0487581a84654711dbd29b717db48db2
BLAKE2b-256 1ab832f5aad8586d077ddbf34baa4d5e9d6ccc29a9dbecd5c90f19c34549a2a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e72a7d3703c35addc4bfbd5d565bac49f1afd921ba004f07f181b316376ea84
MD5 1ca3e003c78e25483b699ddd2f24c800
BLAKE2b-256 fc642531ea9033028d3d04ac9f380ec746b6216769ceff8fc7606f154ff49e9c

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6722b7d1ffc771a45f2f47732cfa2d9a0c312b3f3701104ff21e6e4c1648d6c7
MD5 628ce4b9b0c666dea9daa58825513140
BLAKE2b-256 e8d5598d9a7f136434470f7a98f9c66fcaa0441fc6ffd7dcf9e9202ab4297860

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bfca4a0dcdae6430e3de50efca6e746112aa465a21336717157f54b48aed2216
MD5 0408b7612b9dd45329eac54046fb01f7
BLAKE2b-256 e4f900ea48b481d37fa82c14f17404ecaec94bc75d960e15a28beb057818b576

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 de4378b572c57b03be48a2939543f87299557e7d1cf7d122f1c754552084bf5b
MD5 e6a92c7c2ac104cdd177e4288a9aff08
BLAKE2b-256 8a986f8a0b9604be6186db3a895d59b11b4a169a55f02a73e8f87919fef5c05c

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp39-cp39-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d56a3e7911e6e0e4794d3ce25012b249be5936501429997e4215159393b13624
MD5 eee472b8c9ea39847695dfe7f7fbf094
BLAKE2b-256 0f5e4b1a1ddea11bf2dff290fb08c59438f7d31d59eede6c4ca98ab370489ab4

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file simplebloom-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for simplebloom-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e347616b3fc3094f3324ec3623657cbc3f2f1d5b06cca89a9197047568ebc059
MD5 604ee3ac3decc51b204077f62e4239d0
BLAKE2b-256 c4293b30826a5bc2a30a03e73aaae1b6818a7dbfed659f63bfe01a2738fbed80

See more details on using hashes here.

Provenance

The following attestation bundles were made for simplebloom-1.1.0-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on jfolz/simplebloom

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page