simplebloom


Namesimplebloom JSON
Version 1.0.5 PyPI version JSON
download
home_page
SummaryA dumb but fast bloom filter.
upload_time2023-09-08 22:29:25
maintainer
docs_urlNone
author
requires_python>=3.7
licenseMIT License Copyright (c) 2021 Joachim Folz Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. From hereon included are the license texts of all bundled software.
keywords bloom filter bloomfilter
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            simplebloom
===========

simplebloom is a (probably) dumb but fast bloom filter.
To quote `Wikipedia <https://en.wikipedia.org/wiki/Bloom_filter>`_:

    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.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "simplebloom",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": "",
    "keywords": "bloom,filter,bloomfilter",
    "author": "",
    "author_email": "Joachim Folz <joachim.folz@dfki.de>",
    "download_url": "https://files.pythonhosted.org/packages/37/9c/074864405ba6540e4cfcbab2d6a45a185a93f2b3e0aea2436014b8ac468d/simplebloom-1.0.5.tar.gz",
    "platform": null,
    "description": "simplebloom\n===========\n\nsimplebloom is a (probably) dumb but fast bloom filter.\nTo quote `Wikipedia <https://en.wikipedia.org/wiki/Bloom_filter>`_:\n\n    A Bloom filter is a space-efficient probabilistic data structure,\n    conceived by Burton Howard Bloom in 1970, that is used to test\n    whether an element is a member of a set.\n    False positive matches are possible, but false negatives are not\n    \u2013 in other words, a query returns either \"possibly in set\" or\n    \"definitely not in set\".\n    Elements can be added to the set, but not removed [...];\n    the more items added, the larger the probability of false positives.\n\nThe included ``BloomFilter`` class is quite dumb as it's fixed size,\nonly supports strings, and always uses the blake2s hash function included\nwith Python 3.6+.\nBut at least it's fast, hey?\n\n\nSpeed\n-----\n\n~1.4 million elements/s on an i7-6700HQ, both adding and checking.\n\n\nUsage\n-----\n\nNote that around 98% of the execution time is spent creating UUIDs.\n\n::\n\n    import uuid\n    from simplebloom import BloomFilter\n\n    keys = [uuid.uuid4().hex for _ in range(100000)]\n    bf = BloomFilter(len(keys))\n\n    for k in keys:\n        bf += k\n\n    with open('test.filter', 'wb') as fp:\n        bf.dump(fp)\n\n    with open('test.filter', 'rb') as fp:\n        bf = BloomFilter.load(fp)\n\n    for k in keys:\n        assert k in bf\n\n    other_keys = [uuid.uuid4().hex for _ in range(1000000)]\n    fp = 0\n    for k in other_keys:\n        fp += k in bf\n    print(bf.false_positive_prob, fp / len(other_keys))\n\n\nThe BloomFilter class\n---------------------\n\nA simple but fast bloom filter.\nElements must be strings.\n\nAdd an element and check whether it is contained::\n\n    bf = BloomFilter(1000)\n    bf += 'hellobloom'\n    assert 'hellobloom' in bf\n\n``false_positive_prob`` defaults to ``1 / num_elements``.\n\nThe number of bits in the filter is\n``num_bits = num_elements * log(false_positive_prob) / log(1 / 2**log(2))``,\nrounded to the next highest multiple of 8.\n\nThe number of hash functions used is\n``num_hashes = round(num_bits / num_elements * log(2))`` .\n\nParameters:\n    num_elements: expected max number of elements in the filter\n    false_positive_prob: desired approximate false positive probability\n\n\n``BloomFilter.__iadd__`` / add element\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nUse the \"inplace add\" syntax to add elements ``bf += k``,\nwhere bf is the ``BloomFilter`` and ``k`` a string.\n\n\n``BloomFilter.__contains__`` / contains element\n~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\n\nUse the \"contains\" syntax to check if an element is (probably)\nin the filter ``k in bf``,\nwhere bf is the ``BloomFilter`` and ``k`` a string.\n\n\n``BloomFilter.load``\n~~~~~~~~~~~~~~~~~~~~\n\nLoad a filter from a path or file-like::\n\n    bf = BloomFilter.load('bloom.filter')\n\n    with open('bloom.filter', 'rb') as fp:\n        bf = BloomFilter.load(fp)\n\nParameters:\n    - fp: path or file-like\n\n\n``BloomFilter.loads``\n~~~~~~~~~~~~~~~~~~~~~\n\nLoad a filter from a buffer::\n\n    data = bf.dumps()\n    bf = BloomFilter.loads(data)\n\nParameters:\n    data: filter data\n\n\n``BloomFilter.dump``\n~~~~~~~~~~~~~~~~~~~~\n\nDump filter to a path or file-like::\n\n    bf.dump('bloom.filter')\n\n    with open('bloom.filter', 'wb') as fp:\n        bf.dump(fp)\n\nParameters:\n    - fp: path or file-like\n\n\n``BloomFilter.dumps``\n~~~~~~~~~~~~~~~~~~~~~\n\nReturns filter data as buffer::\n\n    data = bf.dumps()\n    bf = BloomFilter.loads(data)\n\n\nDeveloping\n----------\n\nExtension code is generated by Cython.\nInstall Cython to make and build changes to the extension.\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2021 Joachim Folz  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.   From hereon included are the license texts of all bundled software.",
    "summary": "A dumb but fast bloom filter.",
    "version": "1.0.5",
    "project_urls": {
        "Documentation": "https://gitlab.com/jfolz/simplebloom/blob/master/README.rst",
        "Source": "https://gitlab.com/jfolz/simplebloom",
        "Tracker": "https://gitlab.com/jfolz/simplebloom/issues"
    },
    "split_keywords": [
        "bloom",
        "filter",
        "bloomfilter"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c9f4e2c1e444179e9a408441e0296da98e1f20130e6049fd16f2c5e04e3fcdc3",
                "md5": "3ebac0a2a0a333568efd324cf42fe5f4",
                "sha256": "f60efcca1ce28dbe35c3278ef8a8d3bad9b823a05c1517820fb4a5995fdbf2f9"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3ebac0a2a0a333568efd324cf42fe5f4",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 28227,
            "upload_time": "2023-09-08T22:28:13",
            "upload_time_iso_8601": "2023-09-08T22:28:13.821936Z",
            "url": "https://files.pythonhosted.org/packages/c9/f4/e2c1e444179e9a408441e0296da98e1f20130e6049fd16f2c5e04e3fcdc3/simplebloom-1.0.5-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "36001320a49610a449f34155e34b42e20f5b7df005f8588aacaa11d47042c4a8",
                "md5": "fbf2df849ebe3a4371ab66d634f54853",
                "sha256": "94a4672fe2e679e78c8df0cb540e1226b230be9bbed54bddab260c25015ba939"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "fbf2df849ebe3a4371ab66d634f54853",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 28247,
            "upload_time": "2023-09-08T22:28:15",
            "upload_time_iso_8601": "2023-09-08T22:28:15.409056Z",
            "url": "https://files.pythonhosted.org/packages/36/00/1320a49610a449f34155e34b42e20f5b7df005f8588aacaa11d47042c4a8/simplebloom-1.0.5-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff83f344a2f8dd251065f552c604ece7c75d2f397955710ba6d0dfdf454632be",
                "md5": "46a26ee08e8c73edfd8f8353bcef610c",
                "sha256": "f3a53aa195249a8618fc42d16158295e956230bfa5555057d6a9db3f1b1538ba"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "46a26ee08e8c73edfd8f8353bcef610c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 29471,
            "upload_time": "2023-09-08T22:28:16",
            "upload_time_iso_8601": "2023-09-08T22:28:16.839518Z",
            "url": "https://files.pythonhosted.org/packages/ff/83/f344a2f8dd251065f552c604ece7c75d2f397955710ba6d0dfdf454632be/simplebloom-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e45885c51d87b38c8dd9b6b13e0726b7851c6f70d9dae78eed76d7d25af776b7",
                "md5": "aa95b36a12ab311169a199632fc8a85b",
                "sha256": "1f82b1a1f1da03052c5b63c007e30f0944d2478812ce418cd7d5a7e8593ff1fd"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "aa95b36a12ab311169a199632fc8a85b",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 30575,
            "upload_time": "2023-09-08T22:28:17",
            "upload_time_iso_8601": "2023-09-08T22:28:17.921060Z",
            "url": "https://files.pythonhosted.org/packages/e4/58/85c51d87b38c8dd9b6b13e0726b7851c6f70d9dae78eed76d7d25af776b7/simplebloom-1.0.5-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0f40696b19944dd161cdd10d7c23feb6e1f9c9be481b92259d41297f19e8b71f",
                "md5": "727a057ae094fd3c48d872b08d897cfd",
                "sha256": "3688b8d471acdafddaee481923eba0b86d31498562dd283c590df4f72ef4030e"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "727a057ae094fd3c48d872b08d897cfd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 29494,
            "upload_time": "2023-09-08T22:28:19",
            "upload_time_iso_8601": "2023-09-08T22:28:19.415731Z",
            "url": "https://files.pythonhosted.org/packages/0f/40/696b19944dd161cdd10d7c23feb6e1f9c9be481b92259d41297f19e8b71f/simplebloom-1.0.5-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23c6490f405cf2f2f9be450ffc8665a43d3e136775d392639c03e7c9d9b5178b",
                "md5": "fbe005dd557be6c6825eee64ba92bafe",
                "sha256": "4a25770310c62f5fd896dbbfd864e72b479debd003c1711ce6a25effbf73c6ca"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fbe005dd557be6c6825eee64ba92bafe",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 30556,
            "upload_time": "2023-09-08T22:28:20",
            "upload_time_iso_8601": "2023-09-08T22:28:20.359779Z",
            "url": "https://files.pythonhosted.org/packages/23/c6/490f405cf2f2f9be450ffc8665a43d3e136775d392639c03e7c9d9b5178b/simplebloom-1.0.5-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d68d20cc4a8e6429f46288d170989b8dc5f23d44b498669c22ce95043445f5b2",
                "md5": "193f6124f89d75e6707f93cab15cc422",
                "sha256": "69a472e17b5f1150f29d3600de17e57203865920ded5da7787be365914b0a459"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "193f6124f89d75e6707f93cab15cc422",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 26452,
            "upload_time": "2023-09-08T22:28:21",
            "upload_time_iso_8601": "2023-09-08T22:28:21.466704Z",
            "url": "https://files.pythonhosted.org/packages/d6/8d/20cc4a8e6429f46288d170989b8dc5f23d44b498669c22ce95043445f5b2/simplebloom-1.0.5-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a7e49b7f77f0c39e99f69ec16e3716539826f805c2519eca43ee67199ae31aa5",
                "md5": "cf701cba62307a9c2035306d97ae8c43",
                "sha256": "e07409a38890268dd2abdab3c463c3dbd63d0598fbe073a8cd81755b650945d9"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "cf701cba62307a9c2035306d97ae8c43",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 28325,
            "upload_time": "2023-09-08T22:28:22",
            "upload_time_iso_8601": "2023-09-08T22:28:22.885675Z",
            "url": "https://files.pythonhosted.org/packages/a7/e4/9b7f77f0c39e99f69ec16e3716539826f805c2519eca43ee67199ae31aa5/simplebloom-1.0.5-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04458f889700516ae481d98bd78e7f95c530c0bd1ba57199534d8c07147a02fa",
                "md5": "0db0b847dfd210887f4d0ad702e4efd4",
                "sha256": "c30c884a5a1606ff7cb2f91c2c893f95b9bd843ca5f1a3555a41f4ba17f72712"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0db0b847dfd210887f4d0ad702e4efd4",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 28313,
            "upload_time": "2023-09-08T22:28:23",
            "upload_time_iso_8601": "2023-09-08T22:28:23.908728Z",
            "url": "https://files.pythonhosted.org/packages/04/45/8f889700516ae481d98bd78e7f95c530c0bd1ba57199534d8c07147a02fa/simplebloom-1.0.5-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1c0f5b49980c1e2a11c467dea6a07e079a5b7d68ccc1e444d83d57e3b811cd49",
                "md5": "e5565235f24f04e68533ff0223b873a9",
                "sha256": "b76d10d29c46a5cd098973e12d12fc09004751d10901b198f5a6edb220394866"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e5565235f24f04e68533ff0223b873a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 28365,
            "upload_time": "2023-09-08T22:28:25",
            "upload_time_iso_8601": "2023-09-08T22:28:25.298957Z",
            "url": "https://files.pythonhosted.org/packages/1c/0f/5b49980c1e2a11c467dea6a07e079a5b7d68ccc1e444d83d57e3b811cd49/simplebloom-1.0.5-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5008c23be30f9812739447e1fee1c9c22138c2eeca6af8352bec42693dc8fd2",
                "md5": "59f7322ed8d79372a8a2652ad1253fee",
                "sha256": "4711b3ccf8c656965181454c173802e9ccec189809c274ad29d7c8178fed0b73"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "59f7322ed8d79372a8a2652ad1253fee",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 29869,
            "upload_time": "2023-09-08T22:28:26",
            "upload_time_iso_8601": "2023-09-08T22:28:26.707888Z",
            "url": "https://files.pythonhosted.org/packages/a5/00/8c23be30f9812739447e1fee1c9c22138c2eeca6af8352bec42693dc8fd2/simplebloom-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "551242b7d212c74e7daccf615f767d2076eec946a560e1baf0daa68a8cab2249",
                "md5": "a6b8a322ed6f7491aa72240dd17aba1c",
                "sha256": "d54240a176477fb20c80667b6871da199b78e9f3598b693a48ad6fc59df8169e"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a6b8a322ed6f7491aa72240dd17aba1c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 31016,
            "upload_time": "2023-09-08T22:28:28",
            "upload_time_iso_8601": "2023-09-08T22:28:28.503303Z",
            "url": "https://files.pythonhosted.org/packages/55/12/42b7d212c74e7daccf615f767d2076eec946a560e1baf0daa68a8cab2249/simplebloom-1.0.5-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "afcbaa8cb3f4abc1003cab60d5f78a17a470e309d93030a6207fc714a8a17c89",
                "md5": "4585e4d7136107ed1a9e11204712fcab",
                "sha256": "d8e5a0d07ae965d5a4d43adebf8d27a6d56cc3bd163100a6c57935a1041cb36e"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "4585e4d7136107ed1a9e11204712fcab",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 29613,
            "upload_time": "2023-09-08T22:28:29",
            "upload_time_iso_8601": "2023-09-08T22:28:29.460926Z",
            "url": "https://files.pythonhosted.org/packages/af/cb/aa8cb3f4abc1003cab60d5f78a17a470e309d93030a6207fc714a8a17c89/simplebloom-1.0.5-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7d0431362c1c55b696891d976a08858192e7d016b380a6ff04ebd13f5ccf4ba",
                "md5": "9199272aa31025caea45453efe9338ff",
                "sha256": "5b613d3c0de1b6c78990502d1ba435600d939a31bb850a17ce2cef33f9a3ab50"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9199272aa31025caea45453efe9338ff",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 30670,
            "upload_time": "2023-09-08T22:28:30",
            "upload_time_iso_8601": "2023-09-08T22:28:30.343835Z",
            "url": "https://files.pythonhosted.org/packages/e7/d0/431362c1c55b696891d976a08858192e7d016b380a6ff04ebd13f5ccf4ba/simplebloom-1.0.5-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d99243b79c6fff20e136d7d1abd0b64f27c535eac5ffdb5b9f7bd39fcdb17d51",
                "md5": "ed39036c31c4d8fe65fdc31bb7e3b999",
                "sha256": "7341dfa1864cbf8d7a6e56ef5bb79b4941b1ec3c85f12716fb40f5c00f151a1d"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "ed39036c31c4d8fe65fdc31bb7e3b999",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 26441,
            "upload_time": "2023-09-08T22:28:31",
            "upload_time_iso_8601": "2023-09-08T22:28:31.780909Z",
            "url": "https://files.pythonhosted.org/packages/d9/92/43b79c6fff20e136d7d1abd0b64f27c535eac5ffdb5b9f7bd39fcdb17d51/simplebloom-1.0.5-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "58af250d115555bc2b6ffd6820854d79d722d10c9c4f54412f2070f6fd9139e6",
                "md5": "3ddae966a52f6103e2a1c8798bf468f8",
                "sha256": "f18737e753cd2590836f549ae6cae6100070c28e4187b1ec19a83561d01a3754"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3ddae966a52f6103e2a1c8798bf468f8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 28491,
            "upload_time": "2023-09-08T22:28:33",
            "upload_time_iso_8601": "2023-09-08T22:28:33.199300Z",
            "url": "https://files.pythonhosted.org/packages/58/af/250d115555bc2b6ffd6820854d79d722d10c9c4f54412f2070f6fd9139e6/simplebloom-1.0.5-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf6dfb64cb6636d39ed6d47b28fb351607c9caa4fcd7a288ba50300b50522d73",
                "md5": "91616df70a23c38ea6397407a1ba7877",
                "sha256": "7ea7edd921d7656e03468c3e22ad8ec5ef00b379b1247f497629ea8cce4c8af3"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "91616df70a23c38ea6397407a1ba7877",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 28730,
            "upload_time": "2023-09-08T22:28:34",
            "upload_time_iso_8601": "2023-09-08T22:28:34.906894Z",
            "url": "https://files.pythonhosted.org/packages/cf/6d/fb64cb6636d39ed6d47b28fb351607c9caa4fcd7a288ba50300b50522d73/simplebloom-1.0.5-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "740d3aa937f7c1a16f4d01d6797d506a0a25e4356870248329698bd72cdf2592",
                "md5": "0ffa5fe35987562d18a39d46e49e704c",
                "sha256": "35e0b1c86d7a6b2ae55cd6d9bb6456929f5d1afa46f7f709de4ab7cb9fb316cd"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "0ffa5fe35987562d18a39d46e49e704c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 28473,
            "upload_time": "2023-09-08T22:28:35",
            "upload_time_iso_8601": "2023-09-08T22:28:35.836844Z",
            "url": "https://files.pythonhosted.org/packages/74/0d/3aa937f7c1a16f4d01d6797d506a0a25e4356870248329698bd72cdf2592/simplebloom-1.0.5-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ab5f2b645024ce0d60301b5026ec359f7091826533b8ff7bcef4f6351b1d089",
                "md5": "18aa58df023f2ffcceddb010d41e4bbd",
                "sha256": "5b6332496448298748fa41f69476e13d17ea2b8ddc149a87746979856bf35363"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "18aa58df023f2ffcceddb010d41e4bbd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 30012,
            "upload_time": "2023-09-08T22:28:36",
            "upload_time_iso_8601": "2023-09-08T22:28:36.821713Z",
            "url": "https://files.pythonhosted.org/packages/8a/b5/f2b645024ce0d60301b5026ec359f7091826533b8ff7bcef4f6351b1d089/simplebloom-1.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f1715ee56b6af42ad690ee63a9c032c40cb3d6a283a8df21b18164f45f3c3ea",
                "md5": "437bf454b3896a371ee3dee1f143a056",
                "sha256": "dceacfcb743ef016180329dedd67518c94ffec6cf02a2d1cf6297992e71047ad"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "437bf454b3896a371ee3dee1f143a056",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 31244,
            "upload_time": "2023-09-08T22:28:37",
            "upload_time_iso_8601": "2023-09-08T22:28:37.667282Z",
            "url": "https://files.pythonhosted.org/packages/9f/17/15ee56b6af42ad690ee63a9c032c40cb3d6a283a8df21b18164f45f3c3ea/simplebloom-1.0.5-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "06598b8c5e3575ee13e03bd55be0e3575ee435ecca9f98d991031a8748d9b1ee",
                "md5": "2cc09e95dc69e03b8580c45d14ad7263",
                "sha256": "0d92f9202f699cc8ced9cc819bb0b7f68634e953ea0e85ba748672ad2589ff86"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2cc09e95dc69e03b8580c45d14ad7263",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 29651,
            "upload_time": "2023-09-08T22:28:38",
            "upload_time_iso_8601": "2023-09-08T22:28:38.699167Z",
            "url": "https://files.pythonhosted.org/packages/06/59/8b8c5e3575ee13e03bd55be0e3575ee435ecca9f98d991031a8748d9b1ee/simplebloom-1.0.5-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "79f422847178cea6c3489514f8300e042951c1977bf1ef28406d91d4c6c21ff1",
                "md5": "7e8b57487a5ae632cbcadabf218d9a4e",
                "sha256": "d7438769a744ad9f0b04892b61fe03129443d36d68a2b6659c0302d935755c99"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7e8b57487a5ae632cbcadabf218d9a4e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 30985,
            "upload_time": "2023-09-08T22:28:40",
            "upload_time_iso_8601": "2023-09-08T22:28:40.086805Z",
            "url": "https://files.pythonhosted.org/packages/79/f4/22847178cea6c3489514f8300e042951c1977bf1ef28406d91d4c6c21ff1/simplebloom-1.0.5-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54d41803490a017e0e12d2414c0c4b411594f37b27156551a4c2854a324c8cf5",
                "md5": "ab1ca40ac41c7749dceb8f0a6fb891f3",
                "sha256": "af670098226110831cc21a6e6c9bb21b660316a6843a558d9c08713b26625419"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "ab1ca40ac41c7749dceb8f0a6fb891f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 26760,
            "upload_time": "2023-09-08T22:28:40",
            "upload_time_iso_8601": "2023-09-08T22:28:40.930661Z",
            "url": "https://files.pythonhosted.org/packages/54/d4/1803490a017e0e12d2414c0c4b411594f37b27156551a4c2854a324c8cf5/simplebloom-1.0.5-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d5e08c121ddb4d8d28db0768f403c8d36e607c8d1c18e6aa18056614492a0618",
                "md5": "ca77b5a7cb0c80bd158ab70db54ba6d9",
                "sha256": "a9aa1f1958ec98737f1416401d4580b9a4ed3bb6394db4d2eb4c7da7acddca8b"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "ca77b5a7cb0c80bd158ab70db54ba6d9",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 28738,
            "upload_time": "2023-09-08T22:28:41",
            "upload_time_iso_8601": "2023-09-08T22:28:41.826536Z",
            "url": "https://files.pythonhosted.org/packages/d5/e0/8c121ddb4d8d28db0768f403c8d36e607c8d1c18e6aa18056614492a0618/simplebloom-1.0.5-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "802ee6b1eb1f0dd1c684f7f27ea037cd2131bcd976225c440d5159f434952726",
                "md5": "afcc05c45eb0b093331fa99dc1c5592a",
                "sha256": "4129778e1673b6d6ae7e8969466d203aa3597758796c9574ba3ad69845423e83"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "afcc05c45eb0b093331fa99dc1c5592a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 29422,
            "upload_time": "2023-09-08T22:28:43",
            "upload_time_iso_8601": "2023-09-08T22:28:43.321631Z",
            "url": "https://files.pythonhosted.org/packages/80/2e/e6b1eb1f0dd1c684f7f27ea037cd2131bcd976225c440d5159f434952726/simplebloom-1.0.5-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c851c72b2f627a13166397dc41f0d15eea85c83e4074b9a57f3c879992154604",
                "md5": "059756c52c6880c4812b44d748c3eb3d",
                "sha256": "7a7ab3bf304e19b7251d0f75af4658f956e3ea129bb065bc510baa514c75f4a9"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "059756c52c6880c4812b44d748c3eb3d",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 30612,
            "upload_time": "2023-09-08T22:28:44",
            "upload_time_iso_8601": "2023-09-08T22:28:44.757981Z",
            "url": "https://files.pythonhosted.org/packages/c8/51/c72b2f627a13166397dc41f0d15eea85c83e4074b9a57f3c879992154604/simplebloom-1.0.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59437fda9a10f344a7140b504a9a7d6de92626f6058c0bba65b3371f65e08788",
                "md5": "359c49fec3f1d45c4205e4ef9b6f2e5e",
                "sha256": "76ebadda28a2586d714647c3d766afbf92570c638824bb66f7d14c431a77793f"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "359c49fec3f1d45c4205e4ef9b6f2e5e",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 31392,
            "upload_time": "2023-09-08T22:28:45",
            "upload_time_iso_8601": "2023-09-08T22:28:45.614965Z",
            "url": "https://files.pythonhosted.org/packages/59/43/7fda9a10f344a7140b504a9a7d6de92626f6058c0bba65b3371f65e08788/simplebloom-1.0.5-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d274dc868e9ee1a314059791150c7fe70f8c65f38688e3c58283619849e021a4",
                "md5": "1a9602dc9c5db0ca0a0f15f0453d47b6",
                "sha256": "fdfcf8ec791b4374939a6bac99a5dcaf5d9717284e3a27d3124f5294abd2a251"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1a9602dc9c5db0ca0a0f15f0453d47b6",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 30618,
            "upload_time": "2023-09-08T22:28:47",
            "upload_time_iso_8601": "2023-09-08T22:28:47.075622Z",
            "url": "https://files.pythonhosted.org/packages/d2/74/dc868e9ee1a314059791150c7fe70f8c65f38688e3c58283619849e021a4/simplebloom-1.0.5-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "31da4ca506faa6477d2a424f698f20bab8058579f214422f290a9cdad234b928",
                "md5": "171c955b0b467b1da34c04e796538611",
                "sha256": "cdd7d95d37a4c06f6f9d939559a99fb09f91f6661773fb924f5666e516f640e2"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "171c955b0b467b1da34c04e796538611",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 31440,
            "upload_time": "2023-09-08T22:28:48",
            "upload_time_iso_8601": "2023-09-08T22:28:48.099441Z",
            "url": "https://files.pythonhosted.org/packages/31/da/4ca506faa6477d2a424f698f20bab8058579f214422f290a9cdad234b928/simplebloom-1.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a2b4e2541bfcb92ad60b1012f2578a17ba2716bb919287c6f530e65dc792c210",
                "md5": "9cbffab0d3c23005b7e02399ae8d51cf",
                "sha256": "269b712b259d50a1f9890635c6fbd57cf61755974e7c7364dcecb0dda52776f1"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "9cbffab0d3c23005b7e02399ae8d51cf",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 27193,
            "upload_time": "2023-09-08T22:28:48",
            "upload_time_iso_8601": "2023-09-08T22:28:48.980479Z",
            "url": "https://files.pythonhosted.org/packages/a2/b4/e2541bfcb92ad60b1012f2578a17ba2716bb919287c6f530e65dc792c210/simplebloom-1.0.5-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0a7c7a5e20acfc5649a8f6b57fb8dd2c3fb488bb7205d83d0dc3bb01edc34483",
                "md5": "e0c6dc24db110220100795dd03735696",
                "sha256": "4fe212f8ea0b95b9693a8ede3947bffc2ae980e3d8515ab06ac414c753974698"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "e0c6dc24db110220100795dd03735696",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 29473,
            "upload_time": "2023-09-08T22:28:50",
            "upload_time_iso_8601": "2023-09-08T22:28:50.055939Z",
            "url": "https://files.pythonhosted.org/packages/0a/7c/7a5e20acfc5649a8f6b57fb8dd2c3fb488bb7205d83d0dc3bb01edc34483/simplebloom-1.0.5-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2b56ddb14f0fb3459fcd8f99c11af25aa48ccb591fd63f19293c60b725d084e7",
                "md5": "44e0b055bf4a04473fb467b39bf73cd5",
                "sha256": "2f924748d7d35109a60c85db59b72ce53a1357c66b28c58e853137b908a99ea4"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44e0b055bf4a04473fb467b39bf73cd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 29232,
            "upload_time": "2023-09-08T22:28:51",
            "upload_time_iso_8601": "2023-09-08T22:28:51.024546Z",
            "url": "https://files.pythonhosted.org/packages/2b/56/ddb14f0fb3459fcd8f99c11af25aa48ccb591fd63f19293c60b725d084e7/simplebloom-1.0.5-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b729f214203e3e313f52a5abd0047fe0ac63d3c0fa104fa42ae08d0ce685c529",
                "md5": "2d04c4fea736da68ad47e21e07d447c3",
                "sha256": "aa4917f6bdd437241f25a598479000a70b2ce9ca6f4732c33660f2a33a7848fe"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2d04c4fea736da68ad47e21e07d447c3",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 29106,
            "upload_time": "2023-09-08T22:28:51",
            "upload_time_iso_8601": "2023-09-08T22:28:51.904856Z",
            "url": "https://files.pythonhosted.org/packages/b7/29/f214203e3e313f52a5abd0047fe0ac63d3c0fa104fa42ae08d0ce685c529/simplebloom-1.0.5-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "40aba6eecb3a8d2ab064c58494ee7ab1ceb231d88b7f65e1b55d93da627ac80e",
                "md5": "ad7265917c62fe40e1935c37cd71809f",
                "sha256": "3cf4d52830d660ca7a14e03812119f2917c8f7b3a85e59b84345a1144f349e0e"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ad7265917c62fe40e1935c37cd71809f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 30205,
            "upload_time": "2023-09-08T22:28:53",
            "upload_time_iso_8601": "2023-09-08T22:28:53.009274Z",
            "url": "https://files.pythonhosted.org/packages/40/ab/a6eecb3a8d2ab064c58494ee7ab1ceb231d88b7f65e1b55d93da627ac80e/simplebloom-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3f08fb326151b26cb13dd758300801d15de22796e274a6c977a7a6dee4ba5207",
                "md5": "4e89c1a9ba6ccbbd025e3d1aa6cace9c",
                "sha256": "a3e4560c4077554b5837b340ff7c1dd5134494d65f2ead1b004f58a9657e9a6c"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "4e89c1a9ba6ccbbd025e3d1aa6cace9c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 31119,
            "upload_time": "2023-09-08T22:28:53",
            "upload_time_iso_8601": "2023-09-08T22:28:53.926485Z",
            "url": "https://files.pythonhosted.org/packages/3f/08/fb326151b26cb13dd758300801d15de22796e274a6c977a7a6dee4ba5207/simplebloom-1.0.5-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b99dde34e996c901bf964e82d049ffdba974edcaa85a42ea40dfdbecd4463bc1",
                "md5": "cfe92940565e5b537a1ef2d189d88e02",
                "sha256": "4153f81a585f035e6ff5d7736b01ffecc82a6c893274c05ab660d61769a62a98"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "cfe92940565e5b537a1ef2d189d88e02",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 30347,
            "upload_time": "2023-09-08T22:28:54",
            "upload_time_iso_8601": "2023-09-08T22:28:54.810553Z",
            "url": "https://files.pythonhosted.org/packages/b9/9d/de34e996c901bf964e82d049ffdba974edcaa85a42ea40dfdbecd4463bc1/simplebloom-1.0.5-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b908d411654f62ec2b5c7bffcaa9813ed2b1cfc28cb0f96c082792c2932bbf2a",
                "md5": "d1c26aa598bf3fb184e429cef8d090e5",
                "sha256": "ba9b718a37a7cd928259e5b19e7154609068e58d00317bff0e05c7b8ca1268a4"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d1c26aa598bf3fb184e429cef8d090e5",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 31142,
            "upload_time": "2023-09-08T22:28:56",
            "upload_time_iso_8601": "2023-09-08T22:28:56.315392Z",
            "url": "https://files.pythonhosted.org/packages/b9/08/d411654f62ec2b5c7bffcaa9813ed2b1cfc28cb0f96c082792c2932bbf2a/simplebloom-1.0.5-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d0ed73bc50aa4c4d6209a7dd54a161a0d621e4ae8be75b6db446c9720a2c1c2",
                "md5": "9f3c5c7074fdf480fc938571b538cd36",
                "sha256": "b01c020e4b522622009ca8c6e84e4837d85cada52d2ea758eb274d26df856610"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "9f3c5c7074fdf480fc938571b538cd36",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 27021,
            "upload_time": "2023-09-08T22:28:57",
            "upload_time_iso_8601": "2023-09-08T22:28:57.407154Z",
            "url": "https://files.pythonhosted.org/packages/1d/0e/d73bc50aa4c4d6209a7dd54a161a0d621e4ae8be75b6db446c9720a2c1c2/simplebloom-1.0.5-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "272b0611d9e45ada3c44d193f5db528382c30a2f1482f602ca54abdcd79c02ee",
                "md5": "b5798dca49faec32f185828b562c6f3b",
                "sha256": "05ca5f0e11a3d62757c1729797246c9f73bc1d886101a9255ba8792330706631"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b5798dca49faec32f185828b562c6f3b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 28993,
            "upload_time": "2023-09-08T22:28:58",
            "upload_time_iso_8601": "2023-09-08T22:28:58.277029Z",
            "url": "https://files.pythonhosted.org/packages/27/2b/0611d9e45ada3c44d193f5db528382c30a2f1482f602ca54abdcd79c02ee/simplebloom-1.0.5-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e6d09914a3f9dbaeaeda740b41356620eb11c6632a1a98b3fbfea7a833b52fe",
                "md5": "b1630b0bca031f76eea1eefe7fd1bb0c",
                "sha256": "4657493401e332b9587d2190691d356641ef1730ff976358ef8443b4855bce1c"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b1630b0bca031f76eea1eefe7fd1bb0c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 28900,
            "upload_time": "2023-09-08T22:28:59",
            "upload_time_iso_8601": "2023-09-08T22:28:59.136403Z",
            "url": "https://files.pythonhosted.org/packages/1e/6d/09914a3f9dbaeaeda740b41356620eb11c6632a1a98b3fbfea7a833b52fe/simplebloom-1.0.5-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a505a63049ee5a36ff6f4204dd27acf694bffe247c4a5779deda8a5b1d51967a",
                "md5": "e592b82df7a1e2ea02ea9b30f82c4c05",
                "sha256": "9f84ec79ea8bbd8c070a358fd0b229d2fa72cdde047ece775c322f0b34d1f4bc"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e592b82df7a1e2ea02ea9b30f82c4c05",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 28858,
            "upload_time": "2023-09-08T22:29:00",
            "upload_time_iso_8601": "2023-09-08T22:29:00.168116Z",
            "url": "https://files.pythonhosted.org/packages/a5/05/a63049ee5a36ff6f4204dd27acf694bffe247c4a5779deda8a5b1d51967a/simplebloom-1.0.5-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a832cd27e0527b3e4dbf045730d6d9a0693b45b2ba4cab490d6488f3c16a0842",
                "md5": "523e00b1c735595b070d3d235104952d",
                "sha256": "cfa1015651baf0e3a5e32a2d1cfa94b32933a91568fc3f17495fe07cd64320cd"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "523e00b1c735595b070d3d235104952d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 30025,
            "upload_time": "2023-09-08T22:29:01",
            "upload_time_iso_8601": "2023-09-08T22:29:01.404807Z",
            "url": "https://files.pythonhosted.org/packages/a8/32/cd27e0527b3e4dbf045730d6d9a0693b45b2ba4cab490d6488f3c16a0842/simplebloom-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "98d044dca6df47cdd0f46a1e596041fd8145f63e8e2f4d65798d519a0e78f757",
                "md5": "b95ec164a019a9835e566c236bb6b111",
                "sha256": "d70569dea92318e8936753af678c15a85df156d9d871b950aa7e79296a448cc0"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b95ec164a019a9835e566c236bb6b111",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 31055,
            "upload_time": "2023-09-08T22:29:02",
            "upload_time_iso_8601": "2023-09-08T22:29:02.508243Z",
            "url": "https://files.pythonhosted.org/packages/98/d0/44dca6df47cdd0f46a1e596041fd8145f63e8e2f4d65798d519a0e78f757/simplebloom-1.0.5-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7abad3a7aced309d9e1ad1ddf938e908eebe872a4b8f5f9bccfcf1ba76be0c85",
                "md5": "d2bff5659cd527b410124402f2bba62a",
                "sha256": "d4af3f1d2eb4b4eedc6576fb1331a7f63084f6fd3baebbc539085a6d3cdcf8d9"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d2bff5659cd527b410124402f2bba62a",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 30123,
            "upload_time": "2023-09-08T22:29:03",
            "upload_time_iso_8601": "2023-09-08T22:29:03.469722Z",
            "url": "https://files.pythonhosted.org/packages/7a/ba/d3a7aced309d9e1ad1ddf938e908eebe872a4b8f5f9bccfcf1ba76be0c85/simplebloom-1.0.5-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "afb17d146d54d673208b75fdc0753b0ddef4e73c8f205a8b0baaf7d61598ecee",
                "md5": "9dbb89071d30ead18b01c875889402b0",
                "sha256": "396660bfef175058ceeec56fde77f4adc4437cc06ff2d72a09f082f48aabcbeb"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9dbb89071d30ead18b01c875889402b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 31053,
            "upload_time": "2023-09-08T22:29:04",
            "upload_time_iso_8601": "2023-09-08T22:29:04.374779Z",
            "url": "https://files.pythonhosted.org/packages/af/b1/7d146d54d673208b75fdc0753b0ddef4e73c8f205a8b0baaf7d61598ecee/simplebloom-1.0.5-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9972ab097de45b8d7cbd577a070781d7371eb80a48bf3781774df8b2c8b2444c",
                "md5": "32841b3c4f5496e65e4676f7a8c59c5b",
                "sha256": "0e29020b5cac28cc2db50d72c73ce7c2bf7ab61d999ae1ea39cae6732d4e69fb"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "32841b3c4f5496e65e4676f7a8c59c5b",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 26989,
            "upload_time": "2023-09-08T22:29:05",
            "upload_time_iso_8601": "2023-09-08T22:29:05.297643Z",
            "url": "https://files.pythonhosted.org/packages/99/72/ab097de45b8d7cbd577a070781d7371eb80a48bf3781774df8b2c8b2444c/simplebloom-1.0.5-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ba3816d587a887d6ec26a3cbf0df04d42c2e70df5354defafff63d32304493d6",
                "md5": "8b3e3b3716045a2753848f8fcbe9195c",
                "sha256": "85b1e4a5ddd4d23c662aeca569ac9059d10e9d7a31923246c8af43cc27affd05"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8b3e3b3716045a2753848f8fcbe9195c",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 28924,
            "upload_time": "2023-09-08T22:29:06",
            "upload_time_iso_8601": "2023-09-08T22:29:06.185555Z",
            "url": "https://files.pythonhosted.org/packages/ba/38/16d587a887d6ec26a3cbf0df04d42c2e70df5354defafff63d32304493d6/simplebloom-1.0.5-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8bd0c1e4a7735d70d254587511738ca22db320bc2b780eb1d58678cf4afef424",
                "md5": "a45fbf79914f06ccabe696e02cf6e052",
                "sha256": "a85180a014191887541c096b3d517f2b2bdbc644e2737449b24e0e3d05ac4eef"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a45fbf79914f06ccabe696e02cf6e052",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 23602,
            "upload_time": "2023-09-08T22:29:07",
            "upload_time_iso_8601": "2023-09-08T22:29:07.813025Z",
            "url": "https://files.pythonhosted.org/packages/8b/d0/c1e4a7735d70d254587511738ca22db320bc2b780eb1d58678cf4afef424/simplebloom-1.0.5-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b7e9a56ab1dbce69a80ceb7d98f8faa2e55733eb254d173e92435ed653a2e81",
                "md5": "d6c31e51b6b50b87aa39f81491cfa863",
                "sha256": "eeee5696d85ca9a103c2102135080c43dc86d5b11cce80b55eabd3a68e41d6ee"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d6c31e51b6b50b87aa39f81491cfa863",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 25636,
            "upload_time": "2023-09-08T22:29:08",
            "upload_time_iso_8601": "2023-09-08T22:29:08.737315Z",
            "url": "https://files.pythonhosted.org/packages/7b/7e/9a56ab1dbce69a80ceb7d98f8faa2e55733eb254d173e92435ed653a2e81/simplebloom-1.0.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23aed771c4c69a72328caa0a339a86128d0e8d2d487553bd2840eabda8c87372",
                "md5": "429e22b9823e83d424e0711d31757de8",
                "sha256": "c3b288138a2e5eb7e667d06573d4f61a9b525cf9b7f2bedabaa89ee43ff58c0a"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "429e22b9823e83d424e0711d31757de8",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 26260,
            "upload_time": "2023-09-08T22:29:09",
            "upload_time_iso_8601": "2023-09-08T22:29:09.654216Z",
            "url": "https://files.pythonhosted.org/packages/23/ae/d771c4c69a72328caa0a339a86128d0e8d2d487553bd2840eabda8c87372/simplebloom-1.0.5-pp310-pypy310_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3c969df9dc4830f15580999bc5719fb188ab8bd0bdef63be4fb216287407045a",
                "md5": "a3e22fb6bfaca67cf5de73f05935b12c",
                "sha256": "865b4d03d8c81f95e4e7933ba187413966930116ece9e4b91f395a4572575519"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a3e22fb6bfaca67cf5de73f05935b12c",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 25245,
            "upload_time": "2023-09-08T22:29:11",
            "upload_time_iso_8601": "2023-09-08T22:29:11.194777Z",
            "url": "https://files.pythonhosted.org/packages/3c/96/9df9dc4830f15580999bc5719fb188ab8bd0bdef63be4fb216287407045a/simplebloom-1.0.5-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9cb3128dec1e1520e31c4958acee1db17d7fee37f53da06e85d9f71ad8d49ad1",
                "md5": "a07a89a31d1739cb6cb63f7e06cdac50",
                "sha256": "7ef1dba17df7b2c14afd253f14e2b1e8ec8dbc6b35edfaa1751793b8c1283d82"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a07a89a31d1739cb6cb63f7e06cdac50",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 22873,
            "upload_time": "2023-09-08T22:29:12",
            "upload_time_iso_8601": "2023-09-08T22:29:12.316757Z",
            "url": "https://files.pythonhosted.org/packages/9c/b3/128dec1e1520e31c4958acee1db17d7fee37f53da06e85d9f71ad8d49ad1/simplebloom-1.0.5-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cf8310a6c4ccec8815e985178e400faa22194c158cfcd5b173f77d0410eda951",
                "md5": "8f1038e5b2b50bd2f104756926249245",
                "sha256": "38147aacdba1448e6ca653da54b997ad1765dc784139862db04f3da2cf1215c7"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8f1038e5b2b50bd2f104756926249245",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 24930,
            "upload_time": "2023-09-08T22:29:13",
            "upload_time_iso_8601": "2023-09-08T22:29:13.338812Z",
            "url": "https://files.pythonhosted.org/packages/cf/83/10a6c4ccec8815e985178e400faa22194c158cfcd5b173f77d0410eda951/simplebloom-1.0.5-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "42c9ce96f00bc9c1c7a430e864d30c6ab19d79fd599db29fa05cbd5cd8ab400e",
                "md5": "dfcb14edfc4628940ccf7de037ea4f12",
                "sha256": "a831834b93c6af37e142396e805ea4952b568b1e7fd0f79368f10a2ef47b7991"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dfcb14edfc4628940ccf7de037ea4f12",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 25547,
            "upload_time": "2023-09-08T22:29:14",
            "upload_time_iso_8601": "2023-09-08T22:29:14.365744Z",
            "url": "https://files.pythonhosted.org/packages/42/c9/ce96f00bc9c1c7a430e864d30c6ab19d79fd599db29fa05cbd5cd8ab400e/simplebloom-1.0.5-pp37-pypy37_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8b4bf1cb9c0c05fcd6b39084a0815e65f71be051e9e9d37a192945779022b755",
                "md5": "6267c9f80013edd4dbe8d649c58e18aa",
                "sha256": "85c36e046fdfe0879918000decbac25e92e5d333ea682756fed06f7238ecb91d"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6267c9f80013edd4dbe8d649c58e18aa",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 24544,
            "upload_time": "2023-09-08T22:29:15",
            "upload_time_iso_8601": "2023-09-08T22:29:15.298945Z",
            "url": "https://files.pythonhosted.org/packages/8b/4b/f1cb9c0c05fcd6b39084a0815e65f71be051e9e9d37a192945779022b755/simplebloom-1.0.5-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "30b4c22d0d1fae5b54055de6f15021b26de3560a840c9cacfc944f3e92146dc1",
                "md5": "9ea473634880716ab5247784c54532a7",
                "sha256": "a86eeec1f18e7329988afd1b89214dcafd1be859b9cc5567f526d34dc8fec578"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9ea473634880716ab5247784c54532a7",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 22869,
            "upload_time": "2023-09-08T22:29:16",
            "upload_time_iso_8601": "2023-09-08T22:29:16.387180Z",
            "url": "https://files.pythonhosted.org/packages/30/b4/c22d0d1fae5b54055de6f15021b26de3560a840c9cacfc944f3e92146dc1/simplebloom-1.0.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a704faeeab834f0d71f4e4dd22b6fac4597759d40884b7670a9ab45e6eac045b",
                "md5": "de4854c3ba69bf844d37c0f76f872d4d",
                "sha256": "4de92ba69ad4981dc23600edf6f584ab060a1fb793279fa6bc3c004d2d87bbdd"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "de4854c3ba69bf844d37c0f76f872d4d",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 24935,
            "upload_time": "2023-09-08T22:29:17",
            "upload_time_iso_8601": "2023-09-08T22:29:17.337583Z",
            "url": "https://files.pythonhosted.org/packages/a7/04/faeeab834f0d71f4e4dd22b6fac4597759d40884b7670a9ab45e6eac045b/simplebloom-1.0.5-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c115e99a83516abf26b1fa379ded7d5ea879625ec716ea6a92cb8f9276d734bf",
                "md5": "79193bb445144eb24615e3b5be3b896a",
                "sha256": "ce52195cf69c73cbfa34f79b770d1a06d59e189abafa591a57f5886e86f3c7ec"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "79193bb445144eb24615e3b5be3b896a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 25547,
            "upload_time": "2023-09-08T22:29:18",
            "upload_time_iso_8601": "2023-09-08T22:29:18.346129Z",
            "url": "https://files.pythonhosted.org/packages/c1/15/e99a83516abf26b1fa379ded7d5ea879625ec716ea6a92cb8f9276d734bf/simplebloom-1.0.5-pp38-pypy38_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "429b5500c38a5e31d873e5777f0248c6f036d9b390d6f6b27185779626a2759a",
                "md5": "4ab92681348ad8299e0560b6d90c6cf4",
                "sha256": "6c9edd43386c0299fea8a3bc4100b6e5c1eddeaec94f4374f42f46782f04f9d0"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4ab92681348ad8299e0560b6d90c6cf4",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 24536,
            "upload_time": "2023-09-08T22:29:19",
            "upload_time_iso_8601": "2023-09-08T22:29:19.878314Z",
            "url": "https://files.pythonhosted.org/packages/42/9b/5500c38a5e31d873e5777f0248c6f036d9b390d6f6b27185779626a2759a/simplebloom-1.0.5-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bcee85ee1ff8ab0720cc352ea3564e996c65c26371e0c4091686beff1568336f",
                "md5": "0d97398e8861f9d22e40a16e1e0d0ae2",
                "sha256": "a3db17190ffacb66f2c4f4003fc3932ac77e7d8c2406c35da0d04a27c9673fa4"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0d97398e8861f9d22e40a16e1e0d0ae2",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 23541,
            "upload_time": "2023-09-08T22:29:20",
            "upload_time_iso_8601": "2023-09-08T22:29:20.831852Z",
            "url": "https://files.pythonhosted.org/packages/bc/ee/85ee1ff8ab0720cc352ea3564e996c65c26371e0c4091686beff1568336f/simplebloom-1.0.5-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f8a31bd96d035cfc5f6783330e07aa1412be7060beb0794f4f307900f3b956cc",
                "md5": "b7114cc80c93f6d9e1b916e1fa065f0a",
                "sha256": "bb1bfd3f3159cabcb8cc5a351f44e54a28001390ad164ab91be3e26809958aff"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "b7114cc80c93f6d9e1b916e1fa065f0a",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 25608,
            "upload_time": "2023-09-08T22:29:21",
            "upload_time_iso_8601": "2023-09-08T22:29:21.824212Z",
            "url": "https://files.pythonhosted.org/packages/f8/a3/1bd96d035cfc5f6783330e07aa1412be7060beb0794f4f307900f3b956cc/simplebloom-1.0.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "226338fbfc5871b29f1fda39fdde0e80404f3abf7f1ba5a6cef2d4f2ba6f57c2",
                "md5": "160fd9771538fd74a55a53f4d0753627",
                "sha256": "514ec995a9c434df893d6a54bec93d66f315aacb546deee926fcb24da015656e"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "160fd9771538fd74a55a53f4d0753627",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 26188,
            "upload_time": "2023-09-08T22:29:23",
            "upload_time_iso_8601": "2023-09-08T22:29:23.594855Z",
            "url": "https://files.pythonhosted.org/packages/22/63/38fbfc5871b29f1fda39fdde0e80404f3abf7f1ba5a6cef2d4f2ba6f57c2/simplebloom-1.0.5-pp39-pypy39_pp73-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6b1ea592055731464df1888d36f48696ab67ad410ed01be0cc28d0b5b62b3950",
                "md5": "8424871e798d82b18b6cd5a37c3ad247",
                "sha256": "4eab9f3e27c0586df12883c9c3e33544cd8a3bc4ee12e76aa8fc4229774e515f"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8424871e798d82b18b6cd5a37c3ad247",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 25221,
            "upload_time": "2023-09-08T22:29:24",
            "upload_time_iso_8601": "2023-09-08T22:29:24.692256Z",
            "url": "https://files.pythonhosted.org/packages/6b/1e/a592055731464df1888d36f48696ab67ad410ed01be0cc28d0b5b62b3950/simplebloom-1.0.5-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "379c074864405ba6540e4cfcbab2d6a45a185a93f2b3e0aea2436014b8ac468d",
                "md5": "c2c84bb2e58ab133e5a114d41b88dc7d",
                "sha256": "11d8d1e053049d0744bb6ce7689c2e4ac80b6faef23077dcf1c04c17ba1c67e8"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.5.tar.gz",
            "has_sig": false,
            "md5_digest": "c2c84bb2e58ab133e5a114d41b88dc7d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 65623,
            "upload_time": "2023-09-08T22:29:25",
            "upload_time_iso_8601": "2023-09-08T22:29:25.638361Z",
            "url": "https://files.pythonhosted.org/packages/37/9c/074864405ba6540e4cfcbab2d6a45a185a93f2b3e0aea2436014b8ac468d/simplebloom-1.0.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-09-08 22:29:25",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "codeberg": false,
    "gitlab_user": "jfolz",
    "gitlab_project": "simplebloom",
    "lcname": "simplebloom"
}
        
Elapsed time: 0.11200s