intbitset


Nameintbitset JSON
Version 3.1.0 PyPI version JSON
download
home_pagehttp://github.com/inveniosoftware-contrib/intbitset/
SummaryC-based extension implementing fast integer bit sets.
upload_time2024-02-13 14:39:18
maintainer
docs_urlNone
authorInvenio collaboration, maintained by Philippe Ombredanne and AboutCode.org
requires_python
licenseLGPL-3.0-or-later
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            ===========
 intbitset
===========

.. image:: https://img.shields.io/github/tag/inveniosoftware/intbitset.svg
        :target: https://github.com/inveniosoftware-contrib/intbitset/releases

.. image:: https://img.shields.io/pypi/dm/intbitset.svg
        :target: https://pypi.python.org/pypi/intbitset

.. image:: https://img.shields.io/github/license/inveniosoftware/intbitset.svg
        :target: https://github.com/inveniosoftware-contrib/intbitset/blob/master/LICENSE


Installation
============

intbitset is on PyPI ::

    pip install intbitset

We provide pre-built wheels for the most common operating systems and common 64 bits CPU
architectures. Otherwise, you will need a C compiler if you build from sources.


Documentation
=============

The ``intbitset`` library provides a set implementation to store sorted
unsigned integers either 32-bits integers (between ``0`` and
``2**31 - 1`` or ``intbitset.__maxelem__``) or an infinite range
with fast set operations implemented via bit vectors in a *Python C
extension* for speed and reduced memory usage.

The ``inbitset`` class emulates the Python built-in set class interface
with some additional specific methods such as its own fast dump and load
marshalling functions.  ::

    >>> from intbitset import intbitset
    >>> x = intbitset([1,2,3])
    >>> y = intbitset([3,4,5])
    >>> x & y
    intbitset([3])
    >>> x | y
    intbitset([1, 2, 3, 4, 5])

Additionally, ``intbitset`` supports:

- The `pickle protocol <https://docs.python.org/3/library/pickle.html>`_,
- The `iterator protocol <https://docs.python.org/3/library/stdtypes.html#iterator-types>`_
- ``intbitset`` can behave like a ``sequence`` that can be sliced.
- Natural min and max. Because the integers are always stored sorted, the fist
  element of a non-empty set `[0]` is also the `min()` integer and the last
  element `[-1]` is also the `max()` integer in the set.

When compared to the standard library ``set`` class, ``intbitset`` set
operations and the intersection, union and difference of ``intbitset``can be up
to 5000 faster for dense integer sets than the standard library ``set``.

Complete documentation is available at <http://intbitset.readthedocs.io> or
can be built using Sphinx: ::

    pip install sphinx
    python setup.py build_sphinx


Testing
=======

Running the tests are as simple as: ::

    pip install -e .[tests]
    pytest

Running the tests on multiple Python versions: ::

    pip install tox
    tox


Development
===========

To regenerate the C code with Cython: ::

    pip install cython
    cython intbitset/intbitset.pyx

Then commit the regenrated C source and update the CHANGELOG.rst


License
=======

Copyright (C) CERN and others

SPDX-License-Identifier: LGPL-3.0-or-later

intbitset is free software; you can redistribute it and/or modify it under the
terms of the GNU Lesser General Public License as published by the Free Software
Foundation; either version 3 of the License, or (at your option) any later
version.

intbitset is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public License along with
intbitset; if not, write to the Free Software Foundation, Inc., 59 Temple
Place, Suite 330, Boston, MA 02111-1307, USA.

In applying this licence, CERN does not waive the privileges and immunities
granted to it by virtue of its status as an Intergovernmental Organization or
submit itself to any jurisdiction.

            

Raw data

            {
    "_id": null,
    "home_page": "http://github.com/inveniosoftware-contrib/intbitset/",
    "name": "intbitset",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Invenio collaboration, maintained by Philippe Ombredanne and AboutCode.org",
    "author_email": "pombredanne@nexb.com",
    "download_url": "https://files.pythonhosted.org/packages/17/1e/a0de4407565ae27f5c6352392f72c0a1238f9f28b07f8cd34fbc716b0bf6/intbitset-3.1.0.tar.gz",
    "platform": "any",
    "description": "===========\n intbitset\n===========\n\n.. image:: https://img.shields.io/github/tag/inveniosoftware/intbitset.svg\n        :target: https://github.com/inveniosoftware-contrib/intbitset/releases\n\n.. image:: https://img.shields.io/pypi/dm/intbitset.svg\n        :target: https://pypi.python.org/pypi/intbitset\n\n.. image:: https://img.shields.io/github/license/inveniosoftware/intbitset.svg\n        :target: https://github.com/inveniosoftware-contrib/intbitset/blob/master/LICENSE\n\n\nInstallation\n============\n\nintbitset is on PyPI ::\n\n    pip install intbitset\n\nWe provide pre-built wheels for the most common operating systems and common 64 bits CPU\narchitectures. Otherwise, you will need a C compiler if you build from sources.\n\n\nDocumentation\n=============\n\nThe ``intbitset`` library provides a set implementation to store sorted\nunsigned integers either 32-bits integers (between ``0`` and\n``2**31 - 1`` or ``intbitset.__maxelem__``) or an infinite range\nwith fast set operations implemented via bit vectors in a *Python C\nextension* for speed and reduced memory usage.\n\nThe ``inbitset`` class emulates the Python built-in set class interface\nwith some additional specific methods such as its own fast dump and load\nmarshalling functions.  ::\n\n    >>> from intbitset import intbitset\n    >>> x = intbitset([1,2,3])\n    >>> y = intbitset([3,4,5])\n    >>> x & y\n    intbitset([3])\n    >>> x | y\n    intbitset([1, 2, 3, 4, 5])\n\nAdditionally, ``intbitset`` supports:\n\n- The `pickle protocol <https://docs.python.org/3/library/pickle.html>`_,\n- The `iterator protocol <https://docs.python.org/3/library/stdtypes.html#iterator-types>`_\n- ``intbitset`` can behave like a ``sequence`` that can be sliced.\n- Natural min and max. Because the integers are always stored sorted, the fist\n  element of a non-empty set `[0]` is also the `min()` integer and the last\n  element `[-1]` is also the `max()` integer in the set.\n\nWhen compared to the standard library ``set`` class, ``intbitset`` set\noperations and the intersection, union and difference of ``intbitset``can be up\nto 5000 faster for dense integer sets than the standard library ``set``.\n\nComplete documentation is available at <http://intbitset.readthedocs.io> or\ncan be built using Sphinx: ::\n\n    pip install sphinx\n    python setup.py build_sphinx\n\n\nTesting\n=======\n\nRunning the tests are as simple as: ::\n\n    pip install -e .[tests]\n    pytest\n\nRunning the tests on multiple Python versions: ::\n\n    pip install tox\n    tox\n\n\nDevelopment\n===========\n\nTo regenerate the C code with Cython: ::\n\n    pip install cython\n    cython intbitset/intbitset.pyx\n\nThen commit the regenrated C source and update the CHANGELOG.rst\n\n\nLicense\n=======\n\nCopyright (C) CERN and others\n\nSPDX-License-Identifier: LGPL-3.0-or-later\n\nintbitset is free software; you can redistribute it and/or modify it under the\nterms of the GNU Lesser General Public License as published by the Free Software\nFoundation; either version 3 of the License, or (at your option) any later\nversion.\n\nintbitset is distributed in the hope that it will be useful, but WITHOUT ANY\nWARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A\nPARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.\n\nYou should have received a copy of the GNU Lesser General Public License along with\nintbitset; if not, write to the Free Software Foundation, Inc., 59 Temple\nPlace, Suite 330, Boston, MA 02111-1307, USA.\n\nIn applying this licence, CERN does not waive the privileges and immunities\ngranted to it by virtue of its status as an Intergovernmental Organization or\nsubmit itself to any jurisdiction.\n",
    "bugtrack_url": null,
    "license": "LGPL-3.0-or-later",
    "summary": "C-based extension implementing fast integer bit sets.",
    "version": "3.1.0",
    "project_urls": {
        "Homepage": "http://github.com/inveniosoftware-contrib/intbitset/"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a5962b2d5d6d208b8b20ea4cfdef0821a50e69a2eaf76f04d7847c9789bbd5c2",
                "md5": "d6013e43c9f1bf7efdee40c09831f1e7",
                "sha256": "6c8780daedd455c4b05e9bf88e0280ae7fd9e62f08bc9ed8a97b49b55556ac01"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "d6013e43c9f1bf7efdee40c09831f1e7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 178986,
            "upload_time": "2024-02-13T14:38:04",
            "upload_time_iso_8601": "2024-02-13T14:38:04.550477Z",
            "url": "https://files.pythonhosted.org/packages/a5/96/2b2d5d6d208b8b20ea4cfdef0821a50e69a2eaf76f04d7847c9789bbd5c2/intbitset-3.1.0-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f388f03bdf07683b80945120bc97b755592e1d8c530f787ca6c022263641c29f",
                "md5": "44aa6bf320fe96f18b4190f951ac3be7",
                "sha256": "ef8493342bab01a9ee893fb68591d4fe33be07ceced57ee65183e061bd18de37"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "has_sig": false,
            "md5_digest": "44aa6bf320fe96f18b4190f951ac3be7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 429970,
            "upload_time": "2024-02-13T14:38:07",
            "upload_time_iso_8601": "2024-02-13T14:38:07.778513Z",
            "url": "https://files.pythonhosted.org/packages/f3/88/f03bdf07683b80945120bc97b755592e1d8c530f787ca6c022263641c29f/intbitset-3.1.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_12_x86_64.manylinux2010_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73e0ca420f48695d550c1ca94bb935c4984dc16b8dac6d7eda9035b8a9a2c74e",
                "md5": "734c904faacd90ca3bb714f0f55eccc1",
                "sha256": "7509c46a0357e2700be245bd88e30d581fc7a3bbef0d3412e4c2c4bd3baca469"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "734c904faacd90ca3bb714f0f55eccc1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 464022,
            "upload_time": "2024-02-13T14:38:11",
            "upload_time_iso_8601": "2024-02-13T14:38:11.551283Z",
            "url": "https://files.pythonhosted.org/packages/73/e0/ca420f48695d550c1ca94bb935c4984dc16b8dac6d7eda9035b8a9a2c74e/intbitset-3.1.0-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eb6113b0b9d9a1709ecf52a36c1ef20462846c27679bdf02ef7c0046a2bbd4de",
                "md5": "9107270a3c65f1154273d931429ecca7",
                "sha256": "3154f9d50da09eb4d6a797914b511cd027aeab058cae59d544d75218e790f118"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "9107270a3c65f1154273d931429ecca7",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 79575,
            "upload_time": "2024-02-13T14:38:14",
            "upload_time_iso_8601": "2024-02-13T14:38:14.255243Z",
            "url": "https://files.pythonhosted.org/packages/eb/61/13b0b9d9a1709ecf52a36c1ef20462846c27679bdf02ef7c0046a2bbd4de/intbitset-3.1.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f7886aa0d0b1bb9ca612f7ca0d36c8377f1caaf2b3e444efdc4a2862f89444d4",
                "md5": "7a7e611afb34b4342f3a5900ccf686b7",
                "sha256": "618ecb4d6aef50804ec20301a8c9c5949617c17d98e1287bb57e50644f66340a"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "7a7e611afb34b4342f3a5900ccf686b7",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 179610,
            "upload_time": "2024-02-13T14:38:20",
            "upload_time_iso_8601": "2024-02-13T14:38:20.171138Z",
            "url": "https://files.pythonhosted.org/packages/f7/88/6aa0d0b1bb9ca612f7ca0d36c8377f1caaf2b3e444efdc4a2862f89444d4/intbitset-3.1.0-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2470b1ac992230c58501d31c6d6b50f61cf2ce72eb3a6890fc5df3d7999c5b80",
                "md5": "f1c6a291f5d9860957e5c7fbf260962c",
                "sha256": "353ea6b4c2f2c0aba4bd7b92bf6116fa82b16de9255b8b11a3d799c9cc0b640e"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f1c6a291f5d9860957e5c7fbf260962c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 494641,
            "upload_time": "2024-02-13T14:38:24",
            "upload_time_iso_8601": "2024-02-13T14:38:24.952951Z",
            "url": "https://files.pythonhosted.org/packages/24/70/b1ac992230c58501d31c6d6b50f61cf2ce72eb3a6890fc5df3d7999c5b80/intbitset-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fa025f3f90b8daa430f4b520c63c321992fe365cc1ac9290066e9191f4d11c36",
                "md5": "f416c3f12cb53ce3ff556417dd101e26",
                "sha256": "8d669e3e90a89985cec95b87d066837a4aae604b9e280c59c1d8c6ac7784fb60"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f416c3f12cb53ce3ff556417dd101e26",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 491221,
            "upload_time": "2024-02-13T14:38:27",
            "upload_time_iso_8601": "2024-02-13T14:38:27.884574Z",
            "url": "https://files.pythonhosted.org/packages/fa/02/5f3f90b8daa430f4b520c63c321992fe365cc1ac9290066e9191f4d11c36/intbitset-3.1.0-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f53a684dcbb8ac1f28ee1a4a4386d6d0851b40249b590fbfea9a58937c1eb041",
                "md5": "d6feb256a6604317d14f8386f6ee805a",
                "sha256": "f8d8d9ece67875f35e7860dc5103bde7c0881bb28005d12c5d2d54e3edc533b8"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d6feb256a6604317d14f8386f6ee805a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 80479,
            "upload_time": "2024-02-13T14:38:30",
            "upload_time_iso_8601": "2024-02-13T14:38:30.163350Z",
            "url": "https://files.pythonhosted.org/packages/f5/3a/684dcbb8ac1f28ee1a4a4386d6d0851b40249b590fbfea9a58937c1eb041/intbitset-3.1.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7ff1ee747af126908232dc0c4e61a8e12883088ae806c30521509a6e73f23cd",
                "md5": "ed214c9f0c53ac73ed154352ac34ca44",
                "sha256": "79d945608a6abeaa20b5511624408f2c8859f9e886fbe5e20a47ed16990d91af"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "ed214c9f0c53ac73ed154352ac34ca44",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 175702,
            "upload_time": "2024-02-13T14:38:33",
            "upload_time_iso_8601": "2024-02-13T14:38:33.239264Z",
            "url": "https://files.pythonhosted.org/packages/c7/ff/1ee747af126908232dc0c4e61a8e12883088ae806c30521509a6e73f23cd/intbitset-3.1.0-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "742cc7e4c46adfbb3c6c87c83d4f2c630060343475a62b8f831dccca72557d80",
                "md5": "817e4efe178efcf1d7b1d2ad95314bd5",
                "sha256": "72763c492ade2c2aea8d34f3bec11b81f9f1e9219a1925908114898ee7fe34e4"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "817e4efe178efcf1d7b1d2ad95314bd5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 478235,
            "upload_time": "2024-02-13T14:38:36",
            "upload_time_iso_8601": "2024-02-13T14:38:36.804344Z",
            "url": "https://files.pythonhosted.org/packages/74/2c/c7e4c46adfbb3c6c87c83d4f2c630060343475a62b8f831dccca72557d80/intbitset-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "129181890541151f4cdd86cf17dfb72ff9b1c7b2ef7eb1a4f4e9f5dc2d11c453",
                "md5": "229337d0033d70a07f2e7284b899f10a",
                "sha256": "4083a32b66c2e72feb697b014069a4bed16116b392574f9ced006eff1b1d743c"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "229337d0033d70a07f2e7284b899f10a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 476105,
            "upload_time": "2024-02-13T14:38:44",
            "upload_time_iso_8601": "2024-02-13T14:38:44.256444Z",
            "url": "https://files.pythonhosted.org/packages/12/91/81890541151f4cdd86cf17dfb72ff9b1c7b2ef7eb1a4f4e9f5dc2d11c453/intbitset-3.1.0-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8a090c654af656144372b39c0029819e842fe80906855df458d042b7d1046c2f",
                "md5": "1dc09192e127ca7f742c6e0fabd3f6dc",
                "sha256": "a25c3d42dd18dd2a0e17944709183c2887a2653c616e8953a893be7a29f042be"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1dc09192e127ca7f742c6e0fabd3f6dc",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 79620,
            "upload_time": "2024-02-13T14:38:47",
            "upload_time_iso_8601": "2024-02-13T14:38:47.777040Z",
            "url": "https://files.pythonhosted.org/packages/8a/09/0c654af656144372b39c0029819e842fe80906855df458d042b7d1046c2f/intbitset-3.1.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aa35d313c879974af393cc2e1c9e26c4cd1c9390b31e18db281b7738bb4f1ad9",
                "md5": "cd7c455f4e317776531e12880591f02b",
                "sha256": "18c6d0c305c5ab6e763823a3784f4a0cced72ac4bfdbff4702f8b7eb31eae35a"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "cd7c455f4e317776531e12880591f02b",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 177029,
            "upload_time": "2024-02-13T14:38:50",
            "upload_time_iso_8601": "2024-02-13T14:38:50.813063Z",
            "url": "https://files.pythonhosted.org/packages/aa/35/d313c879974af393cc2e1c9e26c4cd1c9390b31e18db281b7738bb4f1ad9/intbitset-3.1.0-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9ca4a087e1e5c1f23e21c59e6717f8c1bae0b4c8a21c1d6db9ea0678b6b3f7dc",
                "md5": "abab78d1edd82d1bcd2ff5d618e5795f",
                "sha256": "1f951688ec54599109d15138c8a9af4c0e4e70867d8917c0e8975532fd4287d1"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "abab78d1edd82d1bcd2ff5d618e5795f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 374361,
            "upload_time": "2024-02-13T14:38:54",
            "upload_time_iso_8601": "2024-02-13T14:38:54.620685Z",
            "url": "https://files.pythonhosted.org/packages/9c/a4/a087e1e5c1f23e21c59e6717f8c1bae0b4c8a21c1d6db9ea0678b6b3f7dc/intbitset-3.1.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3eeeb4f7b951b395299db1c3bc9d4bb22a045006443b6f298a4c597cff1227ce",
                "md5": "8158b9470ec37dfc891498f5d06645db",
                "sha256": "40b678540169e2d8f9fa7802c816677e060ec15d21d3dda7ed753f4fcc50cff4"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8158b9470ec37dfc891498f5d06645db",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 503670,
            "upload_time": "2024-02-13T14:38:58",
            "upload_time_iso_8601": "2024-02-13T14:38:58.062031Z",
            "url": "https://files.pythonhosted.org/packages/3e/ee/b4f7b951b395299db1c3bc9d4bb22a045006443b6f298a4c597cff1227ce/intbitset-3.1.0-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fbeb15063ac9fef4a4624ff41d92f7fac60e83bd683e72ea37e1383b1e473ebf",
                "md5": "1933c1494e6272131b2a214a83e6f486",
                "sha256": "723eb0cb3fa18438ab0eeb74036fd6e1b2d4997a267032863e7039e95b1524a8"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "1933c1494e6272131b2a214a83e6f486",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 79872,
            "upload_time": "2024-02-13T14:38:59",
            "upload_time_iso_8601": "2024-02-13T14:38:59.896298Z",
            "url": "https://files.pythonhosted.org/packages/fb/eb/15063ac9fef4a4624ff41d92f7fac60e83bd683e72ea37e1383b1e473ebf/intbitset-3.1.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "55a71bfc27a21c327e3e8e465708b9059434408bd9c8d62b60d4b6ada40b31d3",
                "md5": "b5be5341fad3f3e0dfcc55dff07edacf",
                "sha256": "df05d834f1c73dbbf99be3a11011b78d4889b4cb2df91efc16d63bd1d78fa628"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "b5be5341fad3f3e0dfcc55dff07edacf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 179219,
            "upload_time": "2024-02-13T14:39:03",
            "upload_time_iso_8601": "2024-02-13T14:39:03.523726Z",
            "url": "https://files.pythonhosted.org/packages/55/a7/1bfc27a21c327e3e8e465708b9059434408bd9c8d62b60d4b6ada40b31d3/intbitset-3.1.0-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5340bb030bb66d1e719ab247401f0a32a0d6fc3df2d6fdf7d6bff027a93f17c2",
                "md5": "408a8233056a6a325134b308679840cc",
                "sha256": "a358c6da657112ef045cc221ed6d214014ffa43f0b123e1390d3687d35b468d4"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "408a8233056a6a325134b308679840cc",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 353824,
            "upload_time": "2024-02-13T14:39:08",
            "upload_time_iso_8601": "2024-02-13T14:39:08.201847Z",
            "url": "https://files.pythonhosted.org/packages/53/40/bb030bb66d1e719ab247401f0a32a0d6fc3df2d6fdf7d6bff027a93f17c2/intbitset-3.1.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1dd13225f86775ade373b044a208f8623780be79d7c70834244853e86a7520d0",
                "md5": "ee2a819f56f12e060a6747d85576a086",
                "sha256": "ea1973fb9fde78f273573c9e80be89d2c54afbab903a51d260d76427d50a83c5"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ee2a819f56f12e060a6747d85576a086",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 463777,
            "upload_time": "2024-02-13T14:39:12",
            "upload_time_iso_8601": "2024-02-13T14:39:12.721418Z",
            "url": "https://files.pythonhosted.org/packages/1d/d1/3225f86775ade373b044a208f8623780be79d7c70834244853e86a7520d0/intbitset-3.1.0-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4a1d140531fe50ffc64ed07f1421c19ba8a8d81579c64b682f91f5914ad41b3b",
                "md5": "60e3dd2fda3004d5564ace7c874688de",
                "sha256": "6b36e14f50313a197238c9bc67da16c02c7f5e76885008cd3a4c85561e2d54f9"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "60e3dd2fda3004d5564ace7c874688de",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 79697,
            "upload_time": "2024-02-13T14:39:15",
            "upload_time_iso_8601": "2024-02-13T14:39:15.430288Z",
            "url": "https://files.pythonhosted.org/packages/4a/1d/140531fe50ffc64ed07f1421c19ba8a8d81579c64b682f91f5914ad41b3b/intbitset-3.1.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "171ea0de4407565ae27f5c6352392f72c0a1238f9f28b07f8cd34fbc716b0bf6",
                "md5": "2ad2ac9ebff923a33574188216c8e1ee",
                "sha256": "6e83c5ba7fda2520aa8565428bbaf842deb7293d665f3cd8281cb39254d2ff71"
            },
            "downloads": -1,
            "filename": "intbitset-3.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "2ad2ac9ebff923a33574188216c8e1ee",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 189931,
            "upload_time": "2024-02-13T14:39:18",
            "upload_time_iso_8601": "2024-02-13T14:39:18.395940Z",
            "url": "https://files.pythonhosted.org/packages/17/1e/a0de4407565ae27f5c6352392f72c0a1238f9f28b07f8cd34fbc716b0bf6/intbitset-3.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-02-13 14:39:18",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "inveniosoftware-contrib",
    "github_project": "intbitset",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "tox": true,
    "lcname": "intbitset"
}
        
Elapsed time: 0.20889s