Skip to main content

Purchaseable SMILES filter

Project description

molbloom

Can I buy this molecule? Returns results in about 500 ns and consumes about 100MB of RAM (or 2 GB if using all ZINC20).

pip install molbloom
from molbloom import buy
buy('CCCO')
# True
buy('ONN1CCCC1')
# False

If buy returns True - it may be purchasable with a measured error rate of 0.0003. If it returns False - it is not purchasable. The catalog information is from ZINC20. Add canonicalize=True if your SMILES are not canonicalized (requires installing rdkit).

There are other available catalogs - see options with molbloom.catalogs(). Most catalogs require an initial download. buy('CCCO', catalog='zinc-instock-mini) doesn't require a download and is included in the package. Useful for testing, but has a high false positive rate of 1%.

Querying Small World

Just because buy returns True doesn't mean you can buy it -- you should follow-up with a real query at ZINC or you can use the search feature in SmallWorld to find similar purchasable molecules.

from smallworld_api import SmallWorld
sw = SmallWorld()

aspirin = 'O=C(C)Oc1ccccc1C(=O)O'
results = sw.search(aspirin, dist=5, db=sw.REAL_dataset)

this will query ZINC Small World.

Custom Filter

Do you have your own list of SMILES? There are two ways to build a filter -- you can use a C tool that is very fast (1M / s) if your SMILES are in a file and already canonical. Or you can use the Python API to programmaticaly build a filter and canonicalize as you go. See below

Once your custom filter is built:

from molbloom import BloomFilter
bf = BloomFilter('myfilter.bloom')
# usage:
'CCCO' in bf

Build with C Tool

You can build your own filter using the code in the tool/ directory.

cd tool
make
./molbloom-bloom <MB of final filter> <filter name> <approx number of compounds> <input file 1> <input file 2> ...

where each input file has SMILES on each line in the first column and is already canonicalized. The higher the MB, the lower the rate of false positives. If you want to choose the false positive rate rather than the size, you can use the equation:

$$ M = - \frac{N \ln \epsilon}{(\ln 2)^2} $$

where $M$ is the size in bits, $N$ is the number of compounds, and $\epsilon$ is the false positive rate.

Build with Python

You can also build a filter using python as follows:

from molbloom import CustomFilter, canon
bf = CustomFilter(100, 1000, 'myfilter')
bf.add('CCCO')
# canonicalize one record
s = canon("CCCOC")
bf.add(s)
# finalize filter into a file
bf.save('test.bloom')

Citation

@software{White_molbloom_quick_assessment_2022,
author = {White, Andrew D},
doi = {10.5281/zenodo.7426402},
month = {12},
title = {{molbloom: quick assessment of compound purchasability with bloom filters}},
url = {https://github.com/whitead/molbloom},
version = {2.0.0},
year = {2022}
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

molbloom-2.2.1-pp310-pypy310_pp73-win_amd64.whl (9.2 MB view details)

Uploaded PyPy Windows x86-64

molbloom-2.2.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

molbloom-2.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

molbloom-2.2.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (9.2 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

molbloom-2.2.1-pp38-pypy38_pp73-win_amd64.whl (9.2 MB view details)

Uploaded PyPy Windows x86-64

molbloom-2.2.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

molbloom-2.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

molbloom-2.2.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (9.2 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

molbloom-2.2.1-pp37-pypy37_pp73-win_amd64.whl (9.2 MB view details)

Uploaded PyPy Windows x86-64

molbloom-2.2.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

molbloom-2.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.2 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

molbloom-2.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (9.2 MB view details)

Uploaded PyPy macOS 10.9+ x86-64

molbloom-2.2.1-cp312-cp312-win_amd64.whl (9.2 MB view details)

Uploaded CPython 3.12 Windows x86-64

molbloom-2.2.1-cp312-cp312-win32.whl (9.2 MB view details)

Uploaded CPython 3.12 Windows x86

molbloom-2.2.1-cp312-cp312-musllinux_1_1_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

molbloom-2.2.1-cp312-cp312-musllinux_1_1_i686.whl (9.3 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ i686

molbloom-2.2.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.3 MB view details)

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

molbloom-2.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.3 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

molbloom-2.2.1-cp312-cp312-macosx_10_9_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.12 macOS 10.9+ x86-64

molbloom-2.2.1-cp311-cp311-win_amd64.whl (9.2 MB view details)

Uploaded CPython 3.11 Windows x86-64

molbloom-2.2.1-cp311-cp311-win32.whl (9.2 MB view details)

Uploaded CPython 3.11 Windows x86

molbloom-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

molbloom-2.2.1-cp311-cp311-musllinux_1_1_i686.whl (9.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

molbloom-2.2.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.3 MB view details)

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

molbloom-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

molbloom-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

molbloom-2.2.1-cp310-cp310-win_amd64.whl (9.2 MB view details)

Uploaded CPython 3.10 Windows x86-64

molbloom-2.2.1-cp310-cp310-win32.whl (9.2 MB view details)

Uploaded CPython 3.10 Windows x86

molbloom-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

molbloom-2.2.1-cp310-cp310-musllinux_1_1_i686.whl (9.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

molbloom-2.2.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.3 MB view details)

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

molbloom-2.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

molbloom-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

molbloom-2.2.1-cp39-cp39-win_amd64.whl (9.2 MB view details)

Uploaded CPython 3.9 Windows x86-64

molbloom-2.2.1-cp39-cp39-win32.whl (9.2 MB view details)

Uploaded CPython 3.9 Windows x86

molbloom-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

molbloom-2.2.1-cp39-cp39-musllinux_1_1_i686.whl (9.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

molbloom-2.2.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.3 MB view details)

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

molbloom-2.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

molbloom-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

molbloom-2.2.1-cp38-cp38-win_amd64.whl (9.2 MB view details)

Uploaded CPython 3.8 Windows x86-64

molbloom-2.2.1-cp38-cp38-win32.whl (9.2 MB view details)

Uploaded CPython 3.8 Windows x86

molbloom-2.2.1-cp38-cp38-musllinux_1_1_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

molbloom-2.2.1-cp38-cp38-musllinux_1_1_i686.whl (9.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

molbloom-2.2.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

molbloom-2.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

molbloom-2.2.1-cp38-cp38-macosx_10_9_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

molbloom-2.2.1-cp37-cp37m-win_amd64.whl (9.2 MB view details)

Uploaded CPython 3.7m Windows x86-64

molbloom-2.2.1-cp37-cp37m-win32.whl (9.2 MB view details)

Uploaded CPython 3.7m Windows x86

molbloom-2.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

molbloom-2.2.1-cp37-cp37m-musllinux_1_1_i686.whl (9.3 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

molbloom-2.2.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

molbloom-2.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

molbloom-2.2.1-cp37-cp37m-macosx_10_9_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

molbloom-2.2.1-cp36-cp36m-win_amd64.whl (9.2 MB view details)

Uploaded CPython 3.6m Windows x86-64

molbloom-2.2.1-cp36-cp36m-win32.whl (9.2 MB view details)

Uploaded CPython 3.6m Windows x86

molbloom-2.2.1-cp36-cp36m-musllinux_1_1_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

molbloom-2.2.1-cp36-cp36m-musllinux_1_1_i686.whl (9.3 MB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

molbloom-2.2.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64 manylinux: glibc 2.5+ x86-64

molbloom-2.2.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (9.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

molbloom-2.2.1-cp36-cp36m-macosx_10_9_x86_64.whl (9.2 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file molbloom-2.2.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ed4cfac51c2f0ca40b35110cbc84d626977333be5a3b095d2946b23140715bc6
MD5 c37ef7d8ddf0d662e3c14cbe305243ec
BLAKE2b-256 019976b2cc4409270f7258af54ea678f229cf32123d31694533b5047048114d9

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9a5b5c90ec604300ad3449028b557c8e99955e61a0632967f40fab45bc71074
MD5 a452bdcdf3f0298d726fdd155aba20a4
BLAKE2b-256 debacbb66061a20bf57f9be7f1de2001491c2c70868e7350c5a3f4f3e6cdaa5c

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 527bcbfacc11a97a10543b7321cd9087d49894c0bf483ced46cba021f5c8d904
MD5 71c8d9666a2c5c4125ced9aaf883b60f
BLAKE2b-256 3425d0272a31006b052140162f295beafe853252869064052ec32ccac4bbe531

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d4a6315969cf9b901105ebe9f3e3a7cfc94787b4d9144b960aa597345cf0e873
MD5 21e3b08d9999791d40d1e07380e3931f
BLAKE2b-256 e3d281b8721d976ec1d6a7cc6487c8f8ccd22cbee40ea699e628e9200e7e938c

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 86582a4a11ff3ed88a89a2a075caeb3d676329a3154f88a145c85513b6d0d4f2
MD5 cd32ab47e3bf7850bc12ec489d9bc959
BLAKE2b-256 e30a3dabfb8c26e70719d994c7f06b19e7e051571317ad0a70236627edc321a6

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79925039cfe726aaf2dd164a475a8debe483abc14af149ddf27165fda595a1b6
MD5 f01c1ccbc3bc12a9d1c07bece0a4850d
BLAKE2b-256 39eaa2d1482244443855bf32295a4eaf7bedb88ec1030774764b77f3ecc4b443

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 618d0f103eef0a9d3bd43ce575e49cad5d145d3df1d0c9d3e9aea10f246b9ee6
MD5 58bc94f02650b16a1fa8008b5389702f
BLAKE2b-256 587c6e12d8c7028cb2efe623ac6988f35b4faa1f5419721673e44d829c4d667a

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f5e5bb96239ccc99efd93b06fe10ed6ea59cdc1e9576db6328224fafbe59597d
MD5 9460b15d4ddabcd3b5bc18b06884a8ef
BLAKE2b-256 ce8cdfc9cf600403cfe442066bc92b3751db02ed89fd925b1a9bf473ea090021

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 33919651b37c7da85740e8dd10fe8ef01ba75f4f8fa5539ece6248a020073df1
MD5 66fabb75e1372e73aaeb432c26715a2a
BLAKE2b-256 9d99968943cffc21bb987b3212540e3c112d372828853c6790c3f53dbc6a0eb4

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70ae7653f9f81f0efc54c52389ec8c5a57200d8fadc421641b7539c043c45c8a
MD5 18bb16f1c87b9c96bae0c16b49d6b59a
BLAKE2b-256 474c141c54e0b7131251247851ca33442b7c8d441c9cca1a699566545b685132

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d4aa5ed8e697657510eb1ad74345cae381bc767257b3adba2b6cc1bdf7a12180
MD5 e7ad8031287a9977a8a6510caa7820e1
BLAKE2b-256 21bf5ac8adebc9a0e5a1dd102f786182f2ff72a2fbdf42dd2984b614eaea3aed

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 536d1ab261260ed228156c583c7e6d46ea0532cf9c71b6a09daca84dd768a212
MD5 2a7c58c4a432b873bfd9c0db086bc5c4
BLAKE2b-256 1927f09afeab84e260b1b5daf5eb34e2ba09bb9f04b7208e85e3b667cac15d4b

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eb4aa6ff6f79fef9091e55e8bc2270a90406207cdd9922a77db24f86ab2135be
MD5 eade933afab0d404e1e5e70445f41535
BLAKE2b-256 ee18592fbe29b420f1eb6b09cf538a3bb0080ef7e350a0110d1d43e6822aee33

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: molbloom-2.2.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for molbloom-2.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b15e66cdd7a29d5d369fb262f39b9fb13882dc39d144b9e972491ee8c9aa757f
MD5 011f5e0c147ce3124a9d7ae5dc34ba47
BLAKE2b-256 6d6722301ff88564838709fdf73a9b07cf48433af374f63e564835d5059b217a

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8e7b3fcb1ce36b99b14f4d30ac7226718421628de3cd78c9aeec05dfd2161cc2
MD5 86f858521863570f0ae90e05513315fa
BLAKE2b-256 3776d154ef193cf307578782f9a4e235441aca1cb1b852c6732c571566921661

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bcb58d6f48bee7426f31c915ee199e71b65a24f9f6d824ab37acaf90e622abad
MD5 d5d802434de919c4b40f707a9fca3a5e
BLAKE2b-256 fea3462284ddde9fcad3bfedfc884fc74778581eacf94439666acdd484b52d14

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d181b9228bb6c27e3abf3ec538c2d70ac7cec2dc2af0ff5663e618c6cfc60fb
MD5 b4d4178b4a841143924ac19f37fec0a3
BLAKE2b-256 7bee6f9b2226fd98467f921221823e168bf6b502c6122e87bb5c2b82ba074034

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d723c741e83364a47d7418e63ce345bee7227ee1cc8b2c412a385af0c217e3e0
MD5 ef41d3f77b32da07e0890a51888a9651
BLAKE2b-256 586c726a83cc4c520c727131c0597d3a6d9428d46529c13f7b8f5e6a2991d4e6

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 22f7ccc5db5d2ce3367e87f402a01c536ded7cf0c4008a405be03f730956350f
MD5 ceed1fa64ba54ab89d92317447539bfe
BLAKE2b-256 6e198062e2f97816c67fb504cfbb4587a2689b5cf41faf7c75fed910f0a6a0f5

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6ea8a4cd025e6be1f2cc31e0ac78025b57e477e003058c5884530f086cd66f0a
MD5 5ebd1059a812ec013bcbf7fc881138d8
BLAKE2b-256 a628c87ef800c8df209e010c1a2246e7d83dab23ad45e41b252079caa497d193

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: molbloom-2.2.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for molbloom-2.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 864753f0a1ccb9adf7530d8e36795ca83959dff265eff50d1fd134a5bb7f7821
MD5 0db059c035d08800d4bbacc049cfc01f
BLAKE2b-256 300cad708135601d810d7927ee4d8e61fe3f515b738d3f519096c81db732791d

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a45793d452e8269bb40930975b7c6f2ae717e37120f6004e4bb82a3e899bdc3f
MD5 ba1302e83293f0e4489eb861b2d2eacc
BLAKE2b-256 1bcbb0236369377f50c7464f5c61c2d8ed9359c197e80b99a8a48cca18be6374

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5912d7670e7f08c12dd63528dcdd67d37b9f8721ba67bf78a0d5493df3ade13f
MD5 158ae0526f02d1931ba3d3063b7b4f88
BLAKE2b-256 759d85ae8ff4a659189f1d94e9231564b556e339185be2eb38cf60bc0607e477

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b330fb0238d52db3d81ac45036fe4a87cb48f2e1925f65dbb652562d818ad0c5
MD5 7dc7911b7a92c8112707522cf44cac97
BLAKE2b-256 0590c9d5ac87e1660b5153475325b01ff6a4a7c3b86d1abb5bca8ecb21a23732

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 55614a0bca6852477dfaf2d7a9f9dc53c205284592dc2a69b622e3a6062dc2e9
MD5 1b93d19e685d4151ee0d1696e608bf2d
BLAKE2b-256 e5dd6c9f06ef4d55c4ac79891b1f30448dc37e7a14e44ab971e171896e374b8d

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d29e40efafb975b11188ee2d1d00c9720b9e52919dacac8935d85a340998827f
MD5 dfc342c3f8f0c8d4e174413c231e5f53
BLAKE2b-256 0ea7034d9b9aa2e594c2ef1b84d6824ce8bd1e8bfa01ca5ae46c12d4d7331fa8

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 52b8183b1e0f585f7547a17d4d786a9af813c1846f2ae31b4e394f1ab6859e56
MD5 1674b75b1761070ac8836010b8fa187d
BLAKE2b-256 9fdfeb79d182ccf36a502fb311ca15181e39a999022359451fd619f087e1c598

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: molbloom-2.2.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for molbloom-2.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 27b339816df64c8a7567d3ca8b76370c5379ad1ad3253de91dea8d839e198e30
MD5 e5faf21895b8ef2a8900b62f616d911e
BLAKE2b-256 af22592aafbe51d4c938fb55038b1b40c1df922b54626579e4d5650840705b0a

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 263650a916152b2f40fdbbd8637eb3da9de44ad9b0be93d5c2f5ca64f986bb53
MD5 5422faf362b6098d1efb754f1a71126b
BLAKE2b-256 47dac9c3de1900124cc4f8f06419439ecca0ea26a60765398492fe7475ca6b0e

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9748a2e016516d026a269ca1b1518e1bd9bc24a2f6c912190eedf95315cb6b48
MD5 da83d8504310fb0ece39c6e70027865b
BLAKE2b-256 ab98ca9d1c3c5d37078b7be74595ff041712cc9cb9f714549af375de9d8fade9

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 599223401cd9117151f4b6559623efd48f6a395858d5639bdc7b7065f49843af
MD5 6e4f5826e1cd9ef5101dae4fd8a5d128
BLAKE2b-256 5adb35437186b4213155259bc42a9903b29ee3153f53943ce85f4d10c6219b40

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ebdf4c41b925981978b65f2ba1e9b9d796a9a06da53f62ec96039c4cb015bb68
MD5 2786b2435486a340b9c8b1cb2bff151e
BLAKE2b-256 2fd3e068ee28cfa00106ec76fcba22aa2a947c58cb0957024336d154ab28f629

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 423f55316b1f3f21f91b0686ac17a27dc737a2502aea8bae6f9af3072525b1c1
MD5 5f0f86bf1088f401a897eac7ae82f121
BLAKE2b-256 e3b1a55f55cf90d9b5940047b7b8f8960a9bed18122120fc572a10ced9595f90

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: molbloom-2.2.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for molbloom-2.2.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 55e061b1ba344840be2ad079e5dd36e5349f6037efc4779bac43ce5ccfc4b1eb
MD5 9ff24579117762d5e1aa6070a75b20ec
BLAKE2b-256 3cf97b6972d04a4e2c08e3e3620ec36d569d32254d216793890635f7d8ee481a

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: molbloom-2.2.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for molbloom-2.2.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f95df9c955f6876eef3508306440424c9d4b8d99cfd0e63090cee447b7871597
MD5 8ad2112ab39249220e6675d2ceb18500
BLAKE2b-256 5a04eceb4697030e91a54a397ee3b0b08c492a5c1a3183c4ca404f44373b49f7

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9ca859e1cca209f6f928abf7110e63d8f1a7f73828b4b0b1e2a3f50e614b6760
MD5 df007fc156f0e1d4c43efecb69c15010
BLAKE2b-256 be308e739d5929c7c1a7fc66e994269677b89ecb6df90a8f39df3cdc5f046e3f

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 57135514510a84ea89d56f7c7553ff41809f8674c37ed3956c740e3ee468337f
MD5 ce4c86e665a47f54cca22dae0bbf3826
BLAKE2b-256 e86c12ed057c231266fec09308c8744e2e04f57c39124d36c1e6b1a42f7a9456

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2539c4f754c2b6c40385666275391ecb3f4b7aa1c08d33b420a7caedf918a047
MD5 25ee3dde25b1013b7dac052993162a8c
BLAKE2b-256 955b1e5966702308d979ac4b7c36c4e9fc5b1c6389710492ff1c2fec8d3bf873

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 20bfe0ef2797df088142ff1d34e7a0f6b3c494b3e9c72b2d31f9508526ce0065
MD5 ba57d256ec843285e38025956ab2dc58
BLAKE2b-256 5b290432c8d208393d90c70c598bfd954e4a3cd86eabaaef37dc21f6370bee65

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 630e1f7b34e4cabdddb44bd3001edc86c7568cb1740989c155ca7912600d21a0
MD5 ff051db5be86a8b636338c7019bb4dd9
BLAKE2b-256 570678976f3b66834bfc24c19dae31d1b81c65d56ff2ce808a8b96a51dcc139d

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: molbloom-2.2.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for molbloom-2.2.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 de6e303db76b14fe7417fba30249a2821f752969691f13b9f16ba1e70099b491
MD5 50f3be7c4362a338cb893d5af1d97fef
BLAKE2b-256 a42b9bac69b71276d65150870dd618ef2d30b087452ba4ce1ecb04cc027607d1

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: molbloom-2.2.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for molbloom-2.2.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 ef39f789263581e0b6c54b7ea3eaa391a683007f1abe712bb84cbdeef6ea5d8b
MD5 35e5ea8dd3ca71350efb95d26896d8e4
BLAKE2b-256 d339aa1fc3679db7f705fa34cec2861194c51f566c20481bb039031f8306f15a

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 804c5b51e143e6bbf1d3f0fd086f2d71414c1b1ead1ae77a6109bde8676714e1
MD5 40a7d7fc098206a3c3fbc86d974f7a21
BLAKE2b-256 f30ee6f113bfaa26e65f5bf92cd10c43b24d3e9b5016936c1057c252fd9cb39f

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 519c053b50e50cc83718187d978c84e1f99ab010cefbac7d7e7a8269140a82e6
MD5 c4593fae7b54a922946a83dfad8e39ac
BLAKE2b-256 8e6cdb06aa31007903ba1d4600040178b13dd35ba8d8cbd6aacaf3cd05ce9834

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c12321e5bccf925d4518993f582fd0f7ec1456fab874e8b6f55648264c6704f9
MD5 ad15a9a6416b9ad9160df391978332c5
BLAKE2b-256 d1f9296f547c6006403f184a73e342f2bc96c33e9ceba70d7ecc273719ef8d7e

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 01cc8641738aff868c50b91845d53bfb306129a4a37b9c9bfc8756bca7902e44
MD5 d5e7d8ee3836a0155f8b3b501f318a8c
BLAKE2b-256 3aa0346bc621d57f6f890e8a4e07c48afc17a8f563c786eb4cdb138ff900da64

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b4b6278e5ff69c2a7d4d5d70c4a80ef92414fd05c7d2d0c81d8c1f5853514591
MD5 f9cee4f08d9b202e0ccd8854ec6673f9
BLAKE2b-256 e5619c375b541b492694c620aa1a422b57c4fdbf8395d6e61652613cf6f7ff87

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: molbloom-2.2.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for molbloom-2.2.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3ab4b43bfed62219c2346436ad52ab8de332a5b8b2d6c73fa85a2214fb15dbca
MD5 087ff19b994c7a30d4d5b2f39715dfed
BLAKE2b-256 045fad95eeaf0e6d2b582644075cc34905290c1c6d15a4d11b8e38ee48c82997

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: molbloom-2.2.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for molbloom-2.2.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 9f740f33a82c404a696fb6494d258a0eb339a9e1d5caa1207d45e05fca10b896
MD5 a6c02b9591602dfeaa72983d2762f471
BLAKE2b-256 a769507ce66277357e514433b754c62cc0397be2e023f4ddf03176aecda4c471

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 96709dda63d0fccaa5d19c5847b413f9889cd62e4c50978b8ca1f90ad795a0ca
MD5 9113dd0a4664545b143003894c77183f
BLAKE2b-256 7a52658e7791990ce31acc62e671f79dc41dfc473e23485c63ca5aad2f2535d1

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 dbfe6baf1402826d074dd5ae1c6c2fab08442c556b8b212e6e3c1d8360885749
MD5 a1d1c5986320f9936e68f3cb0fe25d21
BLAKE2b-256 5639676bf59028f55b9f1b447b97b64dfc14f73f4c7e1bdf23db42cfd3d60a51

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 707bd6cd148879753f6e0f7b27d74366729ea80b606c10afe1ced3b9d14104e3
MD5 5f5e048fcf3bf052f0d89276518da3c1
BLAKE2b-256 8910a7140a103d5f1c0eecb6f801a046ea0a0c2799e6f9cdb2c0dd7ba1340f46

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 09f9ade3ab8fe3817ec3e5872f31a5b44a7a3326dffbd2bbfd92eaffbbefc0a1
MD5 8a868408d7b1d7b2750202060db7c608
BLAKE2b-256 aaef6204b365d9eaf655c1bf24b55bf3c7cc576b80a46843d023b17fde62668e

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e68a8e9e772139474c7de617d53c8323359f504921c3b13f0c5c129535700106
MD5 36afca9cdb77769f149869e95bd45691
BLAKE2b-256 8619c09a1c5f9985a1b7c2a44666e8bcaae199c37b15ffafc649bd8058b902e6

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: molbloom-2.2.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for molbloom-2.2.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 fb328981592893f381167ad386009394559175ecb58c12db3c1564127c8df89c
MD5 13e7a6cef2adabd89961489c4f30fc54
BLAKE2b-256 ee645ae6a21bafba2046a63fb23f970660b304d5c8eb6807ccbfbe570d57ac9c

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: molbloom-2.2.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 9.2 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.9.19

File hashes

Hashes for molbloom-2.2.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 95fdf25feefffa15ea78dd1b80559fcd162a673a0ab827013e545f74dca12381
MD5 435cd749928a803307edfaffa9861c9c
BLAKE2b-256 5967a30980ed70d59422935e261d84dd1521a0444de1ff6f5dc3629c10642b24

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 94f1c244896bb13b487e84ebcc1260eac4a4f924591664d59d14b915f00da35f
MD5 ba5900952d9daf099a9cada36a2f28b0
BLAKE2b-256 11f3d80380f92735659b0d2cf2f83c4d0c7a47ead09179afb6381fc7207d28fa

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 9c7a134bc8a7c1ae085937062c115cae5e6892f5d85a974880656e1126763e36
MD5 e3f40bb9e5f6451afa20e8d2566c3a9f
BLAKE2b-256 288230b05e14c523976b6aca3106167b7108de10d55dcd8e964372c38daafa3e

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af2af915d1e7e7a57ed81ede63c3794d261dee745c678b7c8ddf7518c01b0e2a
MD5 b6f61b16727d4128b524596d4203a60f
BLAKE2b-256 f1fddd33d22f358e6e29d67f8a7b3285c95da218f209e7842605f4e90994b493

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5a2efeac988a099abbf9693c9eb49d34bf008aa01324860773bc1e79037cee3e
MD5 98922ae0f708e3c04e0342567082341d
BLAKE2b-256 6f108eae075d3216f26f6d3722a9d3d46672bdbcf86bce137bf1689cc4ad2103

See more details on using hashes here.

File details

Details for the file molbloom-2.2.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for molbloom-2.2.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2d3c0207b88da3f61b0d54c80ac4c57d807400d1967383e0fcd8dce2b285e89b
MD5 1ed335431efb1075c9eae6356c045876
BLAKE2b-256 ac9d30a89125bc11c77324de5bacda8d600171ebaa803a58a480dcf365c32805

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