simplebloom


Namesimplebloom JSON
Version 1.0.6 PyPI version JSON
download
home_pageNone
SummaryA dumb but fast bloom filter.
upload_time2024-08-10 09:43:46
maintainerNone
docs_urlNone
authorNone
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": null,
    "name": "simplebloom",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "bloom, filter, bloomfilter",
    "author": null,
    "author_email": "Joachim Folz <joachim.folz@dfki.de>",
    "download_url": "https://files.pythonhosted.org/packages/26/cc/cff30146afaa0d0baa4cfd02faca5a2a9521d3c3d60687cf98aa7508ef39/simplebloom-1.0.6.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.6",
    "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": "40fcb320ab7618a65859dcd2d8beb0f2a821e6c0cfcbb9c3499e602a10ac83dd",
                "md5": "07f1615f47a96538cfa7b93c5dcdfb07",
                "sha256": "ec4576945e3d45546b2c4235226b87f47e26e3bdf49f0c19735272ecb6922d3f"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "07f1615f47a96538cfa7b93c5dcdfb07",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 28391,
            "upload_time": "2024-08-10T09:42:17",
            "upload_time_iso_8601": "2024-08-10T09:42:17.112116Z",
            "url": "https://files.pythonhosted.org/packages/40/fc/b320ab7618a65859dcd2d8beb0f2a821e6c0cfcbb9c3499e602a10ac83dd/simplebloom-1.0.6-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "46e89564d2b36004ce0b2a826444d11a92f51887ac532c586093b0ef946a3e85",
                "md5": "377a35a22786bd8c67cc47b7dfc6e876",
                "sha256": "990d38e3606d2fdfc56a15f3fbc505511cadedd18dc477334d5705faaa02f64c"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "377a35a22786bd8c67cc47b7dfc6e876",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 28914,
            "upload_time": "2024-08-10T09:42:18",
            "upload_time_iso_8601": "2024-08-10T09:42:18.987436Z",
            "url": "https://files.pythonhosted.org/packages/46/e8/9564d2b36004ce0b2a826444d11a92f51887ac532c586093b0ef946a3e85/simplebloom-1.0.6-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f3d7732daeecafdbd3ed621f0d8546014a6248e759970fb6c5887545ac97515f",
                "md5": "054e1b6f9d81dbdc82430f1bae0d4cb1",
                "sha256": "87803cabd28dab3ff90f2c1da1d1e78ee5247f6b97e4ea3a2719c2c8766267c9"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "054e1b6f9d81dbdc82430f1bae0d4cb1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 29371,
            "upload_time": "2024-08-10T09:42:20",
            "upload_time_iso_8601": "2024-08-10T09:42:20.299629Z",
            "url": "https://files.pythonhosted.org/packages/f3/d7/732daeecafdbd3ed621f0d8546014a6248e759970fb6c5887545ac97515f/simplebloom-1.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5a770d3c3bd4704cff63216ff65aa4c12b6186a5851d479c40668e9d389c01de",
                "md5": "ece59966cff88af836410172798e1075",
                "sha256": "509de29b09d241ca26a7a0a1aa023810b42a2fda50375c0fb28e9e9045ff26fb"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ece59966cff88af836410172798e1075",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 30508,
            "upload_time": "2024-08-10T09:42:21",
            "upload_time_iso_8601": "2024-08-10T09:42:21.485260Z",
            "url": "https://files.pythonhosted.org/packages/5a/77/0d3c3bd4704cff63216ff65aa4c12b6186a5851d479c40668e9d389c01de/simplebloom-1.0.6-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": "70822cba1df0b0c5e6b3dc0362859477d983c673b086518ac2c6ec1d0892f6db",
                "md5": "be57268070db89552614747eb56b90c8",
                "sha256": "de24410faf275e582306bca01ff8c600be9e5fd82d0ebdd66ec8be94dfea262f"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp310-cp310-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "be57268070db89552614747eb56b90c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 29952,
            "upload_time": "2024-08-10T09:42:22",
            "upload_time_iso_8601": "2024-08-10T09:42:22.799459Z",
            "url": "https://files.pythonhosted.org/packages/70/82/2cba1df0b0c5e6b3dc0362859477d983c673b086518ac2c6ec1d0892f6db/simplebloom-1.0.6-cp310-cp310-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1d288394c0d5fe21a45dd9393157d26273271f936026dd106c4a9642e713a270",
                "md5": "8332667496948d39fccb2d5c813aafcb",
                "sha256": "b34bc26be36be9fb63b834618bf6531057a931f30388cf270c2902299bef3bee"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8332667496948d39fccb2d5c813aafcb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 31076,
            "upload_time": "2024-08-10T09:42:24",
            "upload_time_iso_8601": "2024-08-10T09:42:24.239693Z",
            "url": "https://files.pythonhosted.org/packages/1d/28/8394c0d5fe21a45dd9393157d26273271f936026dd106c4a9642e713a270/simplebloom-1.0.6-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93e0de8380dc68370923c8e0df7c9c8d6ae924f70bad210d2be520cd1d8e30a4",
                "md5": "181c010ef3d05072f8bb0be005165775",
                "sha256": "07461484f4a8304d5796261eec8a61286e065249fc273656afbfe596f2d85a8c"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "181c010ef3d05072f8bb0be005165775",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 26493,
            "upload_time": "2024-08-10T09:42:25",
            "upload_time_iso_8601": "2024-08-10T09:42:25.571898Z",
            "url": "https://files.pythonhosted.org/packages/93/e0/de8380dc68370923c8e0df7c9c8d6ae924f70bad210d2be520cd1d8e30a4/simplebloom-1.0.6-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cccbd9057a613cf74a89a7b6f5491a4aec5528a16402f753546d225ef7777dfb",
                "md5": "72991ecc19581e9e346cc0e186c84c46",
                "sha256": "c6afb49f1d300f90bfd8dde7c75f05b361b33695f220a5bd5151c53b8358f38d"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "72991ecc19581e9e346cc0e186c84c46",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 28239,
            "upload_time": "2024-08-10T09:42:26",
            "upload_time_iso_8601": "2024-08-10T09:42:26.731339Z",
            "url": "https://files.pythonhosted.org/packages/cc/cb/d9057a613cf74a89a7b6f5491a4aec5528a16402f753546d225ef7777dfb/simplebloom-1.0.6-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7929757e775519748dc5b5495484e220751bd8379d71a877ac8c4edb3978b7d0",
                "md5": "1532b7085fa77bed47839a3b226f85f3",
                "sha256": "8c11bc64a3c88e9b042ebd6b0a551285f463b3207956fc23e9c0371ac3c5fa04"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1532b7085fa77bed47839a3b226f85f3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 28403,
            "upload_time": "2024-08-10T09:42:27",
            "upload_time_iso_8601": "2024-08-10T09:42:27.613522Z",
            "url": "https://files.pythonhosted.org/packages/79/29/757e775519748dc5b5495484e220751bd8379d71a877ac8c4edb3978b7d0/simplebloom-1.0.6-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1539048fb959a02b00b5fbe79cfd3f8509ec12cc963a8adef77a1f85fe4dfa26",
                "md5": "5be95c3f70515ba1f4c63251af11d5dd",
                "sha256": "92c741099b111dec5c46000ed89adadaab2323f661916dffd84540b832c69349"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5be95c3f70515ba1f4c63251af11d5dd",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 28845,
            "upload_time": "2024-08-10T09:42:28",
            "upload_time_iso_8601": "2024-08-10T09:42:28.841171Z",
            "url": "https://files.pythonhosted.org/packages/15/39/048fb959a02b00b5fbe79cfd3f8509ec12cc963a8adef77a1f85fe4dfa26/simplebloom-1.0.6-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "20234c5bac06e0b1739e42c84d96dda4220489e05faee36950b2d65faa490da5",
                "md5": "1ea952d3d81aa11b82dc299c83f19af7",
                "sha256": "c4555ade792f64173cb4d5737e298914ac29f4f66e904c9d2e96100fd3bcd182"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1ea952d3d81aa11b82dc299c83f19af7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 29692,
            "upload_time": "2024-08-10T09:42:29",
            "upload_time_iso_8601": "2024-08-10T09:42:29.799268Z",
            "url": "https://files.pythonhosted.org/packages/20/23/4c5bac06e0b1739e42c84d96dda4220489e05faee36950b2d65faa490da5/simplebloom-1.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "865f8cb5f1ff571c429cf4d8f2af5fa87108cdc3182899f9d769becb97d45a85",
                "md5": "d53979506db7000b35678c4dc7776f84",
                "sha256": "7e48a64c6f1f4577428ef5d42e26d52d070d1657ba4ce1911a1699d6b2ec4d74"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d53979506db7000b35678c4dc7776f84",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 30938,
            "upload_time": "2024-08-10T09:42:30",
            "upload_time_iso_8601": "2024-08-10T09:42:30.736251Z",
            "url": "https://files.pythonhosted.org/packages/86/5f/8cb5f1ff571c429cf4d8f2af5fa87108cdc3182899f9d769becb97d45a85/simplebloom-1.0.6-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": "135d335c0237d2af998682f4b34bc7453fa1cbb27525f202c4e3cb6380edeab9",
                "md5": "222ec64c6e5b2af5e12caa5ee738a45f",
                "sha256": "93854c08629d01656a538a178d0586f373fae573a62bb959a16f167e65dc6319"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp311-cp311-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "222ec64c6e5b2af5e12caa5ee738a45f",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 29872,
            "upload_time": "2024-08-10T09:42:32",
            "upload_time_iso_8601": "2024-08-10T09:42:32.148800Z",
            "url": "https://files.pythonhosted.org/packages/13/5d/335c0237d2af998682f4b34bc7453fa1cbb27525f202c4e3cb6380edeab9/simplebloom-1.0.6-cp311-cp311-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5e44b47bddc433fda5ec66d0d9a2e0952e51ca5a0bfb7648299ae177e631162b",
                "md5": "c528a56c3c1d2b76f64110d236474910",
                "sha256": "6b6efc9eaf2ec2de0e370f237f2d6c40444f25ae2a472555f6b03997a7871f68"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c528a56c3c1d2b76f64110d236474910",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 31036,
            "upload_time": "2024-08-10T09:42:33",
            "upload_time_iso_8601": "2024-08-10T09:42:33.879294Z",
            "url": "https://files.pythonhosted.org/packages/5e/44/b47bddc433fda5ec66d0d9a2e0952e51ca5a0bfb7648299ae177e631162b/simplebloom-1.0.6-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6aa58fc495c260f7a1822826be2caceeb5e744494beb53d3baba36769a0f5169",
                "md5": "fbde44d3383d29e4501e30944e84dec5",
                "sha256": "406b522bfa925a5e20d1222774672d37f4a7dc4c69e1bb53e7b981f52505ce1c"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "fbde44d3383d29e4501e30944e84dec5",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 26324,
            "upload_time": "2024-08-10T09:42:35",
            "upload_time_iso_8601": "2024-08-10T09:42:35.635647Z",
            "url": "https://files.pythonhosted.org/packages/6a/a5/8fc495c260f7a1822826be2caceeb5e744494beb53d3baba36769a0f5169/simplebloom-1.0.6-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e2ca18b3123792514d0659bce3e4099d4b37468e91e56bedd7dd745b985920c",
                "md5": "d27388c52b6eff0540079d257341e7b8",
                "sha256": "9ac231e20236fce333c7bc6ad2f66f9db5fdecb5a0919a27734b01cf1c2368f1"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d27388c52b6eff0540079d257341e7b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 28335,
            "upload_time": "2024-08-10T09:42:36",
            "upload_time_iso_8601": "2024-08-10T09:42:36.941168Z",
            "url": "https://files.pythonhosted.org/packages/9e/2c/a18b3123792514d0659bce3e4099d4b37468e91e56bedd7dd745b985920c/simplebloom-1.0.6-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e805d61a56e52f49442f9f30c1b2f52f59882fbe1830a151da9c9b3eb2103fb",
                "md5": "ed88f0329f6222aae1c48c9c24e004c5",
                "sha256": "72587b40bbded79bc80d2ff79e96bb2659e218092c1311b6409c054516113464"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ed88f0329f6222aae1c48c9c24e004c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 28820,
            "upload_time": "2024-08-10T09:42:37",
            "upload_time_iso_8601": "2024-08-10T09:42:37.857634Z",
            "url": "https://files.pythonhosted.org/packages/1e/80/5d61a56e52f49442f9f30c1b2f52f59882fbe1830a151da9c9b3eb2103fb/simplebloom-1.0.6-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ca26186d86dc2527668665b62c9ccc743e8da68ae32515c0e8ab078779a7d7fb",
                "md5": "e8efbfb80ade61e5cdd8e9e0ced53def",
                "sha256": "b88b3736e7d2ce67c29b23a39cea9807dc94e37216a358d37a5f4b2b2554a67a"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e8efbfb80ade61e5cdd8e9e0ced53def",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 28978,
            "upload_time": "2024-08-10T09:42:38",
            "upload_time_iso_8601": "2024-08-10T09:42:38.818694Z",
            "url": "https://files.pythonhosted.org/packages/ca/26/186d86dc2527668665b62c9ccc743e8da68ae32515c0e8ab078779a7d7fb/simplebloom-1.0.6-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a39a3e13ce933ac70be9cc38a53019cf411ef8bdb6315885a97dbd94d58d6667",
                "md5": "de89c3fb16ed6ade6d3a64c75d04fcff",
                "sha256": "936a9b3e5f0c768f3ee75ab508399a8a793126f0b083427ae214cfa9e78ec9cd"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "de89c3fb16ed6ade6d3a64c75d04fcff",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 29942,
            "upload_time": "2024-08-10T09:42:39",
            "upload_time_iso_8601": "2024-08-10T09:42:39.746864Z",
            "url": "https://files.pythonhosted.org/packages/a3/9a/3e13ce933ac70be9cc38a53019cf411ef8bdb6315885a97dbd94d58d6667/simplebloom-1.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ac6fada9c963f6435ce040f2691a599ec4ad37875fecd0ff6be750228e0f4f8",
                "md5": "49f6465bc055f8e34989308dfa2384e4",
                "sha256": "66fba745ed9988d57b1dd971fd7bb846f66dc4061ddb3a9b6ca38e96a8e8456c"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "49f6465bc055f8e34989308dfa2384e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 31225,
            "upload_time": "2024-08-10T09:42:40",
            "upload_time_iso_8601": "2024-08-10T09:42:40.892442Z",
            "url": "https://files.pythonhosted.org/packages/3a/c6/fada9c963f6435ce040f2691a599ec4ad37875fecd0ff6be750228e0f4f8/simplebloom-1.0.6-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": "ce5c271837089f2a85dffa3e9258f3e6d0c865e714b6c9c87628a038d741dc03",
                "md5": "8dc2aaf8cbf228814119034ab7489ce0",
                "sha256": "f4c71cb2c523a5465c2afc49d7679cc01b41ffca94a0191569e933bb7b221fd1"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp312-cp312-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8dc2aaf8cbf228814119034ab7489ce0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 30202,
            "upload_time": "2024-08-10T09:42:41",
            "upload_time_iso_8601": "2024-08-10T09:42:41.835791Z",
            "url": "https://files.pythonhosted.org/packages/ce/5c/271837089f2a85dffa3e9258f3e6d0c865e714b6c9c87628a038d741dc03/simplebloom-1.0.6-cp312-cp312-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd1356447ca46322e899ee9cab8918e03df716a9182f5ceb20dcde249d3491bb",
                "md5": "1db50904b5969d235921172ed5ea86a7",
                "sha256": "d8838522dcaa153e0d6973b5961c7be6e0b6d48d05cdc7fda11951d6470dcd46"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1db50904b5969d235921172ed5ea86a7",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 31352,
            "upload_time": "2024-08-10T09:42:43",
            "upload_time_iso_8601": "2024-08-10T09:42:43.020076Z",
            "url": "https://files.pythonhosted.org/packages/bd/13/56447ca46322e899ee9cab8918e03df716a9182f5ceb20dcde249d3491bb/simplebloom-1.0.6-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a0e781fc6dd622b8b765e8bdb7255d4f034a7edc0eba9bdfa59d47de05452e3d",
                "md5": "d8f30956360e5987b882d00918a7b3f5",
                "sha256": "ff5c4121e2566af728989fe6261bef6de3197f13edfb9c496a7f4b15876713cd"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "d8f30956360e5987b882d00918a7b3f5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 26579,
            "upload_time": "2024-08-10T09:42:43",
            "upload_time_iso_8601": "2024-08-10T09:42:43.927199Z",
            "url": "https://files.pythonhosted.org/packages/a0/e7/81fc6dd622b8b765e8bdb7255d4f034a7edc0eba9bdfa59d47de05452e3d/simplebloom-1.0.6-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "267cc694aebf1536a8ab023293191edde976354a88a9893668d8197f43b98d54",
                "md5": "d830448e1d3f16cbbe14adfa016d54d0",
                "sha256": "b5788c05220448eea0b746e3a65cd64f555c1f8d93614fc2a9d7fc0f2a5b624b"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d830448e1d3f16cbbe14adfa016d54d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 28608,
            "upload_time": "2024-08-10T09:42:44",
            "upload_time_iso_8601": "2024-08-10T09:42:44.815971Z",
            "url": "https://files.pythonhosted.org/packages/26/7c/c694aebf1536a8ab023293191edde976354a88a9893668d8197f43b98d54/simplebloom-1.0.6-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "51999765963403f605744e7bc28fde9216cacadefefb33c79bb2bf9fe890e267",
                "md5": "0f6144b5a2f87d0d81bcac32576c1786",
                "sha256": "3a27b21e6318f71acf2441ba4ece0006c8490e2353ec291552137c39830c8e6d"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0f6144b5a2f87d0d81bcac32576c1786",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 28247,
            "upload_time": "2024-08-10T09:42:45",
            "upload_time_iso_8601": "2024-08-10T09:42:45.727257Z",
            "url": "https://files.pythonhosted.org/packages/51/99/9765963403f605744e7bc28fde9216cacadefefb33c79bb2bf9fe890e267/simplebloom-1.0.6-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7fcaaad74a37f2181b6576473b1f67fde656598caa478b2ac3e64360d3208369",
                "md5": "c83cbca53afd5a3dd0ab6d4a97ef5f8a",
                "sha256": "820e5b9e173dfc69ad687e84203e47326f68dec38c743bc50af3d45c5fe30036"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c83cbca53afd5a3dd0ab6d4a97ef5f8a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 28173,
            "upload_time": "2024-08-10T09:42:46",
            "upload_time_iso_8601": "2024-08-10T09:42:46.639549Z",
            "url": "https://files.pythonhosted.org/packages/7f/ca/aad74a37f2181b6576473b1f67fde656598caa478b2ac3e64360d3208369/simplebloom-1.0.6-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a0878ebfed1785207e0711784790d61370cdd80f758e1862300acf2964d4c11",
                "md5": "fc2b9b799e9edb9b8c53d0c446f32348",
                "sha256": "fe8f966aa002dd2d7b284d572650e4c7647543ac49e56089df6bf381d62cc7bf"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "fc2b9b799e9edb9b8c53d0c446f32348",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 29001,
            "upload_time": "2024-08-10T09:42:48",
            "upload_time_iso_8601": "2024-08-10T09:42:48.015157Z",
            "url": "https://files.pythonhosted.org/packages/8a/08/78ebfed1785207e0711784790d61370cdd80f758e1862300acf2964d4c11/simplebloom-1.0.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73aa49cb4230992ada1725588b4178a585cef222cbef1a5c38cde7791419fa15",
                "md5": "e7b5bbb5820b5016dcff391492fd763d",
                "sha256": "ede7b1f3a2be25355ddb4285cd12b1c09ea8c2837eacf42c8cb61faf63c33a65"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e7b5bbb5820b5016dcff391492fd763d",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 30204,
            "upload_time": "2024-08-10T09:42:51",
            "upload_time_iso_8601": "2024-08-10T09:42:51.038462Z",
            "url": "https://files.pythonhosted.org/packages/73/aa/49cb4230992ada1725588b4178a585cef222cbef1a5c38cde7791419fa15/simplebloom-1.0.6-cp313-cp313-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": "8e463af2ff7938700d72b65c97cc58d27b53c9457b88f0ca4555665a48df4c9f",
                "md5": "05b2a7a8ba9df98c0c94499583a4c913",
                "sha256": "e5bd94ad55e2c25b518f45dee25ad8e868ce9db7b621bffdfa1ae6b64e9370df"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp313-cp313-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "05b2a7a8ba9df98c0c94499583a4c913",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 29332,
            "upload_time": "2024-08-10T09:42:52",
            "upload_time_iso_8601": "2024-08-10T09:42:52.242741Z",
            "url": "https://files.pythonhosted.org/packages/8e/46/3af2ff7938700d72b65c97cc58d27b53c9457b88f0ca4555665a48df4c9f/simplebloom-1.0.6-cp313-cp313-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f5ebf3dc1110785bc0e9ee4456089af54ffe12ee41ae100264681e6a2b809a0c",
                "md5": "8f70d1d407fb9db46405d2cc7bb3b2ad",
                "sha256": "368885bab1baf21535d4567e56de594c4c0ef4c19a0fabbc3413d13aadfc9c05"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8f70d1d407fb9db46405d2cc7bb3b2ad",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 30504,
            "upload_time": "2024-08-10T09:42:53",
            "upload_time_iso_8601": "2024-08-10T09:42:53.813484Z",
            "url": "https://files.pythonhosted.org/packages/f5/eb/f3dc1110785bc0e9ee4456089af54ffe12ee41ae100264681e6a2b809a0c/simplebloom-1.0.6-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6af2ca2413c707a481841398becbbf46d92361314738035b05283adafa83a62c",
                "md5": "e83c094d08d941f75eb7cb441e4c8fae",
                "sha256": "ddd0b3737aabf32e0851413a69740d4f03b0783319f627cd96a13a7de5cd9fa7"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "e83c094d08d941f75eb7cb441e4c8fae",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 26013,
            "upload_time": "2024-08-10T09:42:54",
            "upload_time_iso_8601": "2024-08-10T09:42:54.710293Z",
            "url": "https://files.pythonhosted.org/packages/6a/f2/ca2413c707a481841398becbbf46d92361314738035b05283adafa83a62c/simplebloom-1.0.6-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "710f809057250606497247ed58ae85f11ac0d1da6afa1429d26f09170d10a856",
                "md5": "0fc3c00b73b6df3c14b97021f6b3b53c",
                "sha256": "f73b1832908cdc42ff047e5bbe4ac7bcbb19ab20a04dc5ce3c5b2f8b1d53df44"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "0fc3c00b73b6df3c14b97021f6b3b53c",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 27822,
            "upload_time": "2024-08-10T09:42:56",
            "upload_time_iso_8601": "2024-08-10T09:42:56.104468Z",
            "url": "https://files.pythonhosted.org/packages/71/0f/809057250606497247ed58ae85f11ac0d1da6afa1429d26f09170d10a856/simplebloom-1.0.6-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "19bdb321e3367f145983c150f891ae98d43b7b5907ae44467452322898af8ccd",
                "md5": "69459fb97d28e9e7265ce1bf7c476b01",
                "sha256": "7e52f80922188a5718b19e808762078e74f6770a5ee6b8609f2dac20d84be777"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "69459fb97d28e9e7265ce1bf7c476b01",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 29813,
            "upload_time": "2024-08-10T09:42:57",
            "upload_time_iso_8601": "2024-08-10T09:42:57.253320Z",
            "url": "https://files.pythonhosted.org/packages/19/bd/b321e3367f145983c150f891ae98d43b7b5907ae44467452322898af8ccd/simplebloom-1.0.6-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0d6f49013d2c8e3badb9940ec342e295e142575f4b007193bc7caddef1f5e74d",
                "md5": "d7a6e37e710867e54135dc93195dc357",
                "sha256": "a2f66eabe03c30b358570ced191d7a04f34b1daf5b18c096c03bfadf5177f27b"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d7a6e37e710867e54135dc93195dc357",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 30652,
            "upload_time": "2024-08-10T09:42:58",
            "upload_time_iso_8601": "2024-08-10T09:42:58.147583Z",
            "url": "https://files.pythonhosted.org/packages/0d/6f/49013d2c8e3badb9940ec342e295e142575f4b007193bc7caddef1f5e74d/simplebloom-1.0.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e24fba55016a7dfeaa316938184596837160deac5dd11e785896520d219db7da",
                "md5": "7b696b4fbf8de800c6a37163d356e422",
                "sha256": "59bc35b67a232febff99b82f4a3c56c227074cf6b346fdc9dfb412897e59ac16"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7b696b4fbf8de800c6a37163d356e422",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 31492,
            "upload_time": "2024-08-10T09:42:59",
            "upload_time_iso_8601": "2024-08-10T09:42:59.315810Z",
            "url": "https://files.pythonhosted.org/packages/e2/4f/ba55016a7dfeaa316938184596837160deac5dd11e785896520d219db7da/simplebloom-1.0.6-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": "0a3a12a96a7d5a33bd957d000fb247dc68c70d977167d7482cf438087413d91d",
                "md5": "6cd567408dd6d5b4195587edd753c387",
                "sha256": "7eda415889587a2380793acbade356f5578152a71586f898e7daa92f7b78cc5b"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "6cd567408dd6d5b4195587edd753c387",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 30800,
            "upload_time": "2024-08-10T09:43:00",
            "upload_time_iso_8601": "2024-08-10T09:43:00.917939Z",
            "url": "https://files.pythonhosted.org/packages/0a/3a/12a96a7d5a33bd957d000fb247dc68c70d977167d7482cf438087413d91d/simplebloom-1.0.6-cp37-cp37m-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77ba4ee57a22d8b501d29414347d13a2169b2d891dfecd8c71923e36b2ae202a",
                "md5": "9e9192fd1f1a66649719c0ffa0a08ee2",
                "sha256": "d2f057e658efa0034994161e301d1c8a3ebb62ca2117660f1a5f70e95999c9e9"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9e9192fd1f1a66649719c0ffa0a08ee2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 31730,
            "upload_time": "2024-08-10T09:43:02",
            "upload_time_iso_8601": "2024-08-10T09:43:02.239406Z",
            "url": "https://files.pythonhosted.org/packages/77/ba/4ee57a22d8b501d29414347d13a2169b2d891dfecd8c71923e36b2ae202a/simplebloom-1.0.6-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ccba6e719b5477ec44b771bde9482b1385cbaf80dfd697710add6f3fc4d95e6e",
                "md5": "7a28b699281a987b9b9562e13b83ac07",
                "sha256": "2147eb74c72c09a61980e945933b882bdd7d210c6078bdbb8a3d927d35e1b18b"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "7a28b699281a987b9b9562e13b83ac07",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 27199,
            "upload_time": "2024-08-10T09:43:03",
            "upload_time_iso_8601": "2024-08-10T09:43:03.131615Z",
            "url": "https://files.pythonhosted.org/packages/cc/ba/6e719b5477ec44b771bde9482b1385cbaf80dfd697710add6f3fc4d95e6e/simplebloom-1.0.6-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ead87e0b1b5686855e31d1ddeef9ff2bd6cf2849a6ba7b57b805ecdcf39feb9d",
                "md5": "05129bd359f6fcfec0f1307585dbefee",
                "sha256": "daa2156dba97792a8a88bfccae78e149eaedba1f778e206fd524f5df3e8c9b2c"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "05129bd359f6fcfec0f1307585dbefee",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 29446,
            "upload_time": "2024-08-10T09:43:04",
            "upload_time_iso_8601": "2024-08-10T09:43:04.146567Z",
            "url": "https://files.pythonhosted.org/packages/ea/d8/7e0b1b5686855e31d1ddeef9ff2bd6cf2849a6ba7b57b805ecdcf39feb9d/simplebloom-1.0.6-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "56f17fc098eb247fad45595bd526c864a091eb74ea2f0536da24ed6c3519079a",
                "md5": "d624d0868a61b156cbbb36e9b6ee610a",
                "sha256": "236293f2604d9fca704cd971ba946a9275249e5552f670c3476bdae8c2f92054"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d624d0868a61b156cbbb36e9b6ee610a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 29359,
            "upload_time": "2024-08-10T09:43:05",
            "upload_time_iso_8601": "2024-08-10T09:43:05.094908Z",
            "url": "https://files.pythonhosted.org/packages/56/f1/7fc098eb247fad45595bd526c864a091eb74ea2f0536da24ed6c3519079a/simplebloom-1.0.6-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a978eda3a8cbd1392c5b81805956c2f57dbbd96d7d8dbedafe1fd6851462c86d",
                "md5": "1f2d17ee023c6cfb223bac38ef530ed6",
                "sha256": "96ea77535e1ab79e00f53180b4df6373be1a1ac2a061030b15403168dc93780a"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "1f2d17ee023c6cfb223bac38ef530ed6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 29868,
            "upload_time": "2024-08-10T09:43:06",
            "upload_time_iso_8601": "2024-08-10T09:43:06.619550Z",
            "url": "https://files.pythonhosted.org/packages/a9/78/eda3a8cbd1392c5b81805956c2f57dbbd96d7d8dbedafe1fd6851462c86d/simplebloom-1.0.6-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f910a22358e68d3a7988def6aac54ef76ee0c0f8b64a8df75f1218de8cdcb8da",
                "md5": "1f62cf96befa7b03b9b0a5200556ea71",
                "sha256": "d9e1f4434f4e657c72107e1a16181b845828aa7255be336921a38eda53e80f13"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1f62cf96befa7b03b9b0a5200556ea71",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 30213,
            "upload_time": "2024-08-10T09:43:07",
            "upload_time_iso_8601": "2024-08-10T09:43:07.880284Z",
            "url": "https://files.pythonhosted.org/packages/f9/10/a22358e68d3a7988def6aac54ef76ee0c0f8b64a8df75f1218de8cdcb8da/simplebloom-1.0.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d0a18000f693a0aceee04c6c2ab6c4a3010f97e085e9971b30460f18db7faf6",
                "md5": "b4e706c74350213e5eb0331a67daee37",
                "sha256": "1dce4969eb745343953f8d3927ae46f3eebdbb1375dfb3bb8d90bdec419e655d"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b4e706c74350213e5eb0331a67daee37",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 31179,
            "upload_time": "2024-08-10T09:43:08",
            "upload_time_iso_8601": "2024-08-10T09:43:08.778595Z",
            "url": "https://files.pythonhosted.org/packages/8d/0a/18000f693a0aceee04c6c2ab6c4a3010f97e085e9971b30460f18db7faf6/simplebloom-1.0.6-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": "986e9170b593f98494904704c1c1bbf3236b2a9fde829c3fd47fe6faaad7046e",
                "md5": "20c9ec6e93d1a923c14a6a788f272d7d",
                "sha256": "7cc949d280f35666ac729825dc6c6b65f8c77da1e6b60ef78b696a053494de99"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp38-cp38-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "20c9ec6e93d1a923c14a6a788f272d7d",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 30336,
            "upload_time": "2024-08-10T09:43:09",
            "upload_time_iso_8601": "2024-08-10T09:43:09.980572Z",
            "url": "https://files.pythonhosted.org/packages/98/6e/9170b593f98494904704c1c1bbf3236b2a9fde829c3fd47fe6faaad7046e/simplebloom-1.0.6-cp38-cp38-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2773a6f9f0f0ded2dedcb6ccda8f734737f080c11e8522851e849c33bb400448",
                "md5": "8d1015345bff8cba596efcec6b1358c0",
                "sha256": "f14474f9f2da5435a98d532d9a9c3663f37fae2c50bf4dad108b3a088b7f1eae"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8d1015345bff8cba596efcec6b1358c0",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 31440,
            "upload_time": "2024-08-10T09:43:10",
            "upload_time_iso_8601": "2024-08-10T09:43:10.893260Z",
            "url": "https://files.pythonhosted.org/packages/27/73/a6f9f0f0ded2dedcb6ccda8f734737f080c11e8522851e849c33bb400448/simplebloom-1.0.6-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e4cef1847356a1d218290b9f9a1f50bd7afa4155e076361d65fdec9f474a4a27",
                "md5": "a3f4a7e031eb692e7aae9223ed33f23f",
                "sha256": "27aa0f6fab981d70db94e71a510f895e96c8b711a5218abc8124ded646c76d39"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "a3f4a7e031eb692e7aae9223ed33f23f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 27086,
            "upload_time": "2024-08-10T09:43:11",
            "upload_time_iso_8601": "2024-08-10T09:43:11.800627Z",
            "url": "https://files.pythonhosted.org/packages/e4/ce/f1847356a1d218290b9f9a1f50bd7afa4155e076361d65fdec9f474a4a27/simplebloom-1.0.6-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8f2ef4cb7ead9a899c61fdb49d4f698bb7e026d2af53de59f9c6c76b1b2fcf5",
                "md5": "7637a389676e6959f562312c58f2e090",
                "sha256": "71bdef2130ea795e2d3137625f56b08279225cd4d68ab29f79ab98fc159ddabe"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "7637a389676e6959f562312c58f2e090",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 29005,
            "upload_time": "2024-08-10T09:43:14",
            "upload_time_iso_8601": "2024-08-10T09:43:14.582136Z",
            "url": "https://files.pythonhosted.org/packages/b8/f2/ef4cb7ead9a899c61fdb49d4f698bb7e026d2af53de59f9c6c76b1b2fcf5/simplebloom-1.0.6-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "15dbe8ef2021b6b1cb905c5b28b1606590961aef09488c8368404a8e06b673c8",
                "md5": "630111562571113859589464f49f0a21",
                "sha256": "7d95a678dcdb4605874b030de692e5cc6d2a5786d51b854d155a4277afdcc742"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "630111562571113859589464f49f0a21",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 29070,
            "upload_time": "2024-08-10T09:43:16",
            "upload_time_iso_8601": "2024-08-10T09:43:16.659564Z",
            "url": "https://files.pythonhosted.org/packages/15/db/e8ef2021b6b1cb905c5b28b1606590961aef09488c8368404a8e06b673c8/simplebloom-1.0.6-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5a785150671ca5bc4cdf4b14634cee06c3dae865d1eed840e5a37545c023b6d",
                "md5": "35a6670eed09c4ffcad37b1b65f99708",
                "sha256": "69e186af66660ebd5d4af5944880961597376e33ffdb12500f1a51ec0af5c948"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "35a6670eed09c4ffcad37b1b65f99708",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 29549,
            "upload_time": "2024-08-10T09:43:18",
            "upload_time_iso_8601": "2024-08-10T09:43:18.693250Z",
            "url": "https://files.pythonhosted.org/packages/a5/a7/85150671ca5bc4cdf4b14634cee06c3dae865d1eed840e5a37545c023b6d/simplebloom-1.0.6-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e61db41240c8efe0743663caf6243e16bcbbf51557061f4cf1292ee9b718de4",
                "md5": "41afd2a488d660c98bff405bc7d46fb4",
                "sha256": "4d7068a55c46bb8d9080e437cfc6f2a2ce0099c93fe84f4ca3f9ac45e47de7e9"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "41afd2a488d660c98bff405bc7d46fb4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 29988,
            "upload_time": "2024-08-10T09:43:19",
            "upload_time_iso_8601": "2024-08-10T09:43:19.602087Z",
            "url": "https://files.pythonhosted.org/packages/2e/61/db41240c8efe0743663caf6243e16bcbbf51557061f4cf1292ee9b718de4/simplebloom-1.0.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a935f0b31e6781ca1ee8d6bfc055b3abd054767446c0cf171e6cc8f7cfde0f9",
                "md5": "d1f44eee86c4a04ab744c39973a59568",
                "sha256": "0e7d614a55b3331cc8aa31f1d10ec9a779a76e18eab3f5ca12417016d3e09a32"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "d1f44eee86c4a04ab744c39973a59568",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 31032,
            "upload_time": "2024-08-10T09:43:20",
            "upload_time_iso_8601": "2024-08-10T09:43:20.516379Z",
            "url": "https://files.pythonhosted.org/packages/7a/93/5f0b31e6781ca1ee8d6bfc055b3abd054767446c0cf171e6cc8f7cfde0f9/simplebloom-1.0.6-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": "9f626073680775adefe12ec182d723d7db3682baf6c13932b49f007eadafff3f",
                "md5": "c91f0611e0af5a4892fe714e635f2154",
                "sha256": "f1d94445bc1c5db06ce48fe251d30a4b50f85cc8f224c6c3eb78190e6e0fbbf4"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp39-cp39-musllinux_1_2_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c91f0611e0af5a4892fe714e635f2154",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 30588,
            "upload_time": "2024-08-10T09:43:21",
            "upload_time_iso_8601": "2024-08-10T09:43:21.982509Z",
            "url": "https://files.pythonhosted.org/packages/9f/62/6073680775adefe12ec182d723d7db3682baf6c13932b49f007eadafff3f/simplebloom-1.0.6-cp39-cp39-musllinux_1_2_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c04eddf022a37a54aff03aa35a51b0cb330f1fef9129e331baefa19f59c98ed5",
                "md5": "1ab2f80eac3e5814660585c26f7d18a8",
                "sha256": "856a5a92b0e5a55b638724e206868b325782c4f943bc90ed18619e31268aea2f"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1ab2f80eac3e5814660585c26f7d18a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 31673,
            "upload_time": "2024-08-10T09:43:23",
            "upload_time_iso_8601": "2024-08-10T09:43:23.601918Z",
            "url": "https://files.pythonhosted.org/packages/c0/4e/ddf022a37a54aff03aa35a51b0cb330f1fef9129e331baefa19f59c98ed5/simplebloom-1.0.6-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "94f9d739953f1f768c7e8c576f215ff652f9d1658c0f4b2bc6e6f1800c829010",
                "md5": "b52aa207076f7118ac52a296dc20a9fb",
                "sha256": "ceb32258d00b53a257cdb4819994c4ab9d50112587995c55502c5f3babe901d2"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "b52aa207076f7118ac52a296dc20a9fb",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 27012,
            "upload_time": "2024-08-10T09:43:24",
            "upload_time_iso_8601": "2024-08-10T09:43:24.574330Z",
            "url": "https://files.pythonhosted.org/packages/94/f9/d739953f1f768c7e8c576f215ff652f9d1658c0f4b2bc6e6f1800c829010/simplebloom-1.0.6-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7708645e70d76b39617e130d14cb3a2bf3277d7a9b5ae8dcbd616aaa2b1b4c4",
                "md5": "affc9b006fc04e263bf4193e66b95b85",
                "sha256": "7422ba97e4bbdf3642c8cf28bbf7ac6748f421739164faa205a27121643679a0"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "affc9b006fc04e263bf4193e66b95b85",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 28855,
            "upload_time": "2024-08-10T09:43:25",
            "upload_time_iso_8601": "2024-08-10T09:43:25.711697Z",
            "url": "https://files.pythonhosted.org/packages/c7/70/8645e70d76b39617e130d14cb3a2bf3277d7a9b5ae8dcbd616aaa2b1b4c4/simplebloom-1.0.6-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0edde39b99784d4f78986e0cb91e7c70f4c14b47781dbe088acede396d81442b",
                "md5": "0bc9c59e3a5397de1ddc7240e472d991",
                "sha256": "d4d2200f4290951924a63647ad64032aa2c25c2dabab092d158fa43b6c0fae49"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0bc9c59e3a5397de1ddc7240e472d991",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 24172,
            "upload_time": "2024-08-10T09:43:26",
            "upload_time_iso_8601": "2024-08-10T09:43:26.724811Z",
            "url": "https://files.pythonhosted.org/packages/0e/dd/e39b99784d4f78986e0cb91e7c70f4c14b47781dbe088acede396d81442b/simplebloom-1.0.6-pp310-pypy310_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7b646cdf4b6f1283984128b84b2f5679fa4860fdaccb1112bada85782a0bcd1d",
                "md5": "48b3d6ccd8026d621f253d92833caf47",
                "sha256": "9ad510e402907fd4a658e1e928be24f4873d28a5df245f4c49c3901ec11960cf"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "48b3d6ccd8026d621f253d92833caf47",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 24142,
            "upload_time": "2024-08-10T09:43:27",
            "upload_time_iso_8601": "2024-08-10T09:43:27.650712Z",
            "url": "https://files.pythonhosted.org/packages/7b/64/6cdf4b6f1283984128b84b2f5679fa4860fdaccb1112bada85782a0bcd1d/simplebloom-1.0.6-pp310-pypy310_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fcd87017b2eb3174d27afbbe505595d053cf04463150bb4b29fd5e725abde109",
                "md5": "d0f9c48dc6c5d620d06f8af64d49c3c9",
                "sha256": "f981c2c99c63eb9a0866eca77110815fbaf185c7547e02ec18ff0a0b653e319b"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "d0f9c48dc6c5d620d06f8af64d49c3c9",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 25472,
            "upload_time": "2024-08-10T09:43:28",
            "upload_time_iso_8601": "2024-08-10T09:43:28.609717Z",
            "url": "https://files.pythonhosted.org/packages/fc/d8/7017b2eb3174d27afbbe505595d053cf04463150bb4b29fd5e725abde109/simplebloom-1.0.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "de428530781be602c47b6dd05a46beeed56ecc57af4c2cd663d30d7c06cbf5c1",
                "md5": "f58eff7dfcbde86acb7d6f67dc1fc1da",
                "sha256": "cf83a5a9f3872feaa82e6b84dfafa70a9514586f67a3e99ea6dba8b996b97936"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-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": "f58eff7dfcbde86acb7d6f67dc1fc1da",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 26160,
            "upload_time": "2024-08-10T09:43:29",
            "upload_time_iso_8601": "2024-08-10T09:43:29.580041Z",
            "url": "https://files.pythonhosted.org/packages/de/42/8530781be602c47b6dd05a46beeed56ecc57af4c2cd663d30d7c06cbf5c1/simplebloom-1.0.6-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": "faddbb8c33976fcf885e7bd2a077e79a38c97af4c045304d02165dd1c44b69a7",
                "md5": "b79cd28f9fd1b26e0fd5ffcaf7bb9385",
                "sha256": "720a0ba89d76bae281d4108327a3616533f2f2c59aafeb408b77a14c4bd4e53f"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b79cd28f9fd1b26e0fd5ffcaf7bb9385",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": ">=3.7",
            "size": 25165,
            "upload_time": "2024-08-10T09:43:31",
            "upload_time_iso_8601": "2024-08-10T09:43:31.192145Z",
            "url": "https://files.pythonhosted.org/packages/fa/dd/bb8c33976fcf885e7bd2a077e79a38c97af4c045304d02165dd1c44b69a7/simplebloom-1.0.6-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5f08a13c0269fd1e58e4278cebdd7a8445e42b0f10c5386ce36a1b3a095a7bee",
                "md5": "95903941f634bfc9e12a0a518276b8e7",
                "sha256": "5851374519fbc143c464c89de5fd99aca399f8a6e4dcf815db05b5986b72f64a"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "95903941f634bfc9e12a0a518276b8e7",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 23054,
            "upload_time": "2024-08-10T09:43:32",
            "upload_time_iso_8601": "2024-08-10T09:43:32.089292Z",
            "url": "https://files.pythonhosted.org/packages/5f/08/a13c0269fd1e58e4278cebdd7a8445e42b0f10c5386ce36a1b3a095a7bee/simplebloom-1.0.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0e1004e504872acd1106bb8aab8df5e4776821847ad5369cbe13e5871899e2cd",
                "md5": "787ce281e4bd98b4dbc741017156ae26",
                "sha256": "f7705e82226150f4245dd4af8d651a32943878c5a94a0ae121d538386f647002"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "787ce281e4bd98b4dbc741017156ae26",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 24839,
            "upload_time": "2024-08-10T09:43:33",
            "upload_time_iso_8601": "2024-08-10T09:43:33.039781Z",
            "url": "https://files.pythonhosted.org/packages/0e/10/04e504872acd1106bb8aab8df5e4776821847ad5369cbe13e5871899e2cd/simplebloom-1.0.6-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a12b06e45a5f78b4082f7585b40b47d7402f3ec1b4a5aec0854b8f7cb6cab32a",
                "md5": "9b1c2ff19ecf169ca1802feabcc44833",
                "sha256": "d4c78ec3f1af893f845adaac026b6a499d2f1551a0dce453f9d982f6685a5f60"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-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": "9b1c2ff19ecf169ca1802feabcc44833",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 25557,
            "upload_time": "2024-08-10T09:43:34",
            "upload_time_iso_8601": "2024-08-10T09:43:34.220105Z",
            "url": "https://files.pythonhosted.org/packages/a1/2b/06e45a5f78b4082f7585b40b47d7402f3ec1b4a5aec0854b8f7cb6cab32a/simplebloom-1.0.6-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": "24497b1706c017117fff779fba697bfbc09d32c2a3417d29778494b1ba78db01",
                "md5": "55636b4dab70368cd371d34138301c9f",
                "sha256": "1ff1350d9d331fa7196d712b037a7729161cae02382391141634555e4a82e800"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "55636b4dab70368cd371d34138301c9f",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": ">=3.7",
            "size": 24576,
            "upload_time": "2024-08-10T09:43:35",
            "upload_time_iso_8601": "2024-08-10T09:43:35.898570Z",
            "url": "https://files.pythonhosted.org/packages/24/49/7b1706c017117fff779fba697bfbc09d32c2a3417d29778494b1ba78db01/simplebloom-1.0.6-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6d248fbfd0f7fe0f8273d1da56536e71d68aabd7f0c337daaa2f37947e4a9700",
                "md5": "7c1dd3c3bcde3d961894b614d6547579",
                "sha256": "557daedaae0859d7a55947b917e4e06793cda8b2b21b86046c8c91b07999f322"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7c1dd3c3bcde3d961894b614d6547579",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 23075,
            "upload_time": "2024-08-10T09:43:36",
            "upload_time_iso_8601": "2024-08-10T09:43:36.954084Z",
            "url": "https://files.pythonhosted.org/packages/6d/24/8fbfd0f7fe0f8273d1da56536e71d68aabd7f0c337daaa2f37947e4a9700/simplebloom-1.0.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2ac0b9fca4abcfefa7863bef85144f41aebeaf956e1d7383303fe400c35c45a6",
                "md5": "2cea2782374e457d1042f65ce0aafcec",
                "sha256": "120bad9b8846b1e45aff0db7d2355c7f224c9a85935e9851924bf5cefbe0282e"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "2cea2782374e457d1042f65ce0aafcec",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 23408,
            "upload_time": "2024-08-10T09:43:37",
            "upload_time_iso_8601": "2024-08-10T09:43:37.891704Z",
            "url": "https://files.pythonhosted.org/packages/2a/c0/b9fca4abcfefa7863bef85144f41aebeaf956e1d7383303fe400c35c45a6/simplebloom-1.0.6-pp38-pypy38_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3ae07a0304156042296e2e73354bad7f6ee14fed011dbd9ec4301d47b3de1473",
                "md5": "e37f47d399b2cc560cbc16ee06ce21d2",
                "sha256": "8c366a10352477c419c966673c331d0757a40cfe33959cd54ffee02d0945938c"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e37f47d399b2cc560cbc16ee06ce21d2",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 24840,
            "upload_time": "2024-08-10T09:43:38",
            "upload_time_iso_8601": "2024-08-10T09:43:38.802840Z",
            "url": "https://files.pythonhosted.org/packages/3a/e0/7a0304156042296e2e73354bad7f6ee14fed011dbd9ec4301d47b3de1473/simplebloom-1.0.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2af3267cd1daa98c7bf69960353e3bde0839c29d47bb61ec2e9c50a5e569e60f",
                "md5": "6dc9cbe0ebb3ba32901d3aa68162a4be",
                "sha256": "746cf4cb4c6b7bef11701625442e65d8c52cba217b64558b1d07f728659a62a7"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-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": "6dc9cbe0ebb3ba32901d3aa68162a4be",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 25557,
            "upload_time": "2024-08-10T09:43:39",
            "upload_time_iso_8601": "2024-08-10T09:43:39.750490Z",
            "url": "https://files.pythonhosted.org/packages/2a/f3/267cd1daa98c7bf69960353e3bde0839c29d47bb61ec2e9c50a5e569e60f/simplebloom-1.0.6-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": "7e60bec86cc7a619647a9ebe6f96fafec230c611587a2e78bb9326eb237261e5",
                "md5": "a36a568fd1246ce6e0a5e15cf61042c7",
                "sha256": "1c129849673cf5ed44f045682877206a82a2dd51f8645077a30c45c2fcc6b6cd"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "a36a568fd1246ce6e0a5e15cf61042c7",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": ">=3.7",
            "size": 24572,
            "upload_time": "2024-08-10T09:43:40",
            "upload_time_iso_8601": "2024-08-10T09:43:40.673229Z",
            "url": "https://files.pythonhosted.org/packages/7e/60/bec86cc7a619647a9ebe6f96fafec230c611587a2e78bb9326eb237261e5/simplebloom-1.0.6-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7c9ecf884d125c860e41714fdeabd99949b971736f6edd572c78973a6a474c7c",
                "md5": "eb56736831199ee34f73fddf6e650159",
                "sha256": "90aca97eba6c6cf8c96186c5e0229d52f05c92674037dd74a28347c557e3818f"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "has_sig": false,
            "md5_digest": "eb56736831199ee34f73fddf6e650159",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 24124,
            "upload_time": "2024-08-10T09:43:41",
            "upload_time_iso_8601": "2024-08-10T09:43:41.729408Z",
            "url": "https://files.pythonhosted.org/packages/7c/9e/cf884d125c860e41714fdeabd99949b971736f6edd572c78973a6a474c7c/simplebloom-1.0.6-pp39-pypy39_pp73-macosx_10_15_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0b55775ebb25864837b5eeafdc68629aa0b855925f1888031f75327b5c195793",
                "md5": "ccfbaf4269eb4de61270dc72d92d3d62",
                "sha256": "5b4a5a127f7f50cfaf5d277d226dd4bbb9bd9459a7c06894efdd89d1bc5a1605"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "ccfbaf4269eb4de61270dc72d92d3d62",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 24108,
            "upload_time": "2024-08-10T09:43:42",
            "upload_time_iso_8601": "2024-08-10T09:43:42.681066Z",
            "url": "https://files.pythonhosted.org/packages/0b/55/775ebb25864837b5eeafdc68629aa0b855925f1888031f75327b5c195793/simplebloom-1.0.6-pp39-pypy39_pp73-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7ef3e9fca61c01d57ffdb3fe22630c04a97ef08747b9f6477ce0b4a58280eda",
                "md5": "2f35ba8a9cdc6447b31069dde395c2d3",
                "sha256": "6e8356a374f06b7074c9cb432a47e39e939f75fb9cbaaf534a3bf4bf646c6de8"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2f35ba8a9cdc6447b31069dde395c2d3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 25453,
            "upload_time": "2024-08-10T09:43:43",
            "upload_time_iso_8601": "2024-08-10T09:43:43.648474Z",
            "url": "https://files.pythonhosted.org/packages/c7/ef/3e9fca61c01d57ffdb3fe22630c04a97ef08747b9f6477ce0b4a58280eda/simplebloom-1.0.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ab011243bce04cc9a7bcc538590804defe3673df1aee89fb1f422d66e41a6022",
                "md5": "e2cd0988db1cfbb9002f450a87889613",
                "sha256": "d54bad4d674824339b59e9ec7a37d27df1fda430bcb99b2109e468b176108e84"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-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": "e2cd0988db1cfbb9002f450a87889613",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 26116,
            "upload_time": "2024-08-10T09:43:44",
            "upload_time_iso_8601": "2024-08-10T09:43:44.569374Z",
            "url": "https://files.pythonhosted.org/packages/ab/01/1243bce04cc9a7bcc538590804defe3673df1aee89fb1f422d66e41a6022/simplebloom-1.0.6-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": "2d4b37de2ff47e8a9c36cc5bd600806cce679f06ba0e88e4b7c4f0bd226a01f4",
                "md5": "b5983fdaf1b6ee649efd3f3c0f6871fa",
                "sha256": "e6561817db03f83186b26ee62585fba322f0cc1d95b4a9ddb577246bc367cf27"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b5983fdaf1b6ee649efd3f3c0f6871fa",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": ">=3.7",
            "size": 25130,
            "upload_time": "2024-08-10T09:43:45",
            "upload_time_iso_8601": "2024-08-10T09:43:45.489777Z",
            "url": "https://files.pythonhosted.org/packages/2d/4b/37de2ff47e8a9c36cc5bd600806cce679f06ba0e88e4b7c4f0bd226a01f4/simplebloom-1.0.6-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26cccff30146afaa0d0baa4cfd02faca5a2a9521d3c3d60687cf98aa7508ef39",
                "md5": "e5cd4d3473c54195ec8019aed645b361",
                "sha256": "eaec90d08434a914497819795ed58a75c9cee461fb1a85df2f0e1a45b680615f"
            },
            "downloads": -1,
            "filename": "simplebloom-1.0.6.tar.gz",
            "has_sig": false,
            "md5_digest": "e5cd4d3473c54195ec8019aed645b361",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 66389,
            "upload_time": "2024-08-10T09:43:46",
            "upload_time_iso_8601": "2024-08-10T09:43:46.570789Z",
            "url": "https://files.pythonhosted.org/packages/26/cc/cff30146afaa0d0baa4cfd02faca5a2a9521d3c3d60687cf98aa7508ef39/simplebloom-1.0.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-10 09:43:46",
    "github": false,
    "gitlab": true,
    "bitbucket": false,
    "codeberg": false,
    "gitlab_user": "jfolz",
    "gitlab_project": "simplebloom",
    "lcname": "simplebloom"
}
        
Elapsed time: 0.34735s