bitarray


Namebitarray JSON
Version 2.9.2 PyPI version JSON
download
home_pagehttps://github.com/ilanschnell/bitarray
Summaryefficient arrays of booleans -- C extension
upload_time2024-01-01 21:08:01
maintainer
docs_urlNone
authorIlan Schnell
requires_python
licensePSF
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            bitarray: efficient arrays of booleans
======================================

This library provides an object type which efficiently represents an array
of booleans.  Bitarrays are sequence types and behave very much like usual
lists.  Eight bits are represented by one byte in a contiguous block of
memory.  The user can select between two representations: little-endian
and big-endian.  All functionality is implemented in C.
Methods for accessing the machine representation are provided, including the
ability to import and export buffers.  This allows creating bitarrays that
are mapped to other objects, including memory-mapped files.


Roadmap
-------

In 2024 (probably around July), we are planning the release of bitarray 3.0.
The 3.0 release will:

* Remove Python 2.7 support.
* Rename ``.itersearch()`` to ``.search()`` and ``.iterdecode()``
  to ``.decode()`` (and remove their non-iterator counterpart).
* Remove ``util.rindex()``, use ``.index(..., right=1)`` instead
* Remove ``util.make_endian()``, use ``bitarray(..., endian=...)`` instead
* Remove hackish support for ``bitarray()`` handling unpickling,
  see detailed explaination in `#207 <https://github.com/ilanschnell/bitarray/pull/207>`__.  This will close `#206 <https://github.com/ilanschnell/bitarray/issues/206>`__.


Key features
------------

* The bit-endianness can be specified for each bitarray object, see below.
* Sequence methods: slicing (including slice assignment and deletion),
  operations ``+``, ``*``, ``+=``, ``*=``, the ``in`` operator, ``len()``
* Bitwise operations: ``~``, ``&``, ``|``, ``^``, ``<<``, ``>>`` (as well as
  their in-place versions ``&=``, ``|=``, ``^=``, ``<<=``, ``>>=``).
* Fast methods for encoding and decoding variable bit length prefix codes.
* Bitarray objects support the buffer protocol (both importing and
  exporting buffers).
* Packing and unpacking to other binary data formats, e.g. ``numpy.ndarray``.
* Pickling and unpickling of bitarray objects.
* Immutable ``frozenbitarray`` objects which are hashable
* Sequential search
* Type hinting
* Extensive test suite with about 500 unittests.
* Utility module ``bitarray.util``:

  * conversion to and from hexadecimal strings
  * (de-) serialization
  * pretty printing
  * conversion to and from integers
  * creating Huffman codes
  * compression of sparse bitarrays
  * various count functions
  * other helpful functions


Installation
------------

Python wheels are are available on PyPI for all mayor platforms and Python
versions.  Which means you can simply:

.. code-block:: shell-session

    $ pip install bitarray

In addition, conda packages are available (both the default Anaconda
repository as well as conda-forge support bitarray):

.. code-block:: shell-session

    $ conda install bitarray

Once you have installed the package, you may want to test it:

.. code-block:: shell-session

    $ python -c 'import bitarray; bitarray.test()'
    bitarray is installed in: /Users/ilan/bitarray/bitarray
    bitarray version: 2.9.2
    sys.version: 3.11.0 (main, Oct 25 2022) [Clang 14.0.4]
    sys.prefix: /Users/ilan/Mini3/envs/py311
    pointer size: 64 bit
    sizeof(size_t): 8
    sizeof(bitarrayobject): 80
    HAVE_BUILTIN_BSWAP64: 1
    default bit-endianness: big
    machine byte-order: little
    DEBUG: 0
    .........................................................................
    .........................................................................
    ................................................................
    ----------------------------------------------------------------------
    Ran 502 tests in 0.416s

    OK

The ``test()`` function is part of the API.  It will return
a ``unittest.runner.TextTestResult`` object, such that one can verify that
all tests ran successfully by:

.. code-block:: python

    import bitarray
    assert bitarray.test().wasSuccessful()


Usage
-----

As mentioned above, bitarray objects behave very much like lists, so
there is not too much to learn.  The biggest difference from list
objects (except that bitarray are obviously homogeneous) is the ability
to access the machine representation of the object.
When doing so, the bit-endianness is of importance; this issue is
explained in detail in the section below.  Here, we demonstrate the
basic usage of bitarray objects:

.. code-block:: python

    >>> from bitarray import bitarray
    >>> a = bitarray()         # create empty bitarray
    >>> a.append(1)
    >>> a.extend([1, 0])
    >>> a
    bitarray('110')
    >>> x = bitarray(2 ** 20)  # bitarray of length 1048576 (initialized to 0)
    >>> len(x)
    1048576
    >>> bitarray('1001 011')   # initialize from string (whitespace is ignored)
    bitarray('1001011')
    >>> lst = [1, 0, False, True, True]
    >>> a = bitarray(lst)      # initialize from iterable
    >>> a
    bitarray('10011')
    >>> a[2]    # indexing a single item will always return an integer
    0
    >>> a[2:4]  # whereas indexing a slice will always return a bitarray
    bitarray('01')
    >>> a[2:3]  # even when the slice length is just one
    bitarray('0')
    >>> a.count(1)
    3
    >>> a.remove(0)            # removes first occurrence of 0
    >>> a
    bitarray('1011')

Like lists, bitarray objects support slice assignment and deletion:

.. code-block:: python

    >>> a = bitarray(50)
    >>> a.setall(0)            # set all elements in a to 0
    >>> a[11:37:3] = 9 * bitarray('1')
    >>> a
    bitarray('00000000000100100100100100100100100100000000000000')
    >>> del a[12::3]
    >>> a
    bitarray('0000000000010101010101010101000000000')
    >>> a[-6:] = bitarray('10011')
    >>> a
    bitarray('000000000001010101010101010100010011')
    >>> a += bitarray('000111')
    >>> a[9:]
    bitarray('001010101010101010100010011000111')

In addition, slices can be assigned to booleans, which is easier (and
faster) than assigning to a bitarray in which all values are the same:

.. code-block:: python

    >>> a = 20 * bitarray('0')
    >>> a[1:15:3] = True
    >>> a
    bitarray('01001001001001000000')

This is easier and faster than:

.. code-block:: python

    >>> a = 20 * bitarray('0')
    >>> a[1:15:3] = 5 * bitarray('1')
    >>> a
    bitarray('01001001001001000000')

Note that in the latter we have to create a temporary bitarray whose length
must be known or calculated.  Another example of assigning slices to Booleans,
is setting ranges:

.. code-block:: python

    >>> a = bitarray(30)
    >>> a[:] = 0         # set all elements to 0 - equivalent to a.setall(0)
    >>> a[10:25] = 1     # set elements in range(10, 25) to 1
    >>> a
    bitarray('000000000011111111111111100000')

As of bitarray version 2.8, indices may also be lists of arbitrary
indices (like in NumPy), or bitarrays that are treated as masks,
see `Bitarray indexing <https://github.com/ilanschnell/bitarray/blob/master/doc/indexing.rst>`__.


Bitwise operators
-----------------

Bitarray objects support the bitwise operators ``~``, ``&``, ``|``, ``^``,
``<<``, ``>>`` (as well as their in-place versions ``&=``, ``|=``, ``^=``,
``<<=``, ``>>=``).  The behavior is very much what one would expect:

.. code-block:: python

    >>> a = bitarray('101110001')
    >>> ~a  # invert
    bitarray('010001110')
    >>> b = bitarray('111001011')
    >>> a ^ b
    bitarray('010111010')
    >>> a &= b
    >>> a
    bitarray('101000001')
    >>> a <<= 2   # in-place left shift by 2
    >>> a
    bitarray('100000100')
    >>> b >> 1
    bitarray('011100101')

The C language does not specify the behavior of negative shifts and
of left shifts larger or equal than the width of the promoted left operand.
The exact behavior is compiler/machine specific.
This Python bitarray library specifies the behavior as follows:

* the length of the bitarray is never changed by any shift operation
* blanks are filled by 0
* negative shifts raise ``ValueError``
* shifts larger or equal to the length of the bitarray result in
  bitarrays with all values 0

It is worth noting that (regardless of bit-endianness) the bitarray left
shift (``<<``) always shifts towards lower indices, and the right
shift (``>>``) always shifts towards higher indices.


Bit-endianness
--------------

Unless explicitly converting to machine representation, using
the ``.tobytes()``, ``.frombytes()``, ``.tofile()`` and ``.fromfile()``
methods, as well as using ``memoryview``, the bit-endianness will have no
effect on any computation, and one can skip this section.

Since bitarrays allows addressing individual bits, where the machine
represents 8 bits in one byte, there are two obvious choices for this
mapping: little-endian and big-endian.

When dealing with the machine representation of bitarray objects, it is
recommended to always explicitly specify the endianness.

By default, bitarrays use big-endian representation:

.. code-block:: python

    >>> a = bitarray()
    >>> a.endian()
    'big'
    >>> a.frombytes(b'A')
    >>> a
    bitarray('01000001')
    >>> a[6] = 1
    >>> a.tobytes()
    b'C'

Big-endian means that the most-significant bit comes first.
Here, ``a[0]`` is the lowest address (index) and most significant bit,
and ``a[7]`` is the highest address and least significant bit.

When creating a new bitarray object, the endianness can always be
specified explicitly:

.. code-block:: python

    >>> a = bitarray(endian='little')
    >>> a.frombytes(b'A')
    >>> a
    bitarray('10000010')
    >>> a.endian()
    'little'

Here, the low-bit comes first because little-endian means that increasing
numeric significance corresponds to an increasing address.
So ``a[0]`` is the lowest address and least significant bit,
and ``a[7]`` is the highest address and most significant bit.

The bit-endianness is a property of the bitarray object.
The endianness cannot be changed once a bitarray object is created.
When comparing bitarray objects, the endianness (and hence the machine
representation) is irrelevant; what matters is the mapping from indices
to bits:

.. code-block:: python

    >>> bitarray('11001', endian='big') == bitarray('11001', endian='little')
    True

Bitwise operations (``|``, ``^``, ``&=``, ``|=``, ``^=``, ``~``) are
implemented efficiently using the corresponding byte operations in C, i.e. the
operators act on the machine representation of the bitarray objects.
Therefore, it is not possible to perform bitwise operators on bitarrays
with different endianness.

When converting to and from machine representation, using
the ``.tobytes()``, ``.frombytes()``, ``.tofile()`` and ``.fromfile()``
methods, the endianness matters:

.. code-block:: python

    >>> a = bitarray(endian='little')
    >>> a.frombytes(b'\x01')
    >>> a
    bitarray('10000000')
    >>> b = bitarray(endian='big')
    >>> b.frombytes(b'\x80')
    >>> b
    bitarray('10000000')
    >>> a == b
    True
    >>> a.tobytes() == b.tobytes()
    False

As mentioned above, the endianness can not be changed once an object is
created.  However, you can create a new bitarray with different endianness:

.. code-block:: python

    >>> a = bitarray('111000', endian='little')
    >>> b = bitarray(a, endian='big')
    >>> b
    bitarray('111000')
    >>> a == b
    True


Buffer protocol
---------------

Bitarray objects support the buffer protocol.  They can both export their
own buffer, as well as import another object's buffer.  To learn more about
this topic, please read `buffer protocol <https://github.com/ilanschnell/bitarray/blob/master/doc/buffer.rst>`__.  There is also an example that shows how
to memory-map a file to a bitarray: `mmapped-file.py <https://github.com/ilanschnell/bitarray/blob/master/examples/mmapped-file.py>`__


Variable bit length prefix codes
--------------------------------

The ``.encode()`` method takes a dictionary mapping symbols to bitarrays
and an iterable, and extends the bitarray object with the encoded symbols
found while iterating.  For example:

.. code-block:: python

    >>> d = {'H':bitarray('111'), 'e':bitarray('0'),
    ...      'l':bitarray('110'), 'o':bitarray('10')}
    ...
    >>> a = bitarray()
    >>> a.encode(d, 'Hello')
    >>> a
    bitarray('111011011010')

Note that the string ``'Hello'`` is an iterable, but the symbols are not
limited to characters, in fact any immutable Python object can be a symbol.
Taking the same dictionary, we can apply the ``.decode()`` method which will
return a list of the symbols:

.. code-block:: python

    >>> a.decode(d)
    ['H', 'e', 'l', 'l', 'o']
    >>> ''.join(a.decode(d))
    'Hello'

Since symbols are not limited to being characters, it is necessary to return
them as elements of a list, rather than simply returning the joined string.
The above dictionary ``d`` can be efficiently constructed using the function
``bitarray.util.huffman_code()``.  I also wrote `Huffman coding in Python
using bitarray <http://ilan.schnell-web.net/prog/huffman/>`__ for more
background information.

When the codes are large, and you have many decode calls, most time will
be spent creating the (same) internal decode tree objects.  In this case,
it will be much faster to create a ``decodetree`` object, which can be
passed to bitarray's ``.decode()`` and ``.iterdecode()`` methods, instead
of passing the prefix code dictionary to those methods itself:

.. code-block:: python

    >>> from bitarray import bitarray, decodetree
    >>> t = decodetree({'a': bitarray('0'), 'b': bitarray('1')})
    >>> a = bitarray('0110')
    >>> a.decode(t)
    ['a', 'b', 'b', 'a']
    >>> ''.join(a.iterdecode(t))
    'abba'

The sole purpose of the immutable ``decodetree`` object is to be passed
to bitarray's ``.decode()`` and ``.iterdecode()`` methods.


Frozenbitarrays
---------------

A ``frozenbitarray`` object is very similar to the bitarray object.
The difference is that this a ``frozenbitarray`` is immutable, and hashable,
and can therefore be used as a dictionary key:

.. code-block:: python

    >>> from bitarray import frozenbitarray
    >>> key = frozenbitarray('1100011')
    >>> {key: 'some value'}
    {frozenbitarray('1100011'): 'some value'}
    >>> key[3] = 1
    Traceback (most recent call last):
        ...
    TypeError: frozenbitarray is immutable


Reference
=========

bitarray version: 2.9.2 -- `change log <https://github.com/ilanschnell/bitarray/blob/master/doc/changelog.rst>`__

In the following, ``item`` and ``value`` are usually a single bit -
an integer 0 or 1.

Also, ``sub_bitarray`` refers to either a bitarray, or an ``item``.


The bitarray object:
--------------------

``bitarray(initializer=0, /, endian='big', buffer=None)`` -> bitarray
   Return a new bitarray object whose items are bits initialized from
   the optional initial object, and endianness.
   The initializer may be of the following types:

   ``int``: Create a bitarray of given integer length.  The initial values are
   all ``0``.

   ``str``: Create bitarray from a string of ``0`` and ``1``.

   ``iterable``: Create bitarray from iterable or sequence of integers 0 or 1.

   Optional keyword arguments:

   ``endian``: Specifies the bit-endianness of the created bitarray object.
   Allowed values are ``big`` and ``little`` (the default is ``big``).
   The bit-endianness effects the buffer representation of the bitarray.

   ``buffer``: Any object which exposes a buffer.  When provided, ``initializer``
   cannot be present (or has to be ``None``).  The imported buffer may be
   read-only or writable, depending on the object type.

   New in version 2.3: optional ``buffer`` argument.


bitarray methods:
-----------------

``all()`` -> bool
   Return True when all bits in bitarray are True.
   Note that ``a.all()`` is faster than ``all(a)``.


``any()`` -> bool
   Return True when any bit in bitarray is True.
   Note that ``a.any()`` is faster than ``any(a)``.


``append(item, /)``
   Append ``item`` to the end of the bitarray.


``buffer_info()`` -> tuple
   Return a tuple containing:

   0. memory address of buffer
   1. buffer size (in bytes)
   2. bit-endianness as a string
   3. number of pad bits
   4. allocated memory for the buffer (in bytes)
   5. memory is read-only
   6. buffer is imported
   7. number of buffer exports


``bytereverse(start=0, stop=<end of buffer>, /)``
   For each byte in byte-range(start, stop) reverse bits in-place.
   The start and stop indices are given in terms of bytes (not bits).
   Also note that this method only changes the buffer; it does not change the
   endianness of the bitarray object.  Padbits are left unchanged such that
   two consecutive calls will always leave the bitarray unchanged.

   New in version 2.2.5: optional start and stop arguments.


``clear()``
   Remove all items from the bitarray.

   New in version 1.4.


``copy()`` -> bitarray
   Return a copy of the bitarray.


``count(value=1, start=0, stop=<end>, step=1, /)`` -> int
   Number of occurrences of ``value`` bitarray within ``[start:stop:step]``.
   Optional arguments ``start``, ``stop`` and ``step`` are interpreted in
   slice notation, meaning ``a.count(value, start, stop, step)`` equals
   ``a[start:stop:step].count(value)``.
   The ``value`` may also be a sub-bitarray.  In this case non-overlapping
   occurrences are counted within ``[start:stop]`` (``step`` must be 1).

   New in version 1.1.0: optional start and stop arguments.

   New in version 2.3.7: optional step argument.

   New in version 2.9: add non-overlapping sub-bitarray count.


``decode(code, /)`` -> list
   Given a prefix code (a dict mapping symbols to bitarrays, or ``decodetree``
   object), decode content of bitarray and return it as a list of symbols.


``encode(code, iterable, /)``
   Given a prefix code (a dict mapping symbols to bitarrays),
   iterate over the iterable object with symbols, and extend bitarray
   with corresponding bitarray for each symbol.


``endian()`` -> str
   Return the bit-endianness of the bitarray as a string (``little`` or ``big``).


``extend(iterable, /)``
   Append all items from ``iterable`` to the end of the bitarray.
   If the iterable is a string, each ``0`` and ``1`` are appended as
   bits (ignoring whitespace and underscore).


``fill()`` -> int
   Add zeros to the end of the bitarray, such that the length will be
   a multiple of 8, and return the number of bits added [0..7].


``find(sub_bitarray, start=0, stop=<end>, /, right=False)`` -> int
   Return lowest (or rightmost when ``right=True``) index where sub_bitarray
   is found, such that sub_bitarray is contained within ``[start:stop]``.
   Return -1 when sub_bitarray is not found.

   New in version 2.1.

   New in version 2.9: add optional keyword argument ``right``.


``frombytes(bytes, /)``
   Extend bitarray with raw bytes from a bytes-like object.
   Each added byte will add eight bits to the bitarray.

   New in version 2.5.0: allow bytes-like argument.


``fromfile(f, n=-1, /)``
   Extend bitarray with up to ``n`` bytes read from file object ``f`` (or any
   other binary stream what supports a ``.read()`` method, e.g. ``io.BytesIO``).
   Each read byte will add eight bits to the bitarray.  When ``n`` is omitted or
   negative, all bytes until EOF are read.  When ``n`` is non-negative but
   exceeds the data available, ``EOFError`` is raised (but the available data
   is still read and appended).


``index(sub_bitarray, start=0, stop=<end>, /, right=False)`` -> int
   Return lowest (or rightmost when ``right=True``) index where sub_bitarray
   is found, such that sub_bitarray is contained within ``[start:stop]``.
   Raises ``ValueError`` when the sub_bitarray is not present.

   New in version 2.9: add optional keyword argument ``right``.


``insert(index, value, /)``
   Insert ``value`` into bitarray before ``index``.


``invert(index=<all bits>, /)``
   Invert all bits in bitarray (in-place).
   When the optional ``index`` is given, only invert the single bit at index.

   New in version 1.5.3: optional index argument.


``iterdecode(code, /)`` -> iterator
   Given a prefix code (a dict mapping symbols to bitarrays, or ``decodetree``
   object), decode content of bitarray and return an iterator over
   the symbols.


``itersearch(sub_bitarray, start=0, stop=<end>, /, right=False)`` -> iterator
   Return iterator over indices where sub_bitarray is found, such that
   sub_bitarray is contained within ``[start:stop]``.
   The indices are iterated in ascending order (from lowest to highest),
   unless ``right=True``, which will iterate in descending oder (starting with
   rightmost match).

   New in version 2.9: optional start and stop arguments - add optional keyword argument ``right``.


``pack(bytes, /)``
   Extend bitarray from a bytes-like object, where each byte corresponds
   to a single bit.  The byte ``b'\x00'`` maps to bit 0 and all other bytes
   map to bit 1.

   This method, as well as the ``.unpack()`` method, are meant for efficient
   transfer of data between bitarray objects to other Python objects (for
   example NumPy's ndarray object) which have a different memory view.

   New in version 2.5.0: allow bytes-like argument.


``pop(index=-1, /)`` -> item
   Remove and return item at ``index`` (default last).
   Raises ``IndexError`` if index is out of range.


``remove(value, /)``
   Remove the first occurrence of ``value``.
   Raises ``ValueError`` if value is not present.


``reverse()``
   Reverse all bits in bitarray (in-place).


``search(sub_bitarray, limit=<none>, /)`` -> list
   Searches for given sub_bitarray in self, and return list of start
   positions.
   The optional argument limits the number of search results to the integer
   specified.  By default, all search results are returned.


``setall(value, /)``
   Set all elements in bitarray to ``value``.
   Note that ``a.setall(value)`` is equivalent to ``a[:] = value``.


``sort(reverse=False)``
   Sort all bits in bitarray (in-place).


``to01()`` -> str
   Return a string containing '0's and '1's, representing the bits in the
   bitarray.


``tobytes()`` -> bytes
   Return the bitarray buffer in bytes (pad bits are set to zero).


``tofile(f, /)``
   Write byte representation of bitarray to file object f.


``tolist()`` -> list
   Return bitarray as list of integer items.
   ``a.tolist()`` is equal to ``list(a)``.

   Note that the list object being created will require 32 or 64 times more
   memory (depending on the machine architecture) than the bitarray object,
   which may cause a memory error if the bitarray is very large.


``unpack(zero=b'\x00', one=b'\x01')`` -> bytes
   Return bytes containing one character for each bit in the bitarray,
   using specified mapping.


bitarray data descriptors:
--------------------------

Data descriptors were added in version 2.6.

``nbytes`` -> int
   buffer size in bytes


``padbits`` -> int
   number of pad bits


``readonly`` -> bool
   bool indicating whether buffer is read-only


Other objects:
--------------

``frozenbitarray(initializer=0, /, endian='big', buffer=None)`` -> frozenbitarray
   Return a ``frozenbitarray`` object.  Initialized the same way a ``bitarray``
   object is initialized.  A ``frozenbitarray`` is immutable and hashable,
   and may therefore be used as a dictionary key.

   New in version 1.1.


``decodetree(code, /)`` -> decodetree
   Given a prefix code (a dict mapping symbols to bitarrays),
   create a binary tree object to be passed to ``.decode()`` or ``.iterdecode()``.

   New in version 1.6.


Functions defined in the `bitarray` module:
-------------------------------------------

``bits2bytes(n, /)`` -> int
   Return the number of bytes necessary to store n bits.


``get_default_endian()`` -> str
   Return the default endianness for new bitarray objects being created.
   Unless ``_set_default_endian('little')`` was called, the default endianness
   is ``big``.

   New in version 1.3.


``test(verbosity=1)`` -> TextTestResult
   Run self-test, and return unittest.runner.TextTestResult object.


Functions defined in `bitarray.util` module:
--------------------------------------------

This sub-module was added in version 1.2.

``zeros(length, /, endian=None)`` -> bitarray
   Create a bitarray of length, with all values 0, and optional
   endianness, which may be 'big', 'little'.


``ones(length, /, endian=None)`` -> bitarray
   Create a bitarray of length, with all values 1, and optional
   endianness, which may be 'big', 'little'.

   New in version 2.9.


``urandom(length, /, endian=None)`` -> bitarray
   Return a bitarray of ``length`` random bits (uses ``os.urandom``).

   New in version 1.7.


``pprint(bitarray, /, stream=None, group=8, indent=4, width=80)``
   Prints the formatted representation of object on ``stream`` (which defaults
   to ``sys.stdout``).  By default, elements are grouped in bytes (8 elements),
   and 8 bytes (64 elements) per line.
   Non-bitarray objects are printed by the standard library
   function ``pprint.pprint()``.

   New in version 1.8.


``make_endian(bitarray, /, endian)`` -> bitarray
   When the endianness of the given bitarray is different from ``endian``,
   return a new bitarray, with endianness ``endian`` and the same elements
   as the original bitarray.
   Otherwise (endianness is already ``endian``) the original bitarray is returned
   unchanged.

   New in version 1.3.

   New in version 2.9: deprecated - use ``bitarray()``.


``rindex(bitarray, sub_bitarray=1, start=0, stop=<end>, /)`` -> int
   Return rightmost (highest) index where sub_bitarray (or item - defaults
   to 1) is found in bitarray (``a``), such that sub_bitarray is contained
   within ``a[start:stop]``.
   Raises ``ValueError`` when the sub_bitarray is not present.

   New in version 2.3.0: optional start and stop arguments.

   New in version 2.9: deprecated - use ``.index(..., right=1)``.


``strip(bitarray, /, mode='right')`` -> bitarray
   Return a new bitarray with zeros stripped from left, right or both ends.
   Allowed values for mode are the strings: ``left``, ``right``, ``both``


``count_n(a, n, value=1, /)`` -> int
   Return lowest index ``i`` for which ``a[:i].count(value) == n``.
   Raises ``ValueError`` when ``n`` exceeds total count (``a.count(value)``).

   New in version 2.3.6: optional value argument.


``parity(a, /)`` -> int
   Return parity of bitarray ``a``.
   ``parity(a)`` is equivalent to ``a.count() % 2`` but more efficient.

   New in version 1.9.


``count_and(a, b, /)`` -> int
   Return ``(a & b).count()`` in a memory efficient manner,
   as no intermediate bitarray object gets created.


``count_or(a, b, /)`` -> int
   Return ``(a | b).count()`` in a memory efficient manner,
   as no intermediate bitarray object gets created.


``count_xor(a, b, /)`` -> int
   Return ``(a ^ b).count()`` in a memory efficient manner,
   as no intermediate bitarray object gets created.

   This is also known as the Hamming distance.


``any_and(a, b, /)`` -> bool
   Efficient implementation of ``any(a & b)``.

   New in version 2.7.


``subset(a, b, /)`` -> bool
   Return ``True`` if bitarray ``a`` is a subset of bitarray ``b``.
   ``subset(a, b)`` is equivalent to ``a | b == b`` (and equally ``a & b == a``) but
   more efficient as no intermediate bitarray object is created and the buffer
   iteration is stopped as soon as one mismatch is found.


``intervals(bitarray, /)`` -> iterator
   Compute all uninterrupted intervals of 1s and 0s, and return an
   iterator over tuples ``(value, start, stop)``.  The intervals are guaranteed
   to be in order, and their size is always non-zero (``stop - start > 0``).

   New in version 2.7.


``ba2hex(bitarray, /)`` -> hexstr
   Return a string containing the hexadecimal representation of
   the bitarray (which has to be multiple of 4 in length).


``hex2ba(hexstr, /, endian=None)`` -> bitarray
   Bitarray of hexadecimal representation.  hexstr may contain any number
   (including odd numbers) of hex digits (upper or lower case).


``ba2base(n, bitarray, /)`` -> str
   Return a string containing the base ``n`` ASCII representation of
   the bitarray.  Allowed values for ``n`` are 2, 4, 8, 16, 32 and 64.
   The bitarray has to be multiple of length 1, 2, 3, 4, 5 or 6 respectively.
   For ``n=32`` the RFC 4648 Base32 alphabet is used, and for ``n=64`` the
   standard base 64 alphabet is used.

   See also: `Bitarray representations <https://github.com/ilanschnell/bitarray/blob/master/doc/represent.rst>`__

   New in version 1.9.


``base2ba(n, asciistr, /, endian=None)`` -> bitarray
   Bitarray of base ``n`` ASCII representation.
   Allowed values for ``n`` are 2, 4, 8, 16, 32 and 64.
   For ``n=32`` the RFC 4648 Base32 alphabet is used, and for ``n=64`` the
   standard base 64 alphabet is used.

   See also: `Bitarray representations <https://github.com/ilanschnell/bitarray/blob/master/doc/represent.rst>`__

   New in version 1.9.


``ba2int(bitarray, /, signed=False)`` -> int
   Convert the given bitarray to an integer.
   The bit-endianness of the bitarray is respected.
   ``signed`` indicates whether two's complement is used to represent the integer.


``int2ba(int, /, length=None, endian=None, signed=False)`` -> bitarray
   Convert the given integer to a bitarray (with given endianness,
   and no leading (big-endian) / trailing (little-endian) zeros), unless
   the ``length`` of the bitarray is provided.  An ``OverflowError`` is raised
   if the integer is not representable with the given number of bits.
   ``signed`` determines whether two's complement is used to represent the integer,
   and requires ``length`` to be provided.


``serialize(bitarray, /)`` -> bytes
   Return a serialized representation of the bitarray, which may be passed to
   ``deserialize()``.  It efficiently represents the bitarray object (including
   its bit-endianness) and is guaranteed not to change in future releases.

   See also: `Bitarray representations <https://github.com/ilanschnell/bitarray/blob/master/doc/represent.rst>`__

   New in version 1.8.


``deserialize(bytes, /)`` -> bitarray
   Return a bitarray given a bytes-like representation such as returned
   by ``serialize()``.

   See also: `Bitarray representations <https://github.com/ilanschnell/bitarray/blob/master/doc/represent.rst>`__

   New in version 1.8.

   New in version 2.5.0: allow bytes-like argument.


``sc_encode(bitarray, /)`` -> bytes
   Compress a sparse bitarray and return its binary representation.
   This representation is useful for efficiently storing sparse bitarrays.
   Use ``sc_decode()`` for decompressing (decoding).

   See also: `Compression of sparse bitarrays <https://github.com/ilanschnell/bitarray/blob/master/doc/sparse_compression.rst>`__

   New in version 2.7.


``sc_decode(stream)`` -> bitarray
   Decompress binary stream (an integer iterator, or bytes-like object) of a
   sparse compressed (``sc``) bitarray, and return the decoded  bitarray.
   This function consumes only one bitarray and leaves the remaining stream
   untouched.  Use ``sc_encode()`` for compressing (encoding).

   See also: `Compression of sparse bitarrays <https://github.com/ilanschnell/bitarray/blob/master/doc/sparse_compression.rst>`__

   New in version 2.7.


``vl_encode(bitarray, /)`` -> bytes
   Return variable length binary representation of bitarray.
   This representation is useful for efficiently storing small bitarray
   in a binary stream.  Use ``vl_decode()`` for decoding.

   See also: `Variable length bitarray format <https://github.com/ilanschnell/bitarray/blob/master/doc/variable_length.rst>`__

   New in version 2.2.


``vl_decode(stream, /, endian=None)`` -> bitarray
   Decode binary stream (an integer iterator, or bytes-like object), and
   return the decoded bitarray.  This function consumes only one bitarray and
   leaves the remaining stream untouched.  Use ``vl_encode()`` for encoding.

   See also: `Variable length bitarray format <https://github.com/ilanschnell/bitarray/blob/master/doc/variable_length.rst>`__

   New in version 2.2.


``huffman_code(dict, /, endian=None)`` -> dict
   Given a frequency map, a dictionary mapping symbols to their frequency,
   calculate the Huffman code, i.e. a dict mapping those symbols to
   bitarrays (with given endianness).  Note that the symbols are not limited
   to being strings.  Symbols may may be any hashable object (such as ``None``).


``canonical_huffman(dict, /)`` -> tuple
   Given a frequency map, a dictionary mapping symbols to their frequency,
   calculate the canonical Huffman code.  Returns a tuple containing:

   0. the canonical Huffman code as a dict mapping symbols to bitarrays
   1. a list containing the number of symbols of each code length
   2. a list of symbols in canonical order

   Note: the two lists may be used as input for ``canonical_decode()``.

   See also: `Canonical Huffman Coding <https://github.com/ilanschnell/bitarray/blob/master/doc/canonical.rst>`__

   New in version 2.5.


``canonical_decode(bitarray, count, symbol, /)`` -> iterator
   Decode bitarray using canonical Huffman decoding tables
   where ``count`` is a sequence containing the number of symbols of each length
   and ``symbol`` is a sequence of symbols in canonical order.

   See also: `Canonical Huffman Coding <https://github.com/ilanschnell/bitarray/blob/master/doc/canonical.rst>`__

   New in version 2.5.



            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/ilanschnell/bitarray",
    "name": "bitarray",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "",
    "author": "Ilan Schnell",
    "author_email": "ilanschnell@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/c7/bf/25cf92a83e1fe4948d7935ae3c02f4c9ff9cb9c13e977fba8af11a5f642c/bitarray-2.9.2.tar.gz",
    "platform": null,
    "description": "bitarray: efficient arrays of booleans\n======================================\n\nThis library provides an object type which efficiently represents an array\nof booleans.  Bitarrays are sequence types and behave very much like usual\nlists.  Eight bits are represented by one byte in a contiguous block of\nmemory.  The user can select between two representations: little-endian\nand big-endian.  All functionality is implemented in C.\nMethods for accessing the machine representation are provided, including the\nability to import and export buffers.  This allows creating bitarrays that\nare mapped to other objects, including memory-mapped files.\n\n\nRoadmap\n-------\n\nIn 2024 (probably around July), we are planning the release of bitarray 3.0.\nThe 3.0 release will:\n\n* Remove Python 2.7 support.\n* Rename ``.itersearch()`` to ``.search()`` and ``.iterdecode()``\n  to ``.decode()`` (and remove their non-iterator counterpart).\n* Remove ``util.rindex()``, use ``.index(..., right=1)`` instead\n* Remove ``util.make_endian()``, use ``bitarray(..., endian=...)`` instead\n* Remove hackish support for ``bitarray()`` handling unpickling,\n  see detailed explaination in `#207 <https://github.com/ilanschnell/bitarray/pull/207>`__.  This will close `#206 <https://github.com/ilanschnell/bitarray/issues/206>`__.\n\n\nKey features\n------------\n\n* The bit-endianness can be specified for each bitarray object, see below.\n* Sequence methods: slicing (including slice assignment and deletion),\n  operations ``+``, ``*``, ``+=``, ``*=``, the ``in`` operator, ``len()``\n* Bitwise operations: ``~``, ``&``, ``|``, ``^``, ``<<``, ``>>`` (as well as\n  their in-place versions ``&=``, ``|=``, ``^=``, ``<<=``, ``>>=``).\n* Fast methods for encoding and decoding variable bit length prefix codes.\n* Bitarray objects support the buffer protocol (both importing and\n  exporting buffers).\n* Packing and unpacking to other binary data formats, e.g. ``numpy.ndarray``.\n* Pickling and unpickling of bitarray objects.\n* Immutable ``frozenbitarray`` objects which are hashable\n* Sequential search\n* Type hinting\n* Extensive test suite with about 500 unittests.\n* Utility module ``bitarray.util``:\n\n  * conversion to and from hexadecimal strings\n  * (de-) serialization\n  * pretty printing\n  * conversion to and from integers\n  * creating Huffman codes\n  * compression of sparse bitarrays\n  * various count functions\n  * other helpful functions\n\n\nInstallation\n------------\n\nPython wheels are are available on PyPI for all mayor platforms and Python\nversions.  Which means you can simply:\n\n.. code-block:: shell-session\n\n    $ pip install bitarray\n\nIn addition, conda packages are available (both the default Anaconda\nrepository as well as conda-forge support bitarray):\n\n.. code-block:: shell-session\n\n    $ conda install bitarray\n\nOnce you have installed the package, you may want to test it:\n\n.. code-block:: shell-session\n\n    $ python -c 'import bitarray; bitarray.test()'\n    bitarray is installed in: /Users/ilan/bitarray/bitarray\n    bitarray version: 2.9.2\n    sys.version: 3.11.0 (main, Oct 25 2022) [Clang 14.0.4]\n    sys.prefix: /Users/ilan/Mini3/envs/py311\n    pointer size: 64 bit\n    sizeof(size_t): 8\n    sizeof(bitarrayobject): 80\n    HAVE_BUILTIN_BSWAP64: 1\n    default bit-endianness: big\n    machine byte-order: little\n    DEBUG: 0\n    .........................................................................\n    .........................................................................\n    ................................................................\n    ----------------------------------------------------------------------\n    Ran 502 tests in 0.416s\n\n    OK\n\nThe ``test()`` function is part of the API.  It will return\na ``unittest.runner.TextTestResult`` object, such that one can verify that\nall tests ran successfully by:\n\n.. code-block:: python\n\n    import bitarray\n    assert bitarray.test().wasSuccessful()\n\n\nUsage\n-----\n\nAs mentioned above, bitarray objects behave very much like lists, so\nthere is not too much to learn.  The biggest difference from list\nobjects (except that bitarray are obviously homogeneous) is the ability\nto access the machine representation of the object.\nWhen doing so, the bit-endianness is of importance; this issue is\nexplained in detail in the section below.  Here, we demonstrate the\nbasic usage of bitarray objects:\n\n.. code-block:: python\n\n    >>> from bitarray import bitarray\n    >>> a = bitarray()         # create empty bitarray\n    >>> a.append(1)\n    >>> a.extend([1, 0])\n    >>> a\n    bitarray('110')\n    >>> x = bitarray(2 ** 20)  # bitarray of length 1048576 (initialized to 0)\n    >>> len(x)\n    1048576\n    >>> bitarray('1001 011')   # initialize from string (whitespace is ignored)\n    bitarray('1001011')\n    >>> lst = [1, 0, False, True, True]\n    >>> a = bitarray(lst)      # initialize from iterable\n    >>> a\n    bitarray('10011')\n    >>> a[2]    # indexing a single item will always return an integer\n    0\n    >>> a[2:4]  # whereas indexing a slice will always return a bitarray\n    bitarray('01')\n    >>> a[2:3]  # even when the slice length is just one\n    bitarray('0')\n    >>> a.count(1)\n    3\n    >>> a.remove(0)            # removes first occurrence of 0\n    >>> a\n    bitarray('1011')\n\nLike lists, bitarray objects support slice assignment and deletion:\n\n.. code-block:: python\n\n    >>> a = bitarray(50)\n    >>> a.setall(0)            # set all elements in a to 0\n    >>> a[11:37:3] = 9 * bitarray('1')\n    >>> a\n    bitarray('00000000000100100100100100100100100100000000000000')\n    >>> del a[12::3]\n    >>> a\n    bitarray('0000000000010101010101010101000000000')\n    >>> a[-6:] = bitarray('10011')\n    >>> a\n    bitarray('000000000001010101010101010100010011')\n    >>> a += bitarray('000111')\n    >>> a[9:]\n    bitarray('001010101010101010100010011000111')\n\nIn addition, slices can be assigned to booleans, which is easier (and\nfaster) than assigning to a bitarray in which all values are the same:\n\n.. code-block:: python\n\n    >>> a = 20 * bitarray('0')\n    >>> a[1:15:3] = True\n    >>> a\n    bitarray('01001001001001000000')\n\nThis is easier and faster than:\n\n.. code-block:: python\n\n    >>> a = 20 * bitarray('0')\n    >>> a[1:15:3] = 5 * bitarray('1')\n    >>> a\n    bitarray('01001001001001000000')\n\nNote that in the latter we have to create a temporary bitarray whose length\nmust be known or calculated.  Another example of assigning slices to Booleans,\nis setting ranges:\n\n.. code-block:: python\n\n    >>> a = bitarray(30)\n    >>> a[:] = 0         # set all elements to 0 - equivalent to a.setall(0)\n    >>> a[10:25] = 1     # set elements in range(10, 25) to 1\n    >>> a\n    bitarray('000000000011111111111111100000')\n\nAs of bitarray version 2.8, indices may also be lists of arbitrary\nindices (like in NumPy), or bitarrays that are treated as masks,\nsee `Bitarray indexing <https://github.com/ilanschnell/bitarray/blob/master/doc/indexing.rst>`__.\n\n\nBitwise operators\n-----------------\n\nBitarray objects support the bitwise operators ``~``, ``&``, ``|``, ``^``,\n``<<``, ``>>`` (as well as their in-place versions ``&=``, ``|=``, ``^=``,\n``<<=``, ``>>=``).  The behavior is very much what one would expect:\n\n.. code-block:: python\n\n    >>> a = bitarray('101110001')\n    >>> ~a  # invert\n    bitarray('010001110')\n    >>> b = bitarray('111001011')\n    >>> a ^ b\n    bitarray('010111010')\n    >>> a &= b\n    >>> a\n    bitarray('101000001')\n    >>> a <<= 2   # in-place left shift by 2\n    >>> a\n    bitarray('100000100')\n    >>> b >> 1\n    bitarray('011100101')\n\nThe C language does not specify the behavior of negative shifts and\nof left shifts larger or equal than the width of the promoted left operand.\nThe exact behavior is compiler/machine specific.\nThis Python bitarray library specifies the behavior as follows:\n\n* the length of the bitarray is never changed by any shift operation\n* blanks are filled by 0\n* negative shifts raise ``ValueError``\n* shifts larger or equal to the length of the bitarray result in\n  bitarrays with all values 0\n\nIt is worth noting that (regardless of bit-endianness) the bitarray left\nshift (``<<``) always shifts towards lower indices, and the right\nshift (``>>``) always shifts towards higher indices.\n\n\nBit-endianness\n--------------\n\nUnless explicitly converting to machine representation, using\nthe ``.tobytes()``, ``.frombytes()``, ``.tofile()`` and ``.fromfile()``\nmethods, as well as using ``memoryview``, the bit-endianness will have no\neffect on any computation, and one can skip this section.\n\nSince bitarrays allows addressing individual bits, where the machine\nrepresents 8 bits in one byte, there are two obvious choices for this\nmapping: little-endian and big-endian.\n\nWhen dealing with the machine representation of bitarray objects, it is\nrecommended to always explicitly specify the endianness.\n\nBy default, bitarrays use big-endian representation:\n\n.. code-block:: python\n\n    >>> a = bitarray()\n    >>> a.endian()\n    'big'\n    >>> a.frombytes(b'A')\n    >>> a\n    bitarray('01000001')\n    >>> a[6] = 1\n    >>> a.tobytes()\n    b'C'\n\nBig-endian means that the most-significant bit comes first.\nHere, ``a[0]`` is the lowest address (index) and most significant bit,\nand ``a[7]`` is the highest address and least significant bit.\n\nWhen creating a new bitarray object, the endianness can always be\nspecified explicitly:\n\n.. code-block:: python\n\n    >>> a = bitarray(endian='little')\n    >>> a.frombytes(b'A')\n    >>> a\n    bitarray('10000010')\n    >>> a.endian()\n    'little'\n\nHere, the low-bit comes first because little-endian means that increasing\nnumeric significance corresponds to an increasing address.\nSo ``a[0]`` is the lowest address and least significant bit,\nand ``a[7]`` is the highest address and most significant bit.\n\nThe bit-endianness is a property of the bitarray object.\nThe endianness cannot be changed once a bitarray object is created.\nWhen comparing bitarray objects, the endianness (and hence the machine\nrepresentation) is irrelevant; what matters is the mapping from indices\nto bits:\n\n.. code-block:: python\n\n    >>> bitarray('11001', endian='big') == bitarray('11001', endian='little')\n    True\n\nBitwise operations (``|``, ``^``, ``&=``, ``|=``, ``^=``, ``~``) are\nimplemented efficiently using the corresponding byte operations in C, i.e. the\noperators act on the machine representation of the bitarray objects.\nTherefore, it is not possible to perform bitwise operators on bitarrays\nwith different endianness.\n\nWhen converting to and from machine representation, using\nthe ``.tobytes()``, ``.frombytes()``, ``.tofile()`` and ``.fromfile()``\nmethods, the endianness matters:\n\n.. code-block:: python\n\n    >>> a = bitarray(endian='little')\n    >>> a.frombytes(b'\\x01')\n    >>> a\n    bitarray('10000000')\n    >>> b = bitarray(endian='big')\n    >>> b.frombytes(b'\\x80')\n    >>> b\n    bitarray('10000000')\n    >>> a == b\n    True\n    >>> a.tobytes() == b.tobytes()\n    False\n\nAs mentioned above, the endianness can not be changed once an object is\ncreated.  However, you can create a new bitarray with different endianness:\n\n.. code-block:: python\n\n    >>> a = bitarray('111000', endian='little')\n    >>> b = bitarray(a, endian='big')\n    >>> b\n    bitarray('111000')\n    >>> a == b\n    True\n\n\nBuffer protocol\n---------------\n\nBitarray objects support the buffer protocol.  They can both export their\nown buffer, as well as import another object's buffer.  To learn more about\nthis topic, please read `buffer protocol <https://github.com/ilanschnell/bitarray/blob/master/doc/buffer.rst>`__.  There is also an example that shows how\nto memory-map a file to a bitarray: `mmapped-file.py <https://github.com/ilanschnell/bitarray/blob/master/examples/mmapped-file.py>`__\n\n\nVariable bit length prefix codes\n--------------------------------\n\nThe ``.encode()`` method takes a dictionary mapping symbols to bitarrays\nand an iterable, and extends the bitarray object with the encoded symbols\nfound while iterating.  For example:\n\n.. code-block:: python\n\n    >>> d = {'H':bitarray('111'), 'e':bitarray('0'),\n    ...      'l':bitarray('110'), 'o':bitarray('10')}\n    ...\n    >>> a = bitarray()\n    >>> a.encode(d, 'Hello')\n    >>> a\n    bitarray('111011011010')\n\nNote that the string ``'Hello'`` is an iterable, but the symbols are not\nlimited to characters, in fact any immutable Python object can be a symbol.\nTaking the same dictionary, we can apply the ``.decode()`` method which will\nreturn a list of the symbols:\n\n.. code-block:: python\n\n    >>> a.decode(d)\n    ['H', 'e', 'l', 'l', 'o']\n    >>> ''.join(a.decode(d))\n    'Hello'\n\nSince symbols are not limited to being characters, it is necessary to return\nthem as elements of a list, rather than simply returning the joined string.\nThe above dictionary ``d`` can be efficiently constructed using the function\n``bitarray.util.huffman_code()``.  I also wrote `Huffman coding in Python\nusing bitarray <http://ilan.schnell-web.net/prog/huffman/>`__ for more\nbackground information.\n\nWhen the codes are large, and you have many decode calls, most time will\nbe spent creating the (same) internal decode tree objects.  In this case,\nit will be much faster to create a ``decodetree`` object, which can be\npassed to bitarray's ``.decode()`` and ``.iterdecode()`` methods, instead\nof passing the prefix code dictionary to those methods itself:\n\n.. code-block:: python\n\n    >>> from bitarray import bitarray, decodetree\n    >>> t = decodetree({'a': bitarray('0'), 'b': bitarray('1')})\n    >>> a = bitarray('0110')\n    >>> a.decode(t)\n    ['a', 'b', 'b', 'a']\n    >>> ''.join(a.iterdecode(t))\n    'abba'\n\nThe sole purpose of the immutable ``decodetree`` object is to be passed\nto bitarray's ``.decode()`` and ``.iterdecode()`` methods.\n\n\nFrozenbitarrays\n---------------\n\nA ``frozenbitarray`` object is very similar to the bitarray object.\nThe difference is that this a ``frozenbitarray`` is immutable, and hashable,\nand can therefore be used as a dictionary key:\n\n.. code-block:: python\n\n    >>> from bitarray import frozenbitarray\n    >>> key = frozenbitarray('1100011')\n    >>> {key: 'some value'}\n    {frozenbitarray('1100011'): 'some value'}\n    >>> key[3] = 1\n    Traceback (most recent call last):\n        ...\n    TypeError: frozenbitarray is immutable\n\n\nReference\n=========\n\nbitarray version: 2.9.2 -- `change log <https://github.com/ilanschnell/bitarray/blob/master/doc/changelog.rst>`__\n\nIn the following, ``item`` and ``value`` are usually a single bit -\nan integer 0 or 1.\n\nAlso, ``sub_bitarray`` refers to either a bitarray, or an ``item``.\n\n\nThe bitarray object:\n--------------------\n\n``bitarray(initializer=0, /, endian='big', buffer=None)`` -> bitarray\n   Return a new bitarray object whose items are bits initialized from\n   the optional initial object, and endianness.\n   The initializer may be of the following types:\n\n   ``int``: Create a bitarray of given integer length.  The initial values are\n   all ``0``.\n\n   ``str``: Create bitarray from a string of ``0`` and ``1``.\n\n   ``iterable``: Create bitarray from iterable or sequence of integers 0 or 1.\n\n   Optional keyword arguments:\n\n   ``endian``: Specifies the bit-endianness of the created bitarray object.\n   Allowed values are ``big`` and ``little`` (the default is ``big``).\n   The bit-endianness effects the buffer representation of the bitarray.\n\n   ``buffer``: Any object which exposes a buffer.  When provided, ``initializer``\n   cannot be present (or has to be ``None``).  The imported buffer may be\n   read-only or writable, depending on the object type.\n\n   New in version 2.3: optional ``buffer`` argument.\n\n\nbitarray methods:\n-----------------\n\n``all()`` -> bool\n   Return True when all bits in bitarray are True.\n   Note that ``a.all()`` is faster than ``all(a)``.\n\n\n``any()`` -> bool\n   Return True when any bit in bitarray is True.\n   Note that ``a.any()`` is faster than ``any(a)``.\n\n\n``append(item, /)``\n   Append ``item`` to the end of the bitarray.\n\n\n``buffer_info()`` -> tuple\n   Return a tuple containing:\n\n   0. memory address of buffer\n   1. buffer size (in bytes)\n   2. bit-endianness as a string\n   3. number of pad bits\n   4. allocated memory for the buffer (in bytes)\n   5. memory is read-only\n   6. buffer is imported\n   7. number of buffer exports\n\n\n``bytereverse(start=0, stop=<end of buffer>, /)``\n   For each byte in byte-range(start, stop) reverse bits in-place.\n   The start and stop indices are given in terms of bytes (not bits).\n   Also note that this method only changes the buffer; it does not change the\n   endianness of the bitarray object.  Padbits are left unchanged such that\n   two consecutive calls will always leave the bitarray unchanged.\n\n   New in version 2.2.5: optional start and stop arguments.\n\n\n``clear()``\n   Remove all items from the bitarray.\n\n   New in version 1.4.\n\n\n``copy()`` -> bitarray\n   Return a copy of the bitarray.\n\n\n``count(value=1, start=0, stop=<end>, step=1, /)`` -> int\n   Number of occurrences of ``value`` bitarray within ``[start:stop:step]``.\n   Optional arguments ``start``, ``stop`` and ``step`` are interpreted in\n   slice notation, meaning ``a.count(value, start, stop, step)`` equals\n   ``a[start:stop:step].count(value)``.\n   The ``value`` may also be a sub-bitarray.  In this case non-overlapping\n   occurrences are counted within ``[start:stop]`` (``step`` must be 1).\n\n   New in version 1.1.0: optional start and stop arguments.\n\n   New in version 2.3.7: optional step argument.\n\n   New in version 2.9: add non-overlapping sub-bitarray count.\n\n\n``decode(code, /)`` -> list\n   Given a prefix code (a dict mapping symbols to bitarrays, or ``decodetree``\n   object), decode content of bitarray and return it as a list of symbols.\n\n\n``encode(code, iterable, /)``\n   Given a prefix code (a dict mapping symbols to bitarrays),\n   iterate over the iterable object with symbols, and extend bitarray\n   with corresponding bitarray for each symbol.\n\n\n``endian()`` -> str\n   Return the bit-endianness of the bitarray as a string (``little`` or ``big``).\n\n\n``extend(iterable, /)``\n   Append all items from ``iterable`` to the end of the bitarray.\n   If the iterable is a string, each ``0`` and ``1`` are appended as\n   bits (ignoring whitespace and underscore).\n\n\n``fill()`` -> int\n   Add zeros to the end of the bitarray, such that the length will be\n   a multiple of 8, and return the number of bits added [0..7].\n\n\n``find(sub_bitarray, start=0, stop=<end>, /, right=False)`` -> int\n   Return lowest (or rightmost when ``right=True``) index where sub_bitarray\n   is found, such that sub_bitarray is contained within ``[start:stop]``.\n   Return -1 when sub_bitarray is not found.\n\n   New in version 2.1.\n\n   New in version 2.9: add optional keyword argument ``right``.\n\n\n``frombytes(bytes, /)``\n   Extend bitarray with raw bytes from a bytes-like object.\n   Each added byte will add eight bits to the bitarray.\n\n   New in version 2.5.0: allow bytes-like argument.\n\n\n``fromfile(f, n=-1, /)``\n   Extend bitarray with up to ``n`` bytes read from file object ``f`` (or any\n   other binary stream what supports a ``.read()`` method, e.g. ``io.BytesIO``).\n   Each read byte will add eight bits to the bitarray.  When ``n`` is omitted or\n   negative, all bytes until EOF are read.  When ``n`` is non-negative but\n   exceeds the data available, ``EOFError`` is raised (but the available data\n   is still read and appended).\n\n\n``index(sub_bitarray, start=0, stop=<end>, /, right=False)`` -> int\n   Return lowest (or rightmost when ``right=True``) index where sub_bitarray\n   is found, such that sub_bitarray is contained within ``[start:stop]``.\n   Raises ``ValueError`` when the sub_bitarray is not present.\n\n   New in version 2.9: add optional keyword argument ``right``.\n\n\n``insert(index, value, /)``\n   Insert ``value`` into bitarray before ``index``.\n\n\n``invert(index=<all bits>, /)``\n   Invert all bits in bitarray (in-place).\n   When the optional ``index`` is given, only invert the single bit at index.\n\n   New in version 1.5.3: optional index argument.\n\n\n``iterdecode(code, /)`` -> iterator\n   Given a prefix code (a dict mapping symbols to bitarrays, or ``decodetree``\n   object), decode content of bitarray and return an iterator over\n   the symbols.\n\n\n``itersearch(sub_bitarray, start=0, stop=<end>, /, right=False)`` -> iterator\n   Return iterator over indices where sub_bitarray is found, such that\n   sub_bitarray is contained within ``[start:stop]``.\n   The indices are iterated in ascending order (from lowest to highest),\n   unless ``right=True``, which will iterate in descending oder (starting with\n   rightmost match).\n\n   New in version 2.9: optional start and stop arguments - add optional keyword argument ``right``.\n\n\n``pack(bytes, /)``\n   Extend bitarray from a bytes-like object, where each byte corresponds\n   to a single bit.  The byte ``b'\\x00'`` maps to bit 0 and all other bytes\n   map to bit 1.\n\n   This method, as well as the ``.unpack()`` method, are meant for efficient\n   transfer of data between bitarray objects to other Python objects (for\n   example NumPy's ndarray object) which have a different memory view.\n\n   New in version 2.5.0: allow bytes-like argument.\n\n\n``pop(index=-1, /)`` -> item\n   Remove and return item at ``index`` (default last).\n   Raises ``IndexError`` if index is out of range.\n\n\n``remove(value, /)``\n   Remove the first occurrence of ``value``.\n   Raises ``ValueError`` if value is not present.\n\n\n``reverse()``\n   Reverse all bits in bitarray (in-place).\n\n\n``search(sub_bitarray, limit=<none>, /)`` -> list\n   Searches for given sub_bitarray in self, and return list of start\n   positions.\n   The optional argument limits the number of search results to the integer\n   specified.  By default, all search results are returned.\n\n\n``setall(value, /)``\n   Set all elements in bitarray to ``value``.\n   Note that ``a.setall(value)`` is equivalent to ``a[:] = value``.\n\n\n``sort(reverse=False)``\n   Sort all bits in bitarray (in-place).\n\n\n``to01()`` -> str\n   Return a string containing '0's and '1's, representing the bits in the\n   bitarray.\n\n\n``tobytes()`` -> bytes\n   Return the bitarray buffer in bytes (pad bits are set to zero).\n\n\n``tofile(f, /)``\n   Write byte representation of bitarray to file object f.\n\n\n``tolist()`` -> list\n   Return bitarray as list of integer items.\n   ``a.tolist()`` is equal to ``list(a)``.\n\n   Note that the list object being created will require 32 or 64 times more\n   memory (depending on the machine architecture) than the bitarray object,\n   which may cause a memory error if the bitarray is very large.\n\n\n``unpack(zero=b'\\x00', one=b'\\x01')`` -> bytes\n   Return bytes containing one character for each bit in the bitarray,\n   using specified mapping.\n\n\nbitarray data descriptors:\n--------------------------\n\nData descriptors were added in version 2.6.\n\n``nbytes`` -> int\n   buffer size in bytes\n\n\n``padbits`` -> int\n   number of pad bits\n\n\n``readonly`` -> bool\n   bool indicating whether buffer is read-only\n\n\nOther objects:\n--------------\n\n``frozenbitarray(initializer=0, /, endian='big', buffer=None)`` -> frozenbitarray\n   Return a ``frozenbitarray`` object.  Initialized the same way a ``bitarray``\n   object is initialized.  A ``frozenbitarray`` is immutable and hashable,\n   and may therefore be used as a dictionary key.\n\n   New in version 1.1.\n\n\n``decodetree(code, /)`` -> decodetree\n   Given a prefix code (a dict mapping symbols to bitarrays),\n   create a binary tree object to be passed to ``.decode()`` or ``.iterdecode()``.\n\n   New in version 1.6.\n\n\nFunctions defined in the `bitarray` module:\n-------------------------------------------\n\n``bits2bytes(n, /)`` -> int\n   Return the number of bytes necessary to store n bits.\n\n\n``get_default_endian()`` -> str\n   Return the default endianness for new bitarray objects being created.\n   Unless ``_set_default_endian('little')`` was called, the default endianness\n   is ``big``.\n\n   New in version 1.3.\n\n\n``test(verbosity=1)`` -> TextTestResult\n   Run self-test, and return unittest.runner.TextTestResult object.\n\n\nFunctions defined in `bitarray.util` module:\n--------------------------------------------\n\nThis sub-module was added in version 1.2.\n\n``zeros(length, /, endian=None)`` -> bitarray\n   Create a bitarray of length, with all values 0, and optional\n   endianness, which may be 'big', 'little'.\n\n\n``ones(length, /, endian=None)`` -> bitarray\n   Create a bitarray of length, with all values 1, and optional\n   endianness, which may be 'big', 'little'.\n\n   New in version 2.9.\n\n\n``urandom(length, /, endian=None)`` -> bitarray\n   Return a bitarray of ``length`` random bits (uses ``os.urandom``).\n\n   New in version 1.7.\n\n\n``pprint(bitarray, /, stream=None, group=8, indent=4, width=80)``\n   Prints the formatted representation of object on ``stream`` (which defaults\n   to ``sys.stdout``).  By default, elements are grouped in bytes (8 elements),\n   and 8 bytes (64 elements) per line.\n   Non-bitarray objects are printed by the standard library\n   function ``pprint.pprint()``.\n\n   New in version 1.8.\n\n\n``make_endian(bitarray, /, endian)`` -> bitarray\n   When the endianness of the given bitarray is different from ``endian``,\n   return a new bitarray, with endianness ``endian`` and the same elements\n   as the original bitarray.\n   Otherwise (endianness is already ``endian``) the original bitarray is returned\n   unchanged.\n\n   New in version 1.3.\n\n   New in version 2.9: deprecated - use ``bitarray()``.\n\n\n``rindex(bitarray, sub_bitarray=1, start=0, stop=<end>, /)`` -> int\n   Return rightmost (highest) index where sub_bitarray (or item - defaults\n   to 1) is found in bitarray (``a``), such that sub_bitarray is contained\n   within ``a[start:stop]``.\n   Raises ``ValueError`` when the sub_bitarray is not present.\n\n   New in version 2.3.0: optional start and stop arguments.\n\n   New in version 2.9: deprecated - use ``.index(..., right=1)``.\n\n\n``strip(bitarray, /, mode='right')`` -> bitarray\n   Return a new bitarray with zeros stripped from left, right or both ends.\n   Allowed values for mode are the strings: ``left``, ``right``, ``both``\n\n\n``count_n(a, n, value=1, /)`` -> int\n   Return lowest index ``i`` for which ``a[:i].count(value) == n``.\n   Raises ``ValueError`` when ``n`` exceeds total count (``a.count(value)``).\n\n   New in version 2.3.6: optional value argument.\n\n\n``parity(a, /)`` -> int\n   Return parity of bitarray ``a``.\n   ``parity(a)`` is equivalent to ``a.count() % 2`` but more efficient.\n\n   New in version 1.9.\n\n\n``count_and(a, b, /)`` -> int\n   Return ``(a & b).count()`` in a memory efficient manner,\n   as no intermediate bitarray object gets created.\n\n\n``count_or(a, b, /)`` -> int\n   Return ``(a | b).count()`` in a memory efficient manner,\n   as no intermediate bitarray object gets created.\n\n\n``count_xor(a, b, /)`` -> int\n   Return ``(a ^ b).count()`` in a memory efficient manner,\n   as no intermediate bitarray object gets created.\n\n   This is also known as the Hamming distance.\n\n\n``any_and(a, b, /)`` -> bool\n   Efficient implementation of ``any(a & b)``.\n\n   New in version 2.7.\n\n\n``subset(a, b, /)`` -> bool\n   Return ``True`` if bitarray ``a`` is a subset of bitarray ``b``.\n   ``subset(a, b)`` is equivalent to ``a | b == b`` (and equally ``a & b == a``) but\n   more efficient as no intermediate bitarray object is created and the buffer\n   iteration is stopped as soon as one mismatch is found.\n\n\n``intervals(bitarray, /)`` -> iterator\n   Compute all uninterrupted intervals of 1s and 0s, and return an\n   iterator over tuples ``(value, start, stop)``.  The intervals are guaranteed\n   to be in order, and their size is always non-zero (``stop - start > 0``).\n\n   New in version 2.7.\n\n\n``ba2hex(bitarray, /)`` -> hexstr\n   Return a string containing the hexadecimal representation of\n   the bitarray (which has to be multiple of 4 in length).\n\n\n``hex2ba(hexstr, /, endian=None)`` -> bitarray\n   Bitarray of hexadecimal representation.  hexstr may contain any number\n   (including odd numbers) of hex digits (upper or lower case).\n\n\n``ba2base(n, bitarray, /)`` -> str\n   Return a string containing the base ``n`` ASCII representation of\n   the bitarray.  Allowed values for ``n`` are 2, 4, 8, 16, 32 and 64.\n   The bitarray has to be multiple of length 1, 2, 3, 4, 5 or 6 respectively.\n   For ``n=32`` the RFC 4648 Base32 alphabet is used, and for ``n=64`` the\n   standard base 64 alphabet is used.\n\n   See also: `Bitarray representations <https://github.com/ilanschnell/bitarray/blob/master/doc/represent.rst>`__\n\n   New in version 1.9.\n\n\n``base2ba(n, asciistr, /, endian=None)`` -> bitarray\n   Bitarray of base ``n`` ASCII representation.\n   Allowed values for ``n`` are 2, 4, 8, 16, 32 and 64.\n   For ``n=32`` the RFC 4648 Base32 alphabet is used, and for ``n=64`` the\n   standard base 64 alphabet is used.\n\n   See also: `Bitarray representations <https://github.com/ilanschnell/bitarray/blob/master/doc/represent.rst>`__\n\n   New in version 1.9.\n\n\n``ba2int(bitarray, /, signed=False)`` -> int\n   Convert the given bitarray to an integer.\n   The bit-endianness of the bitarray is respected.\n   ``signed`` indicates whether two's complement is used to represent the integer.\n\n\n``int2ba(int, /, length=None, endian=None, signed=False)`` -> bitarray\n   Convert the given integer to a bitarray (with given endianness,\n   and no leading (big-endian) / trailing (little-endian) zeros), unless\n   the ``length`` of the bitarray is provided.  An ``OverflowError`` is raised\n   if the integer is not representable with the given number of bits.\n   ``signed`` determines whether two's complement is used to represent the integer,\n   and requires ``length`` to be provided.\n\n\n``serialize(bitarray, /)`` -> bytes\n   Return a serialized representation of the bitarray, which may be passed to\n   ``deserialize()``.  It efficiently represents the bitarray object (including\n   its bit-endianness) and is guaranteed not to change in future releases.\n\n   See also: `Bitarray representations <https://github.com/ilanschnell/bitarray/blob/master/doc/represent.rst>`__\n\n   New in version 1.8.\n\n\n``deserialize(bytes, /)`` -> bitarray\n   Return a bitarray given a bytes-like representation such as returned\n   by ``serialize()``.\n\n   See also: `Bitarray representations <https://github.com/ilanschnell/bitarray/blob/master/doc/represent.rst>`__\n\n   New in version 1.8.\n\n   New in version 2.5.0: allow bytes-like argument.\n\n\n``sc_encode(bitarray, /)`` -> bytes\n   Compress a sparse bitarray and return its binary representation.\n   This representation is useful for efficiently storing sparse bitarrays.\n   Use ``sc_decode()`` for decompressing (decoding).\n\n   See also: `Compression of sparse bitarrays <https://github.com/ilanschnell/bitarray/blob/master/doc/sparse_compression.rst>`__\n\n   New in version 2.7.\n\n\n``sc_decode(stream)`` -> bitarray\n   Decompress binary stream (an integer iterator, or bytes-like object) of a\n   sparse compressed (``sc``) bitarray, and return the decoded  bitarray.\n   This function consumes only one bitarray and leaves the remaining stream\n   untouched.  Use ``sc_encode()`` for compressing (encoding).\n\n   See also: `Compression of sparse bitarrays <https://github.com/ilanschnell/bitarray/blob/master/doc/sparse_compression.rst>`__\n\n   New in version 2.7.\n\n\n``vl_encode(bitarray, /)`` -> bytes\n   Return variable length binary representation of bitarray.\n   This representation is useful for efficiently storing small bitarray\n   in a binary stream.  Use ``vl_decode()`` for decoding.\n\n   See also: `Variable length bitarray format <https://github.com/ilanschnell/bitarray/blob/master/doc/variable_length.rst>`__\n\n   New in version 2.2.\n\n\n``vl_decode(stream, /, endian=None)`` -> bitarray\n   Decode binary stream (an integer iterator, or bytes-like object), and\n   return the decoded bitarray.  This function consumes only one bitarray and\n   leaves the remaining stream untouched.  Use ``vl_encode()`` for encoding.\n\n   See also: `Variable length bitarray format <https://github.com/ilanschnell/bitarray/blob/master/doc/variable_length.rst>`__\n\n   New in version 2.2.\n\n\n``huffman_code(dict, /, endian=None)`` -> dict\n   Given a frequency map, a dictionary mapping symbols to their frequency,\n   calculate the Huffman code, i.e. a dict mapping those symbols to\n   bitarrays (with given endianness).  Note that the symbols are not limited\n   to being strings.  Symbols may may be any hashable object (such as ``None``).\n\n\n``canonical_huffman(dict, /)`` -> tuple\n   Given a frequency map, a dictionary mapping symbols to their frequency,\n   calculate the canonical Huffman code.  Returns a tuple containing:\n\n   0. the canonical Huffman code as a dict mapping symbols to bitarrays\n   1. a list containing the number of symbols of each code length\n   2. a list of symbols in canonical order\n\n   Note: the two lists may be used as input for ``canonical_decode()``.\n\n   See also: `Canonical Huffman Coding <https://github.com/ilanschnell/bitarray/blob/master/doc/canonical.rst>`__\n\n   New in version 2.5.\n\n\n``canonical_decode(bitarray, count, symbol, /)`` -> iterator\n   Decode bitarray using canonical Huffman decoding tables\n   where ``count`` is a sequence containing the number of symbols of each length\n   and ``symbol`` is a sequence of symbols in canonical order.\n\n   See also: `Canonical Huffman Coding <https://github.com/ilanschnell/bitarray/blob/master/doc/canonical.rst>`__\n\n   New in version 2.5.\n\n\n",
    "bugtrack_url": null,
    "license": "PSF",
    "summary": "efficient arrays of booleans -- C extension",
    "version": "2.9.2",
    "project_urls": {
        "Homepage": "https://github.com/ilanschnell/bitarray"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bcced114d6cb2b00f2bdb038cf2fa739a8d9765042692d74fb66b7c91099c444",
                "md5": "e4d4219b8acd3cbc2f1b0715a5a03211",
                "sha256": "917905de565d9576eb20f53c797c15ba88b9f4f19728acabec8d01eee1d3756a"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp310-cp310-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "e4d4219b8acd3cbc2f1b0715a5a03211",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 176818,
            "upload_time": "2024-01-01T21:04:08",
            "upload_time_iso_8601": "2024-01-01T21:04:08.474727Z",
            "url": "https://files.pythonhosted.org/packages/bc/ce/d114d6cb2b00f2bdb038cf2fa739a8d9765042692d74fb66b7c91099c444/bitarray-2.9.2-cp310-cp310-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93f11a2231056444ed39b6498f81cd1a390620458aca2faffed686d2bceec8c9",
                "md5": "17b5ce118c54e8067ad03f3deb8590af",
                "sha256": "b35bfcb08b7693ab4bf9059111a6e9f14e07d57ac93cd967c420db58ab9b71e1"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "17b5ce118c54e8067ad03f3deb8590af",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 128058,
            "upload_time": "2024-01-01T21:04:11",
            "upload_time_iso_8601": "2024-01-01T21:04:11.270687Z",
            "url": "https://files.pythonhosted.org/packages/93/f1/1a2231056444ed39b6498f81cd1a390620458aca2faffed686d2bceec8c9/bitarray-2.9.2-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2c6ce7130b7ece5b871dc9628c1c4c115cb6ee7076ec104b052a9bcd5f66920a",
                "md5": "66e5993fce07a296acd6286fa1bce14e",
                "sha256": "ea1923d2e7880f9e1959e035da661767b5a2e16a45dfd57d6aa831e8b65ee1bf"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "66e5993fce07a296acd6286fa1bce14e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 124494,
            "upload_time": "2024-01-01T21:04:13",
            "upload_time_iso_8601": "2024-01-01T21:04:13.415156Z",
            "url": "https://files.pythonhosted.org/packages/2c/6c/e7130b7ece5b871dc9628c1c4c115cb6ee7076ec104b052a9bcd5f66920a/bitarray-2.9.2-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d6604c7c08cd801f529e006e71992d2c70241501a73d8b02b8927cc1a5544b47",
                "md5": "89ed621161915badebd0a21175df34b1",
                "sha256": "1e0b63a565e8a311cc8348ff1262d5784df0f79d64031d546411afd5dd7ef67d"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "89ed621161915badebd0a21175df34b1",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 288132,
            "upload_time": "2024-01-01T21:04:16",
            "upload_time_iso_8601": "2024-01-01T21:04:16.066802Z",
            "url": "https://files.pythonhosted.org/packages/d6/60/4c7c08cd801f529e006e71992d2c70241501a73d8b02b8927cc1a5544b47/bitarray-2.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0c9a5c7f3f00b6fd54a28e64e24a683a8ea62371e71791fcf472adfd2041583b",
                "md5": "e2fcd4aa328177c6b1977928bad058c8",
                "sha256": "cf0620da2b81946d28c0b16f3e3704d38e9837d85ee4f0652816e2609aaa4fed"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e2fcd4aa328177c6b1977928bad058c8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 303303,
            "upload_time": "2024-01-01T21:04:18",
            "upload_time_iso_8601": "2024-01-01T21:04:18.461306Z",
            "url": "https://files.pythonhosted.org/packages/0c/9a/5c7f3f00b6fd54a28e64e24a683a8ea62371e71791fcf472adfd2041583b/bitarray-2.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ff47c4671b89af1fc1e774bfd8b47af47ee5806f14e72010a97bee5ac92fef01",
                "md5": "e041dde24688d3de7a37f06ea14d7bdd",
                "sha256": "79a9b8b05f2876c7195a2b698c47528e86a73c61ea203394ff8e7a4434bda5c8"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "e041dde24688d3de7a37f06ea14d7bdd",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 305431,
            "upload_time": "2024-01-01T21:04:20",
            "upload_time_iso_8601": "2024-01-01T21:04:20.547285Z",
            "url": "https://files.pythonhosted.org/packages/ff/47/c4671b89af1fc1e774bfd8b47af47ee5806f14e72010a97bee5ac92fef01/bitarray-2.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e437df70f878b8e4dbf95558eea8c7611db8bf14b0064992078c36339c529b84",
                "md5": "ee5f9e1f660578fb5d1d2611b5f9e5ee",
                "sha256": "345c76b349ff145549652436235c5532e5bfe9db690db6f0a6ad301c62b9ef21"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ee5f9e1f660578fb5d1d2611b5f9e5ee",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 288305,
            "upload_time": "2024-01-01T21:04:23",
            "upload_time_iso_8601": "2024-01-01T21:04:23.037372Z",
            "url": "https://files.pythonhosted.org/packages/e4/37/df70f878b8e4dbf95558eea8c7611db8bf14b0064992078c36339c529b84/bitarray-2.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "898d8a4b4c1fd75e9e84bb7aac0d6f97d8251a5f44fa6110ab27c85338f73c0d",
                "md5": "09c53a708f7a8c33b0ec2c3b13f74596",
                "sha256": "4e2936f090bf3f4d1771f44f9077ebccdbc0415d2b598d51a969afcb519df505"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "09c53a708f7a8c33b0ec2c3b13f74596",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 278122,
            "upload_time": "2024-01-01T21:04:24",
            "upload_time_iso_8601": "2024-01-01T21:04:24.460268Z",
            "url": "https://files.pythonhosted.org/packages/89/8d/8a4b4c1fd75e9e84bb7aac0d6f97d8251a5f44fa6110ab27c85338f73c0d/bitarray-2.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "52052d4a978b164dacf748e1d5470552b123d62ab96a88968179b620b8adb28d",
                "md5": "e37e2b231ad8426ffc76055f2837e41e",
                "sha256": "f9346e98fc2abcef90b942973087e2462af6d3e3710e82938078d3493f7fef52"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e37e2b231ad8426ffc76055f2837e41e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 320446,
            "upload_time": "2024-01-01T21:04:26",
            "upload_time_iso_8601": "2024-01-01T21:04:26.725906Z",
            "url": "https://files.pythonhosted.org/packages/52/05/2d4a978b164dacf748e1d5470552b123d62ab96a88968179b620b8adb28d/bitarray-2.9.2-cp310-cp310-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7ef3edce7e35845e75aadd9c8774ef3b2b61a560c921147d73a34e693841f53a",
                "md5": "63f7fe139fe7f1917ec4b3e31de8e58c",
                "sha256": "e6ec283d4741befb86e8c3ea2e9ac1d17416c956d392107e45263e736954b1f7"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp310-cp310-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "63f7fe139fe7f1917ec4b3e31de8e58c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 308271,
            "upload_time": "2024-01-01T21:04:28",
            "upload_time_iso_8601": "2024-01-01T21:04:28.374837Z",
            "url": "https://files.pythonhosted.org/packages/7e/f3/edce7e35845e75aadd9c8774ef3b2b61a560c921147d73a34e693841f53a/bitarray-2.9.2-cp310-cp310-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f63df2c66b0edfeb156b5a95e33bcb61dd151a491db671080fa9be8b45cb1cd9",
                "md5": "9f65bf16593754da1bdcab5db3a3a88c",
                "sha256": "962892646599529917ef26266091e4cb3077c88b93c3833a909d68dcc971c4e3"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "9f65bf16593754da1bdcab5db3a3a88c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 332969,
            "upload_time": "2024-01-01T21:04:29",
            "upload_time_iso_8601": "2024-01-01T21:04:29.897890Z",
            "url": "https://files.pythonhosted.org/packages/f6/3d/f2c66b0edfeb156b5a95e33bcb61dd151a491db671080fa9be8b45cb1cd9/bitarray-2.9.2-cp310-cp310-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5b06ea5da65f846f806b638b11755d0f485566c931c4d49ef0383e43cf1771ee",
                "md5": "ae2f6d93306d436cc642d01477594f2a",
                "sha256": "e8da5355d7d75a52df5b84750989e34e39919ec7e59fafc4c104cc1607ab2d31"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp310-cp310-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "ae2f6d93306d436cc642d01477594f2a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 338350,
            "upload_time": "2024-01-01T21:04:31",
            "upload_time_iso_8601": "2024-01-01T21:04:31.970351Z",
            "url": "https://files.pythonhosted.org/packages/5b/06/ea5da65f846f806b638b11755d0f485566c931c4d49ef0383e43cf1771ee/bitarray-2.9.2-cp310-cp310-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fe4825fb3db98448184a4f6c1715850fd329f9583916eedfef8d4e0a07dafa9f",
                "md5": "f74c0f755938a8a0514c80993f419fc3",
                "sha256": "603e7d640e54ad764d2b4da6b61e126259af84f253a20f512dd10689566e5478"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f74c0f755938a8a0514c80993f419fc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 319179,
            "upload_time": "2024-01-01T21:04:34",
            "upload_time_iso_8601": "2024-01-01T21:04:34.042188Z",
            "url": "https://files.pythonhosted.org/packages/fe/48/25fb3db98448184a4f6c1715850fd329f9583916eedfef8d4e0a07dafa9f/bitarray-2.9.2-cp310-cp310-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e9a2e1a13cb95c24e14a1bf1998ef925a62faea2e6a317b16d945e7c384ed380",
                "md5": "7bde3ee9cd84088fc3408e999225edb8",
                "sha256": "f00079f8e69d75c2a417de7961a77612bb77ef46c09bc74607d86de4740771ef"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "7bde3ee9cd84088fc3408e999225edb8",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 118623,
            "upload_time": "2024-01-01T21:04:36",
            "upload_time_iso_8601": "2024-01-01T21:04:36.150776Z",
            "url": "https://files.pythonhosted.org/packages/e9/a2/e1a13cb95c24e14a1bf1998ef925a62faea2e6a317b16d945e7c384ed380/bitarray-2.9.2-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ee004bd8469ed3f9f9aa1495fc860b8a7481cdd0b38f19082745be06e5358468",
                "md5": "8a8fe6b2874d33cf63901434675982b0",
                "sha256": "1bb33673e7f7190a65f0a940c1ef63266abdb391f4a3e544a47542d40a81f536"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8a8fe6b2874d33cf63901434675982b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": null,
            "size": 126022,
            "upload_time": "2024-01-01T21:04:37",
            "upload_time_iso_8601": "2024-01-01T21:04:37.834284Z",
            "url": "https://files.pythonhosted.org/packages/ee/00/4bd8469ed3f9f9aa1495fc860b8a7481cdd0b38f19082745be06e5358468/bitarray-2.9.2-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "3286a02960105c0a40e7e4cbc74933f070ab476312d20aa25f6959f4abe5095b",
                "md5": "e5784f5ed36bb12e0eb9581a39f693a3",
                "sha256": "fe71fd4b76380c2772f96f1e53a524da7063645d647a4fcd3b651bdd80ca0f2e"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp311-cp311-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "e5784f5ed36bb12e0eb9581a39f693a3",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 177175,
            "upload_time": "2024-01-01T21:04:39",
            "upload_time_iso_8601": "2024-01-01T21:04:39.194182Z",
            "url": "https://files.pythonhosted.org/packages/32/86/a02960105c0a40e7e4cbc74933f070ab476312d20aa25f6959f4abe5095b/bitarray-2.9.2-cp311-cp311-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8dfdce16db75d5470f9676089428500ef0d473f4e2ff1dcbcf1f856bcd351ea2",
                "md5": "928f14a2d2a73e752c75c8b5f0f6b890",
                "sha256": "d527172919cdea1e13994a66d9708a80c3d33dedcf2f0548e4925e600fef3a3a"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "928f14a2d2a73e752c75c8b5f0f6b890",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 128273,
            "upload_time": "2024-01-01T21:04:41",
            "upload_time_iso_8601": "2024-01-01T21:04:41.230619Z",
            "url": "https://files.pythonhosted.org/packages/8d/fd/ce16db75d5470f9676089428500ef0d473f4e2ff1dcbcf1f856bcd351ea2/bitarray-2.9.2-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0660c1a419f8abd0c9d2641e3e570fc63ad3a87a63ef88a362900e3254f780bc",
                "md5": "cfaadbf8e2ea7a7c966dfe5a2ada0a13",
                "sha256": "052c5073bdcaa9dd10628d99d37a2f33ec09364b86dd1f6281e2d9f8d3db3060"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "cfaadbf8e2ea7a7c966dfe5a2ada0a13",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 124642,
            "upload_time": "2024-01-01T21:04:43",
            "upload_time_iso_8601": "2024-01-01T21:04:43.264223Z",
            "url": "https://files.pythonhosted.org/packages/06/60/c1a419f8abd0c9d2641e3e570fc63ad3a87a63ef88a362900e3254f780bc/bitarray-2.9.2-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9eafbba89e6f9499fb9dba04b701c8106a1dcc94b5913f35ed20f089da8bea99",
                "md5": "c9423ed5111da71368d4aa4b0ea00595",
                "sha256": "e064caa55a6ed493aca1eda06f8b3f689778bc780a75e6ad7724642ba5dc62f7"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "c9423ed5111da71368d4aa4b0ea00595",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 296283,
            "upload_time": "2024-01-01T21:04:45",
            "upload_time_iso_8601": "2024-01-01T21:04:45.407235Z",
            "url": "https://files.pythonhosted.org/packages/9e/af/bba89e6f9499fb9dba04b701c8106a1dcc94b5913f35ed20f089da8bea99/bitarray-2.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8f4419e91ffc42a2ded4f1ee73f7923186cf1606cab1119b1d5df24c9cea763e",
                "md5": "e477103b3898c275aa8c75825349174b",
                "sha256": "508069a04f658210fdeee85a7a0ca84db4bcc110cbb1d21f692caa13210f24a7"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e477103b3898c275aa8c75825349174b",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 311309,
            "upload_time": "2024-01-01T21:04:47",
            "upload_time_iso_8601": "2024-01-01T21:04:47.597402Z",
            "url": "https://files.pythonhosted.org/packages/8f/44/19e91ffc42a2ded4f1ee73f7923186cf1606cab1119b1d5df24c9cea763e/bitarray-2.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9f76eedaa1fcb60af30536af70f6659e3a86dcfdce3e413b188f7864513e4923",
                "md5": "bf1031eb182b9ab5d0fa52106f38b676",
                "sha256": "4da73ebd537d75fa7bccfc2228fcaedea0803f21dd9d0bf0d3b67fef3c4af294"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "bf1031eb182b9ab5d0fa52106f38b676",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 314220,
            "upload_time": "2024-01-01T21:04:50",
            "upload_time_iso_8601": "2024-01-01T21:04:50.056166Z",
            "url": "https://files.pythonhosted.org/packages/9f/76/eedaa1fcb60af30536af70f6659e3a86dcfdce3e413b188f7864513e4923/bitarray-2.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "21fa9fb7266b28ce1c8778aaea650c75855640ea1ada91a80c47c90376994a59",
                "md5": "6f5ae78e6771bfe7341e6744f4e93690",
                "sha256": "5cb378eaa65cd43098f11ff5d27e48ee3b956d2c00d2d6b5bfc2a09fe183be47"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6f5ae78e6771bfe7341e6744f4e93690",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 296519,
            "upload_time": "2024-01-01T21:04:51",
            "upload_time_iso_8601": "2024-01-01T21:04:51.854410Z",
            "url": "https://files.pythonhosted.org/packages/21/fa/9fb7266b28ce1c8778aaea650c75855640ea1ada91a80c47c90376994a59/bitarray-2.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c4eec9a92c123f9b0438498d0a8f9470439a43bdafbf042cbdceab7968e5bb1c",
                "md5": "ef16e82bccdbd06a46640d9aee1f734c",
                "sha256": "d14c790b91f6cbcd9b718f88ed737c78939980c69ac8c7f03dd7e60040c12951"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "ef16e82bccdbd06a46640d9aee1f734c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 286784,
            "upload_time": "2024-01-01T21:04:53",
            "upload_time_iso_8601": "2024-01-01T21:04:53.707194Z",
            "url": "https://files.pythonhosted.org/packages/c4/ee/c9a92c123f9b0438498d0a8f9470439a43bdafbf042cbdceab7968e5bb1c/bitarray-2.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "817f0d9c16a7e321f5cb1d6c634acf4f8620513634776ceeee6f8f732b992fae",
                "md5": "3c26230ab23b3486051ae32e821cf984",
                "sha256": "7eea9318293bc0ea6447e9ebfba600a62f3428bea7e9c6d42170ae4f481dbab3"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3c26230ab23b3486051ae32e821cf984",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 328319,
            "upload_time": "2024-01-01T21:04:55",
            "upload_time_iso_8601": "2024-01-01T21:04:55.629751Z",
            "url": "https://files.pythonhosted.org/packages/81/7f/0d9c16a7e321f5cb1d6c634acf4f8620513634776ceeee6f8f732b992fae/bitarray-2.9.2-cp311-cp311-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e980730518cf071366633dd027e14e3fba91dc91dd8b4e60d6ae249cde3f53f",
                "md5": "5eccb1104b4dd9ac86134a51987a5e1a",
                "sha256": "b76ffec27c7450b8a334f967366a9ebadaea66ee43f5b530c12861b1a991f503"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp311-cp311-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "5eccb1104b4dd9ac86134a51987a5e1a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 315614,
            "upload_time": "2024-01-01T21:04:57",
            "upload_time_iso_8601": "2024-01-01T21:04:57.202175Z",
            "url": "https://files.pythonhosted.org/packages/2e/98/0730518cf071366633dd027e14e3fba91dc91dd8b4e60d6ae249cde3f53f/bitarray-2.9.2-cp311-cp311-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4cb38f198444cd2312d520e0372f933932fff68b5900eb2dbab91725924aa7a1",
                "md5": "ff1a502fb5e06ce14392243f39918686",
                "sha256": "76b76a07d4ee611405045c6950a1e24c4362b6b44808d4ad6eea75e0dbc59af4"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "ff1a502fb5e06ce14392243f39918686",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 340143,
            "upload_time": "2024-01-01T21:04:58",
            "upload_time_iso_8601": "2024-01-01T21:04:58.761632Z",
            "url": "https://files.pythonhosted.org/packages/4c/b3/8f198444cd2312d520e0372f933932fff68b5900eb2dbab91725924aa7a1/bitarray-2.9.2-cp311-cp311-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b91a78841fa855ea2dc13d8d61f231bd3a619732738d7d840b4b35d9d8f93e6e",
                "md5": "a4a111b68ea0df3e2cbcac2756c20768",
                "sha256": "c7d16beeaaab15b075990cd26963d6b5b22e8c5becd131781514a00b8bdd04bd"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp311-cp311-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "a4a111b68ea0df3e2cbcac2756c20768",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 345958,
            "upload_time": "2024-01-01T21:05:00",
            "upload_time_iso_8601": "2024-01-01T21:05:00.720255Z",
            "url": "https://files.pythonhosted.org/packages/b9/1a/78841fa855ea2dc13d8d61f231bd3a619732738d7d840b4b35d9d8f93e6e/bitarray-2.9.2-cp311-cp311-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b79faac87cd45cc4d7b7e50dde590327bde525601088e710c8ba00e8743ddb2b",
                "md5": "e45d9fd485fbaf34c1ebba6da0f34ecf",
                "sha256": "60df43e868a615c7e15117a1e1c2e5e11f48f6457280eba6ddf8fbefbec7da99"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e45d9fd485fbaf34c1ebba6da0f34ecf",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 327122,
            "upload_time": "2024-01-01T21:05:03",
            "upload_time_iso_8601": "2024-01-01T21:05:03.448616Z",
            "url": "https://files.pythonhosted.org/packages/b7/9f/aac87cd45cc4d7b7e50dde590327bde525601088e710c8ba00e8743ddb2b/bitarray-2.9.2-cp311-cp311-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "783e5df523037f80cf95f99d0155ec921298f4fa2b1f7be10cb0c4daffb632da",
                "md5": "6f7209a6b7124893a296ec77b22df3b0",
                "sha256": "e788608ed7767b7b3bbde6d49058bccdf94df0de9ca75d13aa99020cc7e68095"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "6f7209a6b7124893a296ec77b22df3b0",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 118627,
            "upload_time": "2024-01-01T21:05:07",
            "upload_time_iso_8601": "2024-01-01T21:05:07.243187Z",
            "url": "https://files.pythonhosted.org/packages/78/3e/5df523037f80cf95f99d0155ec921298f4fa2b1f7be10cb0c4daffb632da/bitarray-2.9.2-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9c0eaf070131ed7a4fd15cadc84e018d3c6d3b58070513934462b48a5ff9eb1e",
                "md5": "57c6e037cbc6298f72dd9aed3cdfffe8",
                "sha256": "a23397da092ef0a8cfe729571da64c2fc30ac18243caa82ac7c4f965087506ff"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "57c6e037cbc6298f72dd9aed3cdfffe8",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": null,
            "size": 126013,
            "upload_time": "2024-01-01T21:05:08",
            "upload_time_iso_8601": "2024-01-01T21:05:08.714808Z",
            "url": "https://files.pythonhosted.org/packages/9c/0e/af070131ed7a4fd15cadc84e018d3c6d3b58070513934462b48a5ff9eb1e/bitarray-2.9.2-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef7df489f2136cf5ea1af201be12d55bfc57b45731c4b7e3cc6e001efe62effb",
                "md5": "77aa4b23fdbdce01b44a80040d2411ce",
                "sha256": "90e3a281ffe3897991091b7c46fca38c2675bfd4399ffe79dfeded6c52715436"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp312-cp312-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "77aa4b23fdbdce01b44a80040d2411ce",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 176636,
            "upload_time": "2024-01-01T21:05:10",
            "upload_time_iso_8601": "2024-01-01T21:05:10.660129Z",
            "url": "https://files.pythonhosted.org/packages/ef/7d/f489f2136cf5ea1af201be12d55bfc57b45731c4b7e3cc6e001efe62effb/bitarray-2.9.2-cp312-cp312-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b8b63e64b19e45b52837e0c4ec1c220bf24dd70dcbcd27e073e07837973f8c16",
                "md5": "732a26f276b1fc138f19da32d3e5d1d4",
                "sha256": "bed637b674db5e6c8a97a4a321e3e4d73e72d50b5c6b29950008a93069cc64cd"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "732a26f276b1fc138f19da32d3e5d1d4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 127916,
            "upload_time": "2024-01-01T21:05:13",
            "upload_time_iso_8601": "2024-01-01T21:05:13.049003Z",
            "url": "https://files.pythonhosted.org/packages/b8/b6/3e64b19e45b52837e0c4ec1c220bf24dd70dcbcd27e073e07837973f8c16/bitarray-2.9.2-cp312-cp312-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23c712b1e5cdd8678a6a47610a013fafdbe80d62226d49b73185619bd7361c53",
                "md5": "556dbcb3b1a0bd4055084bdc9ce17bef",
                "sha256": "e49066d251dbbe4e6e3a5c3937d85b589e40e2669ad0eef41a00f82ec17d844b"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "556dbcb3b1a0bd4055084bdc9ce17bef",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 124475,
            "upload_time": "2024-01-01T21:05:14",
            "upload_time_iso_8601": "2024-01-01T21:05:14.618028Z",
            "url": "https://files.pythonhosted.org/packages/23/c7/12b1e5cdd8678a6a47610a013fafdbe80d62226d49b73185619bd7361c53/bitarray-2.9.2-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "77e102dc3f03348808a77b26556a6c299f68dbbf0c4a27f340a69d574d2d2432",
                "md5": "23b0df6c0522254fe46b3e5b7c83725f",
                "sha256": "3c4344e96642e2211fb3a50558feff682c31563a4c64529a931769d40832ca79"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "23b0df6c0522254fe46b3e5b7c83725f",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 299121,
            "upload_time": "2024-01-01T21:05:16",
            "upload_time_iso_8601": "2024-01-01T21:05:16.323469Z",
            "url": "https://files.pythonhosted.org/packages/77/e1/02dc3f03348808a77b26556a6c299f68dbbf0c4a27f340a69d574d2d2432/bitarray-2.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "eaf19cdb006c352b47b26532e7ee7798bd2dacf42774eb75e4a353a38a3ff2b3",
                "md5": "e824d9b8ccc93fc7992a90d0f4251e8d",
                "sha256": "aeb60962ec4813c539a59fbd4f383509c7222b62c3fb1faa76b54943a613e33a"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "e824d9b8ccc93fc7992a90d0f4251e8d",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 313486,
            "upload_time": "2024-01-01T21:05:18",
            "upload_time_iso_8601": "2024-01-01T21:05:18.521382Z",
            "url": "https://files.pythonhosted.org/packages/ea/f1/9cdb006c352b47b26532e7ee7798bd2dacf42774eb75e4a353a38a3ff2b3/bitarray-2.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bb7998bdfea0f390d313fa04546578a3eee3c3a6dbba94973246438ea8c880aa",
                "md5": "cbae37635a262999557f502d042b1376",
                "sha256": "ed0f7982f10581bb16553719e5e8f933e003f5b22f7d25a68bdb30fac630a6ff"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "cbae37635a262999557f502d042b1376",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 317527,
            "upload_time": "2024-01-01T21:05:20",
            "upload_time_iso_8601": "2024-01-01T21:05:20.728128Z",
            "url": "https://files.pythonhosted.org/packages/bb/79/98bdfea0f390d313fa04546578a3eee3c3a6dbba94973246438ea8c880aa/bitarray-2.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "580221a2038ee856649f03738828e3bc6c4cd9bfd31125a250c6e30d378067ff",
                "md5": "7b65a57605105f1cb925673e0d4ee303",
                "sha256": "c71d1cabdeee0cdda4669168618f0e46b7dace207b29da7b63aaa1adc2b54081"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7b65a57605105f1cb925673e0d4ee303",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 299885,
            "upload_time": "2024-01-01T21:05:22",
            "upload_time_iso_8601": "2024-01-01T21:05:22.553023Z",
            "url": "https://files.pythonhosted.org/packages/58/02/21a2038ee856649f03738828e3bc6c4cd9bfd31125a250c6e30d378067ff/bitarray-2.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "499782c350256a22689fb50ed86af1a3a5509410332cfe55d644fd7ff5e46dbf",
                "md5": "5c6ddd87129b3add89a063fa29da55f2",
                "sha256": "b0ef2d0a6f1502d38d911d25609b44c6cc27bee0a4363dd295df78b075041b60"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "5c6ddd87129b3add89a063fa29da55f2",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 289796,
            "upload_time": "2024-01-01T21:05:24",
            "upload_time_iso_8601": "2024-01-01T21:05:24.080732Z",
            "url": "https://files.pythonhosted.org/packages/49/97/82c350256a22689fb50ed86af1a3a5509410332cfe55d644fd7ff5e46dbf/bitarray-2.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0969ca799419b576d015331b19b42c70086b1208ba363f744c8bb7dc31a0bb6a",
                "md5": "bad50b1156f317ecb7fbe32522ddcbcd",
                "sha256": "6f71d92f533770fb027388b35b6e11988ab89242b883f48a6fe7202d238c61f8"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "bad50b1156f317ecb7fbe32522ddcbcd",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 334912,
            "upload_time": "2024-01-01T21:05:25",
            "upload_time_iso_8601": "2024-01-01T21:05:25.761211Z",
            "url": "https://files.pythonhosted.org/packages/09/69/ca799419b576d015331b19b42c70086b1208ba363f744c8bb7dc31a0bb6a/bitarray-2.9.2-cp312-cp312-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb8adad9d48c72367f76b117957e3d718de07254667f33838d061856b238b576",
                "md5": "06a78f1a265dcf4240e30a5743418de4",
                "sha256": "ba0734aa300757c924f3faf8148e1b8c247176a0ac8e16aefdf9c1eb19e868f7"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp312-cp312-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "06a78f1a265dcf4240e30a5743418de4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 322790,
            "upload_time": "2024-01-01T21:05:27",
            "upload_time_iso_8601": "2024-01-01T21:05:27.425692Z",
            "url": "https://files.pythonhosted.org/packages/fb/8a/dad9d48c72367f76b117957e3d718de07254667f33838d061856b238b576/bitarray-2.9.2-cp312-cp312-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7f1a4f723153e6b4c56a90275a1d6ad04860bd72d9966196eb331cd18b50a12",
                "md5": "b81f9207a7ff020aa0be01e61c213c4c",
                "sha256": "d91406f413ccbf4af6ab5ae7bc78f772a95609f9ddd14123db36ef8c37116d95"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "b81f9207a7ff020aa0be01e61c213c4c",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 346212,
            "upload_time": "2024-01-01T21:05:29",
            "upload_time_iso_8601": "2024-01-01T21:05:29.095273Z",
            "url": "https://files.pythonhosted.org/packages/b7/f1/a4f723153e6b4c56a90275a1d6ad04860bd72d9966196eb331cd18b50a12/bitarray-2.9.2-cp312-cp312-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7f4f55301544e90df8a7b798959bffa94e5694b29c964ed9e9e2a52d6cfac9c7",
                "md5": "788de8ff3e1cdc220f2d180b59f223c4",
                "sha256": "87abb7f80c0a042f3fe8e5264da1a2756267450bb602110d5327b8eaff7682e7"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp312-cp312-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "788de8ff3e1cdc220f2d180b59f223c4",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 353044,
            "upload_time": "2024-01-01T21:05:30",
            "upload_time_iso_8601": "2024-01-01T21:05:30.595463Z",
            "url": "https://files.pythonhosted.org/packages/7f/4f/55301544e90df8a7b798959bffa94e5694b29c964ed9e9e2a52d6cfac9c7/bitarray-2.9.2-cp312-cp312-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "168b363fdc21aff37ac99dba4ed41c0d535c37b416cd002351a9848173c738f1",
                "md5": "f9cb2191f25d9d3dde44c48ff81ffdc5",
                "sha256": "4b558ce85579b51a2e38703877d1e93b7728a7af664dd45a34e833534f0b755d"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f9cb2191f25d9d3dde44c48ff81ffdc5",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 334380,
            "upload_time": "2024-01-01T21:05:32",
            "upload_time_iso_8601": "2024-01-01T21:05:32.379805Z",
            "url": "https://files.pythonhosted.org/packages/16/8b/363fdc21aff37ac99dba4ed41c0d535c37b416cd002351a9848173c738f1/bitarray-2.9.2-cp312-cp312-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6658f57a6420b363d2f0517d79b9af9fd608360ef174eb5d1d82cc5a26dbdbde",
                "md5": "d944574e67e6f5f3892338dd84e547c1",
                "sha256": "dac2399ee2889fbdd3472bfc2ede74c34cceb1ccf29a339964281a16eb1d3188"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "d944574e67e6f5f3892338dd84e547c1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 118738,
            "upload_time": "2024-01-01T21:05:34",
            "upload_time_iso_8601": "2024-01-01T21:05:34.889281Z",
            "url": "https://files.pythonhosted.org/packages/66/58/f57a6420b363d2f0517d79b9af9fd608360ef174eb5d1d82cc5a26dbdbde/bitarray-2.9.2-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "93a9b9462e2a3b4ee020c6caa1dccece324d6b0c7643b9f0a43d9ac8cd15c9d9",
                "md5": "b164a9f52ed9b73492adac22fa8efcc0",
                "sha256": "48a30d718d1a6dfc22a49547450107abe8f4afdf2abdcbe76eb9ed88edc49498"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b164a9f52ed9b73492adac22fa8efcc0",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": null,
            "size": 126202,
            "upload_time": "2024-01-01T21:05:36",
            "upload_time_iso_8601": "2024-01-01T21:05:36.489126Z",
            "url": "https://files.pythonhosted.org/packages/93/a9/b9462e2a3b4ee020c6caa1dccece324d6b0c7643b9f0a43d9ac8cd15c9d9/bitarray-2.9.2-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f2d9f7ac3a52ff84819627633182c6a99b78f3e465246a30a9c544c6f551f75b",
                "md5": "8bebd155b2a473e0418bf3d52d9c13c5",
                "sha256": "2c6be1b651fad8f3adb7a5aa12c65b612cd9b89530969af941844ae680f7d981"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp36-cp36m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8bebd155b2a473e0418bf3d52d9c13c5",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 127989,
            "upload_time": "2024-01-01T21:05:37",
            "upload_time_iso_8601": "2024-01-01T21:05:37.909597Z",
            "url": "https://files.pythonhosted.org/packages/f2/d9/f7ac3a52ff84819627633182c6a99b78f3e465246a30a9c544c6f551f75b/bitarray-2.9.2-cp36-cp36m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1376e3efd0f657ac93f4b8cfd6d598602706dd3667ed2186ebac2175c2d0bced",
                "md5": "8bf0edfb7cb964a1f75722d0e8495a2f",
                "sha256": "c5b399ae6ab975257ec359f03b48fc00b1c1cd109471e41903548469b8feae5c"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8bf0edfb7cb964a1f75722d0e8495a2f",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 279828,
            "upload_time": "2024-01-01T21:05:40",
            "upload_time_iso_8601": "2024-01-01T21:05:40.091534Z",
            "url": "https://files.pythonhosted.org/packages/13/76/e3efd0f657ac93f4b8cfd6d598602706dd3667ed2186ebac2175c2d0bced/bitarray-2.9.2-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2ede6ac3d7fad61e73bc6c99270761b1dc92adaee743972952b262c6072f723",
                "md5": "1e1a6858f60dfcf0c27d8376e121c51c",
                "sha256": "0b3543c8a1cb286ad105f11c25d8d0f712f41c5c55f90be39f0e5a1376c7d0b0"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "1e1a6858f60dfcf0c27d8376e121c51c",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 294813,
            "upload_time": "2024-01-01T21:05:42",
            "upload_time_iso_8601": "2024-01-01T21:05:42.153578Z",
            "url": "https://files.pythonhosted.org/packages/e2/ed/e6ac3d7fad61e73bc6c99270761b1dc92adaee743972952b262c6072f723/bitarray-2.9.2-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bd77a830358c6cd6d467355d239dfa1e1b6cd4965962b2d0b0755b3ed2c1b980",
                "md5": "5a1fe2e909428fbc5fb12099e8b1f2e8",
                "sha256": "03adaacb79e2fb8f483ab3a67665eec53bb3fd0cd5dbd7358741aef124688db3"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "5a1fe2e909428fbc5fb12099e8b1f2e8",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 296298,
            "upload_time": "2024-01-01T21:05:43",
            "upload_time_iso_8601": "2024-01-01T21:05:43.883407Z",
            "url": "https://files.pythonhosted.org/packages/bd/77/a830358c6cd6d467355d239dfa1e1b6cd4965962b2d0b0755b3ed2c1b980/bitarray-2.9.2-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef989005e031938d3834ef8aed3200a503c95b819e9d7e262beb7c6f78ca4bc7",
                "md5": "fe031855043f2a4195c81cbcf6fcf89b",
                "sha256": "9ae5b0657380d2581e13e46864d147a52c1e2bbac9f59b59c576e42fa7d10cf0"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fe031855043f2a4195c81cbcf6fcf89b",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 280126,
            "upload_time": "2024-01-01T21:05:45",
            "upload_time_iso_8601": "2024-01-01T21:05:45.708787Z",
            "url": "https://files.pythonhosted.org/packages/ef/98/9005e031938d3834ef8aed3200a503c95b819e9d7e262beb7c6f78ca4bc7/bitarray-2.9.2-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "70b7729f23344973ad89a5ba8aafd199224244b138a9de7cd6d0e889c81c8ac0",
                "md5": "02d66bb63906d604f7c28da8c17a31d5",
                "sha256": "7c1f4bf6ea8eb9d7f30808c2e9894237a96650adfecbf5f3643862dc5982f89e"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "02d66bb63906d604f7c28da8c17a31d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 270148,
            "upload_time": "2024-01-01T21:05:47",
            "upload_time_iso_8601": "2024-01-01T21:05:47.314330Z",
            "url": "https://files.pythonhosted.org/packages/70/b7/729f23344973ad89a5ba8aafd199224244b138a9de7cd6d0e889c81c8ac0/bitarray-2.9.2-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5142e0d5f82cc1b3c40411e88e70b45b966080635e0251a9fafdcfe9fb2a7e25",
                "md5": "2ec6adffcaabbf9ca84535a045f03a3a",
                "sha256": "a8873089be2aa15494c0f81af1209f6e1237d762c5065bc4766c1b84321e1b50"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2ec6adffcaabbf9ca84535a045f03a3a",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 303098,
            "upload_time": "2024-01-01T21:05:49",
            "upload_time_iso_8601": "2024-01-01T21:05:49.850731Z",
            "url": "https://files.pythonhosted.org/packages/51/42/e0d5f82cc1b3c40411e88e70b45b966080635e0251a9fafdcfe9fb2a7e25/bitarray-2.9.2-cp36-cp36m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f90387931f62a309902ffb64d349b8bafc615536b5b04869d08f848bec7ba1d0",
                "md5": "acddcb8c4f2031d7c4093bdd3b0341a8",
                "sha256": "677e67f50e2559efc677a4366707070933ad5418b8347a603a49a070890b19bc"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp36-cp36m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "acddcb8c4f2031d7c4093bdd3b0341a8",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 291966,
            "upload_time": "2024-01-01T21:05:52",
            "upload_time_iso_8601": "2024-01-01T21:05:52.122126Z",
            "url": "https://files.pythonhosted.org/packages/f9/03/87931f62a309902ffb64d349b8bafc615536b5b04869d08f848bec7ba1d0/bitarray-2.9.2-cp36-cp36m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7e383802314c5f1a0f85cdf97f138e5ff057499287c7752a2be3a24faf19f72f",
                "md5": "6ea480adb23667b5219e66ba7ab7904e",
                "sha256": "a620d8ce4ea2f1c73c6b6b1399e14cb68c6915e2be3fad5808c2998ed55b4acf"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp36-cp36m-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "6ea480adb23667b5219e66ba7ab7904e",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 314656,
            "upload_time": "2024-01-01T21:05:54",
            "upload_time_iso_8601": "2024-01-01T21:05:54.406803Z",
            "url": "https://files.pythonhosted.org/packages/7e/38/3802314c5f1a0f85cdf97f138e5ff057499287c7752a2be3a24faf19f72f/bitarray-2.9.2-cp36-cp36m-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04fbe48521863cc19bc0ca868240da2432677fb97c679121fae2357095f7a531",
                "md5": "42fc0bb10b2cd5789555f10f0243aa73",
                "sha256": "64115ccabbdbe279c24c367b629c6b1d3da9ed36c7420129e27c338a3971bfee"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp36-cp36m-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "42fc0bb10b2cd5789555f10f0243aa73",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 320770,
            "upload_time": "2024-01-01T21:05:55",
            "upload_time_iso_8601": "2024-01-01T21:05:55.972208Z",
            "url": "https://files.pythonhosted.org/packages/04/fb/e48521863cc19bc0ca868240da2432677fb97c679121fae2357095f7a531/bitarray-2.9.2-cp36-cp36m-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7a4ffcbe8aae48cf55e0380ca80221eb1cf4916ed4defb1f5ab270f7c223f514",
                "md5": "b8a137d629dbb1678be095778d60a3fe",
                "sha256": "5d6fb422772e75385b76ad1c52f45a68bd4efafd8be8d0061c11877be74c4d43"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "b8a137d629dbb1678be095778d60a3fe",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 300889,
            "upload_time": "2024-01-01T21:05:57",
            "upload_time_iso_8601": "2024-01-01T21:05:57.586597Z",
            "url": "https://files.pythonhosted.org/packages/7a/4f/fcbe8aae48cf55e0380ca80221eb1cf4916ed4defb1f5ab270f7c223f514/bitarray-2.9.2-cp36-cp36m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "116988307fa3b641912e997f434a959905c41e752632e86bd02bca136d352035",
                "md5": "84bd074372595042e3b05380fbd0fab8",
                "sha256": "852e202875dd6dfd6139ce7ec4e98dac2b17d8d25934dc99900831e81c3adaef"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp36-cp36m-win32.whl",
            "has_sig": false,
            "md5_digest": "84bd074372595042e3b05380fbd0fab8",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 122935,
            "upload_time": "2024-01-01T21:05:59",
            "upload_time_iso_8601": "2024-01-01T21:05:59.304092Z",
            "url": "https://files.pythonhosted.org/packages/11/69/88307fa3b641912e997f434a959905c41e752632e86bd02bca136d352035/bitarray-2.9.2-cp36-cp36m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aafcb2b5a77d9a7282ccf74ff79bfbf1a53731a7146624111591b8a99285a434",
                "md5": "4a484c2c177d91a2563da528395830b5",
                "sha256": "7dfefdcb0dc6a3ba9936063cec65a74595571b375beabe18742b3d91d087eefd"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp36-cp36m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "4a484c2c177d91a2563da528395830b5",
            "packagetype": "bdist_wheel",
            "python_version": "cp36",
            "requires_python": null,
            "size": 132132,
            "upload_time": "2024-01-01T21:06:01",
            "upload_time_iso_8601": "2024-01-01T21:06:01.619917Z",
            "url": "https://files.pythonhosted.org/packages/aa/fc/b2b5a77d9a7282ccf74ff79bfbf1a53731a7146624111591b8a99285a434/bitarray-2.9.2-cp36-cp36m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2d7f02fe43b2888389d4bff098169672899e056e34ff94997daaf4c97ff3960d",
                "md5": "fcb3a0f638d3f429f587076e8d59978b",
                "sha256": "b306c4cf66912511422060f7f5e1149c8bdb404f8e00e600561b0749fdd45659"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fcb3a0f638d3f429f587076e8d59978b",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 128082,
            "upload_time": "2024-01-01T21:06:03",
            "upload_time_iso_8601": "2024-01-01T21:06:03.415092Z",
            "url": "https://files.pythonhosted.org/packages/2d/7f/02fe43b2888389d4bff098169672899e056e34ff94997daaf4c97ff3960d/bitarray-2.9.2-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d4ac16d41b0f9ca9b047b7f5aec2b3fa92f894be209ad003840cec604210b0fb",
                "md5": "8dcbaeed975b15a725cd805843da01d5",
                "sha256": "a09c4f81635408e3387348f415521d4b94198c562c23330f560596a6aaa26eaf"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "8dcbaeed975b15a725cd805843da01d5",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 279941,
            "upload_time": "2024-01-01T21:06:05",
            "upload_time_iso_8601": "2024-01-01T21:06:05.185051Z",
            "url": "https://files.pythonhosted.org/packages/d4/ac/16d41b0f9ca9b047b7f5aec2b3fa92f894be209ad003840cec604210b0fb/bitarray-2.9.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9e83855b4d67956a67e881f92a31dd11f7ec2a85e93ef949a8c45a0f7eb02ab8",
                "md5": "8a7a1b3229bfd38a066aca2d1afc3b80",
                "sha256": "5361413fd2ecfdf44dc8f065177dc6aba97fa80a91b815586cb388763acf7f8d"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "8a7a1b3229bfd38a066aca2d1afc3b80",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 295307,
            "upload_time": "2024-01-01T21:06:07",
            "upload_time_iso_8601": "2024-01-01T21:06:07.023795Z",
            "url": "https://files.pythonhosted.org/packages/9e/83/855b4d67956a67e881f92a31dd11f7ec2a85e93ef949a8c45a0f7eb02ab8/bitarray-2.9.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "da443058cf9e3023cfbee1f7b28901d5223c55eee2fdc717836fe93478ff1730",
                "md5": "f6eaed682d5b1e1318bdbf03a8f7c7ea",
                "sha256": "e8a9475d415ef1eaae7942df6f780fa4dcd48fce32825eda591a17abba869299"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "f6eaed682d5b1e1318bdbf03a8f7c7ea",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 296533,
            "upload_time": "2024-01-01T21:06:08",
            "upload_time_iso_8601": "2024-01-01T21:06:08.924418Z",
            "url": "https://files.pythonhosted.org/packages/da/44/3058cf9e3023cfbee1f7b28901d5223c55eee2fdc717836fe93478ff1730/bitarray-2.9.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e2339992065d114d0bde076f04b0bb6ff5220bfcb5aaec0f487f4fde2ad55639",
                "md5": "e845fe4c845bba13db109e9707ab8dc3",
                "sha256": "c9b87baa7bfff9a5878fcc1bffe49ecde6e647a72a64b39a69cd8a2992a43a34"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "e845fe4c845bba13db109e9707ab8dc3",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 280244,
            "upload_time": "2024-01-01T21:06:11",
            "upload_time_iso_8601": "2024-01-01T21:06:11.386340Z",
            "url": "https://files.pythonhosted.org/packages/e2/33/9992065d114d0bde076f04b0bb6ff5220bfcb5aaec0f487f4fde2ad55639/bitarray-2.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ea7adafcd813c54730ee42ca925a581a3483ce96223bc52061ad834d814f4448",
                "md5": "d5931c7a585a5976553199c8b736b94a",
                "sha256": "bb6b86cfdfc503e92cb71c68766a24565359136961642504a7cc9faf936d9c88"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d5931c7a585a5976553199c8b736b94a",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 270346,
            "upload_time": "2024-01-01T21:06:13",
            "upload_time_iso_8601": "2024-01-01T21:06:13.044268Z",
            "url": "https://files.pythonhosted.org/packages/ea/7a/dafcd813c54730ee42ca925a581a3483ce96223bc52061ad834d814f4448/bitarray-2.9.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "649d4797307c55968da9f0c178602b9b5759653091fecd7f5dcd9f620aaacdaa",
                "md5": "3c02f2f7aca5232e767f252cb1d2a649",
                "sha256": "cd56b8ae87ebc71bcacbd73615098e8a8de952ecbb5785b6b4e2b07da8a06e1f"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "3c02f2f7aca5232e767f252cb1d2a649",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 305276,
            "upload_time": "2024-01-01T21:06:14",
            "upload_time_iso_8601": "2024-01-01T21:06:14.942563Z",
            "url": "https://files.pythonhosted.org/packages/64/9d/4797307c55968da9f0c178602b9b5759653091fecd7f5dcd9f620aaacdaa/bitarray-2.9.2-cp37-cp37m-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7965b1eef4c3297487baa599064cf2f144e2abd40e4cd6e2d4ab1cd63f033aa0",
                "md5": "67c4ce117cf5fd17b418d2dbdfc5d3c7",
                "sha256": "3fa909cfd675004aed8b4cc9df352415933656e0155a6209d878b7cb615c787e"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp37-cp37m-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "67c4ce117cf5fd17b418d2dbdfc5d3c7",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 293728,
            "upload_time": "2024-01-01T21:06:17",
            "upload_time_iso_8601": "2024-01-01T21:06:17.246258Z",
            "url": "https://files.pythonhosted.org/packages/79/65/b1eef4c3297487baa599064cf2f144e2abd40e4cd6e2d4ab1cd63f033aa0/bitarray-2.9.2-cp37-cp37m-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a3b459c8a804772de2fb28547ab56a788c35c845a3e048c111a1c7f8a8c6386a",
                "md5": "215a8d82eab693597443eaa4eedcfcfb",
                "sha256": "b069ca9bf728e0c5c5b60e00a89df9af34cc170c695c3bfa3b372d8f40288efb"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "215a8d82eab693597443eaa4eedcfcfb",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 317291,
            "upload_time": "2024-01-01T21:06:19",
            "upload_time_iso_8601": "2024-01-01T21:06:19.239890Z",
            "url": "https://files.pythonhosted.org/packages/a3/b4/59c8a804772de2fb28547ab56a788c35c845a3e048c111a1c7f8a8c6386a/bitarray-2.9.2-cp37-cp37m-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9b27c41778623861d057d65280ccb5765c308f01cce8efc2b8c7e77e45061092",
                "md5": "e4435304694366ccdafb15b336a8ff81",
                "sha256": "6067f2f07a7121749858c7daa93c8774325c91590b3e81a299621e347740c2ae"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp37-cp37m-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "e4435304694366ccdafb15b336a8ff81",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 322600,
            "upload_time": "2024-01-01T21:06:20",
            "upload_time_iso_8601": "2024-01-01T21:06:20.903229Z",
            "url": "https://files.pythonhosted.org/packages/9b/27/c41778623861d057d65280ccb5765c308f01cce8efc2b8c7e77e45061092/bitarray-2.9.2-cp37-cp37m-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a1f293cfc994ef443a03f004d9d90669e03c07239fbad86330a024f7f573cd5b",
                "md5": "407e634a500a296a600141e32a6de837",
                "sha256": "321841cdad1dd0f58fe62e80e9c9c7531f8ebf8be93f047401e930dc47425b1e"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "407e634a500a296a600141e32a6de837",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 302934,
            "upload_time": "2024-01-01T21:06:22",
            "upload_time_iso_8601": "2024-01-01T21:06:22.569681Z",
            "url": "https://files.pythonhosted.org/packages/a1/f2/93cfc994ef443a03f004d9d90669e03c07239fbad86330a024f7f573cd5b/bitarray-2.9.2-cp37-cp37m-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "99cffc356ae94567e88d3ea5d6488d24111204a73c80178a4fa2f91f185c6f0d",
                "md5": "53f7eeeeb531ad5bf6575b78bb375180",
                "sha256": "54e16e32e60973bb83c315de9975bc1bcfc9bd50bb13001c31da159bc49b0ca1"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "53f7eeeeb531ad5bf6575b78bb375180",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 118600,
            "upload_time": "2024-01-01T21:06:24",
            "upload_time_iso_8601": "2024-01-01T21:06:24.603980Z",
            "url": "https://files.pythonhosted.org/packages/99/cf/fc356ae94567e88d3ea5d6488d24111204a73c80178a4fa2f91f185c6f0d/bitarray-2.9.2-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "85590a710c3d63f6ef18a0b6c0d3411fa83b5982c52d3e75f1681197bcbd317f",
                "md5": "8fecd31171a45c0f1e092184732daefa",
                "sha256": "f4dcadb7b8034aa3491ee8f5a69b3d9ba9d7d1e55c3cc1fc45be313e708277f8"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "8fecd31171a45c0f1e092184732daefa",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": null,
            "size": 126141,
            "upload_time": "2024-01-01T21:06:26",
            "upload_time_iso_8601": "2024-01-01T21:06:26.100791Z",
            "url": "https://files.pythonhosted.org/packages/85/59/0a710c3d63f6ef18a0b6c0d3411fa83b5982c52d3e75f1681197bcbd317f/bitarray-2.9.2-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "6c8b678b13006475e14148b5be7271fe25afd389a490075bd95603b27a827611",
                "md5": "87d3f3a4180121526994898eb0d04afb",
                "sha256": "c8919fdbd3bb596b104388b56ae4b266eb28da1f2f7dff2e1f9334a21840fe96"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp38-cp38-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "87d3f3a4180121526994898eb0d04afb",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 177165,
            "upload_time": "2024-01-01T21:06:27",
            "upload_time_iso_8601": "2024-01-01T21:06:27.703560Z",
            "url": "https://files.pythonhosted.org/packages/6c/8b/678b13006475e14148b5be7271fe25afd389a490075bd95603b27a827611/bitarray-2.9.2-cp38-cp38-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a259d9d7a827fc8fde1617444810a950f8a78716b4770df039f24170d565ace1",
                "md5": "69a14b77df57eba8e3452a99e9cbe7cd",
                "sha256": "eb7a9d8a2e400a1026de341ad48e21670a6261a75b06df162c5c39b0d0e7c8f4"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "69a14b77df57eba8e3452a99e9cbe7cd",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 128285,
            "upload_time": "2024-01-01T21:06:29",
            "upload_time_iso_8601": "2024-01-01T21:06:29.434196Z",
            "url": "https://files.pythonhosted.org/packages/a2/59/d9d7a827fc8fde1617444810a950f8a78716b4770df039f24170d565ace1/bitarray-2.9.2-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b7cf85398b52bb5fa73830c33c76b2a39e3456bd50f67d21829ae25cde5f1110",
                "md5": "5789492f367bb95a8cd9e17abe552cc8",
                "sha256": "6ec84668dd7b937874a2b2c293cd14ba84f37be0d196dead852e0ada9815d807"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "5789492f367bb95a8cd9e17abe552cc8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 124590,
            "upload_time": "2024-01-01T21:06:31",
            "upload_time_iso_8601": "2024-01-01T21:06:31.372738Z",
            "url": "https://files.pythonhosted.org/packages/b7/cf/85398b52bb5fa73830c33c76b2a39e3456bd50f67d21829ae25cde5f1110/bitarray-2.9.2-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8ab7bdc859ec083e35710e44ac1428d0ffdac34af68d8b9b979dc74699f7270a",
                "md5": "0bfa27615223d4130b6d26379119f94c",
                "sha256": "f2de9a31c34e543ae089fd2a5ced01292f725190e379921384f695e2d7184bd3"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "0bfa27615223d4130b6d26379119f94c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 287891,
            "upload_time": "2024-01-01T21:06:33",
            "upload_time_iso_8601": "2024-01-01T21:06:33.579462Z",
            "url": "https://files.pythonhosted.org/packages/8a/b7/bdc859ec083e35710e44ac1428d0ffdac34af68d8b9b979dc74699f7270a/bitarray-2.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "edbf8e79bcc2253910343b16d8e0db5f9789be0976ff1cde4f8b48bb4d9350d9",
                "md5": "90b56d450292213d177ea9632fafa49e",
                "sha256": "9521f49ae121a17c0a41e5112249e6fa7f6a571245b1118de81fb86e7c1bc1ce"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "90b56d450292213d177ea9632fafa49e",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 302910,
            "upload_time": "2024-01-01T21:06:35",
            "upload_time_iso_8601": "2024-01-01T21:06:35.292277Z",
            "url": "https://files.pythonhosted.org/packages/ed/bf/8e79bcc2253910343b16d8e0db5f9789be0976ff1cde4f8b48bb4d9350d9/bitarray-2.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "26f05ff3a8e5b627ecf39e0bf5061e7c16044811955bdb886bcce42e40d09eef",
                "md5": "55928106b0bee23f29b611f88fc092e6",
                "sha256": "a6cc6545d6d76542aee3d18c1c9485fb7b9812b8df4ebe52c4535ec42081b48f"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "55928106b0bee23f29b611f88fc092e6",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 304802,
            "upload_time": "2024-01-01T21:06:37",
            "upload_time_iso_8601": "2024-01-01T21:06:37.105939Z",
            "url": "https://files.pythonhosted.org/packages/26/f0/5ff3a8e5b627ecf39e0bf5061e7c16044811955bdb886bcce42e40d09eef/bitarray-2.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0080a64f332fbf7f3cb0c8da85f7fb29b7a0f8253f56d3831cf4ab42d9783f31",
                "md5": "c946de5cea8735588992003bffbe9730",
                "sha256": "856bbe1616425f71c0df5ef2e8755e878d9504d5a531acba58ab4273c52c117a"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c946de5cea8735588992003bffbe9730",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 287940,
            "upload_time": "2024-01-01T21:06:39",
            "upload_time_iso_8601": "2024-01-01T21:06:39.305286Z",
            "url": "https://files.pythonhosted.org/packages/00/80/a64f332fbf7f3cb0c8da85f7fb29b7a0f8253f56d3831cf4ab42d9783f31/bitarray-2.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "beb1325348e038f824d4260bcedaa081ee9b185cbc358bcca3d7f133b6b506ab",
                "md5": "48860f33fac17ebed6f38d8eae5e79fc",
                "sha256": "d4bba8042ea6ab331ade91bc435d81ad72fddb098e49108610b0ce7780c14e68"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "48860f33fac17ebed6f38d8eae5e79fc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 278016,
            "upload_time": "2024-01-01T21:06:41",
            "upload_time_iso_8601": "2024-01-01T21:06:41.061085Z",
            "url": "https://files.pythonhosted.org/packages/be/b1/325348e038f824d4260bcedaa081ee9b185cbc358bcca3d7f133b6b506ab/bitarray-2.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fb3610ca85b1b784cf78d3c0d24394616a9f8eff575de7305be8e20f2ad16d6f",
                "md5": "ead55742668ade5573ba73cb84a7c2a9",
                "sha256": "a035da89c959d98afc813e3c62f052690d67cfd55a36592f25d734b70de7d4b0"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "ead55742668ade5573ba73cb84a7c2a9",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 327280,
            "upload_time": "2024-01-01T21:06:43",
            "upload_time_iso_8601": "2024-01-01T21:06:43.432366Z",
            "url": "https://files.pythonhosted.org/packages/fb/36/10ca85b1b784cf78d3c0d24394616a9f8eff575de7305be8e20f2ad16d6f/bitarray-2.9.2-cp38-cp38-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "23983254ed166575c2717f74a90c919b9ed0d1b7bd7f01f822dcaf0b476eb99a",
                "md5": "8a6c2f1df35012c9443730c61fc21774",
                "sha256": "6d70b1579da7fb71be5a841a1f965d19aca0ef27f629cfc07d06b09aafd0a333"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp38-cp38-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "8a6c2f1df35012c9443730c61fc21774",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 313893,
            "upload_time": "2024-01-01T21:06:45",
            "upload_time_iso_8601": "2024-01-01T21:06:45.096244Z",
            "url": "https://files.pythonhosted.org/packages/23/98/3254ed166575c2717f74a90c919b9ed0d1b7bd7f01f822dcaf0b476eb99a/bitarray-2.9.2-cp38-cp38-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "13e204a16db3411a123cf7b670d5ab35bf1973e4af60ed81790c7dbb1ffeb7f3",
                "md5": "15be8419bca98e7f26ad02555613140c",
                "sha256": "405b83bed28efaae6d86b6ab287c75712ead0adbfab2a1075a1b7ab47dad4d62"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "15be8419bca98e7f26ad02555613140c",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 339496,
            "upload_time": "2024-01-01T21:06:46",
            "upload_time_iso_8601": "2024-01-01T21:06:46.924146Z",
            "url": "https://files.pythonhosted.org/packages/13/e2/04a16db3411a123cf7b670d5ab35bf1973e4af60ed81790c7dbb1ffeb7f3/bitarray-2.9.2-cp38-cp38-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "08e7db12e6d7175479e4f89d38f794271f3b30cacc079a25e6140786ca08296c",
                "md5": "35c323a7a70a778c66c67fc146a5a878",
                "sha256": "7eb8be687c50da0b397d5e0ab7ca200b5ebb639e79a9f5e285851d1944c94be9"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp38-cp38-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "35c323a7a70a778c66c67fc146a5a878",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 344230,
            "upload_time": "2024-01-01T21:06:48",
            "upload_time_iso_8601": "2024-01-01T21:06:48.525196Z",
            "url": "https://files.pythonhosted.org/packages/08/e7/db12e6d7175479e4f89d38f794271f3b30cacc079a25e6140786ca08296c/bitarray-2.9.2-cp38-cp38-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a597f09811f16e389e631d30d6b223dbb9d6997cd1767d847e00cf236feec0d0",
                "md5": "7719a39d66aed97b40711cbbca686829",
                "sha256": "eceb551dfeaf19c609003a69a0cf8264b0efd7abc3791a11dfabf4788daf0d19"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7719a39d66aed97b40711cbbca686829",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 324784,
            "upload_time": "2024-01-01T21:06:50",
            "upload_time_iso_8601": "2024-01-01T21:06:50.724135Z",
            "url": "https://files.pythonhosted.org/packages/a5/97/f09811f16e389e631d30d6b223dbb9d6997cd1767d847e00cf236feec0d0/bitarray-2.9.2-cp38-cp38-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ef7ab6ea7405ab62a17f3e60645c67724809ecc8fa269421a4e1f690e6713c8f",
                "md5": "d6d123d70623e18c0da949031df63f34",
                "sha256": "bb198c6ed1edbcdaf3d1fa3c9c9d1cdb7e179a5134ef5ee660b53cdec43b34e7"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "d6d123d70623e18c0da949031df63f34",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 118857,
            "upload_time": "2024-01-01T21:06:52",
            "upload_time_iso_8601": "2024-01-01T21:06:52.556957Z",
            "url": "https://files.pythonhosted.org/packages/ef/7a/b6ea7405ab62a17f3e60645c67724809ecc8fa269421a4e1f690e6713c8f/bitarray-2.9.2-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "831e591b84b61c46f19f1414f88029094dffa0e2131341af8a76bfee2b47a26a",
                "md5": "fbff7dabae5325be40699ce9fc208623",
                "sha256": "648d2f2685590b0103c67a937c2fb9e09bcc8dfb166f0c7c77bd341902a6f5b3"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "fbff7dabae5325be40699ce9fc208623",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": null,
            "size": 126130,
            "upload_time": "2024-01-01T21:06:54",
            "upload_time_iso_8601": "2024-01-01T21:06:54.476812Z",
            "url": "https://files.pythonhosted.org/packages/83/1e/591b84b61c46f19f1414f88029094dffa0e2131341af8a76bfee2b47a26a/bitarray-2.9.2-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "45351fff16b6daba3d6984e2a1d6797cc0193b2419be05339cd21d761b239240",
                "md5": "9bbe6b4996eba2b4d4ab2945c088e9b4",
                "sha256": "ea816dc8f8e65841a8bbdd30e921edffeeb6f76efe6a1eb0da147b60d539d1cf"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp39-cp39-macosx_10_9_universal2.whl",
            "has_sig": false,
            "md5_digest": "9bbe6b4996eba2b4d4ab2945c088e9b4",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 176808,
            "upload_time": "2024-01-01T21:06:56",
            "upload_time_iso_8601": "2024-01-01T21:06:56.060566Z",
            "url": "https://files.pythonhosted.org/packages/45/35/1fff16b6daba3d6984e2a1d6797cc0193b2419be05339cd21d761b239240/bitarray-2.9.2-cp39-cp39-macosx_10_9_universal2.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d0e557cccfb7ec227859da4a5276c6c1295577f0163e25e56f03691b2498be44",
                "md5": "638f909f1959d0ca83718e15fb3e59d0",
                "sha256": "4d0e32530f941c41eddfc77600ec89b65184cb909c549336463a738fab3ed285"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "638f909f1959d0ca83718e15fb3e59d0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 128050,
            "upload_time": "2024-01-01T21:06:57",
            "upload_time_iso_8601": "2024-01-01T21:06:57.705152Z",
            "url": "https://files.pythonhosted.org/packages/d0/e5/57cccfb7ec227859da4a5276c6c1295577f0163e25e56f03691b2498be44/bitarray-2.9.2-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "fdd566f60e5466a4cd07cbdff6bdb9d76194f7e68b4514943909155ddb8e2843",
                "md5": "85cdc366a7bb2a257b8636228eb40a04",
                "sha256": "4a22266fb416a3b6c258bf7f83c9fe531ba0b755a56986a81ad69dc0f3bcc070"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "85cdc366a7bb2a257b8636228eb40a04",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 124498,
            "upload_time": "2024-01-01T21:06:59",
            "upload_time_iso_8601": "2024-01-01T21:06:59.220798Z",
            "url": "https://files.pythonhosted.org/packages/fd/d5/66f60e5466a4cd07cbdff6bdb9d76194f7e68b4514943909155ddb8e2843/bitarray-2.9.2-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4c9b64613caf068bfa54c8ab517fce5b27cd25c64c22db461a456866fa13c5a7",
                "md5": "f8a361233dae0bfd34c97842cdf86411",
                "sha256": "fc6d3e80dd8239850f2604833ff3168b28909c8a9357abfed95632cccd17e3e7"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "f8a361233dae0bfd34c97842cdf86411",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 285957,
            "upload_time": "2024-01-01T21:07:00",
            "upload_time_iso_8601": "2024-01-01T21:07:00.802108Z",
            "url": "https://files.pythonhosted.org/packages/4c/9b/64613caf068bfa54c8ab517fce5b27cd25c64c22db461a456866fa13c5a7/bitarray-2.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "73f6db9454b744757dc55d3d71d24b6ecc8210b23e4740f49c02c944453c3033",
                "md5": "12448646f792900d9dddd64109766233",
                "sha256": "f135e804986b12bf14f2cd1eb86674c47dea86c4c5f0fa13c88978876b97ebe6"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "12448646f792900d9dddd64109766233",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 301015,
            "upload_time": "2024-01-01T21:07:03",
            "upload_time_iso_8601": "2024-01-01T21:07:03.306913Z",
            "url": "https://files.pythonhosted.org/packages/73/f6/db9454b744757dc55d3d71d24b6ecc8210b23e4740f49c02c944453c3033/bitarray-2.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1b15d702c82983766d2720f8ecfbc18b4de83c810478e8dff587ef8838094a4b",
                "md5": "c521aefe630d22df61794f8047cdcf51",
                "sha256": "87580c7f7d14f7ec401eda7adac1e2a25e95153e9c339872c8ae61b3208819a1"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "has_sig": false,
            "md5_digest": "c521aefe630d22df61794f8047cdcf51",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 302577,
            "upload_time": "2024-01-01T21:07:05",
            "upload_time_iso_8601": "2024-01-01T21:07:05.350221Z",
            "url": "https://files.pythonhosted.org/packages/1b/15/d702c82983766d2720f8ecfbc18b4de83c810478e8dff587ef8838094a4b/bitarray-2.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "49fb9760e01af33116d65d1a891bc516a48a83ad50bdabf0c2927d22870f2ceb",
                "md5": "f1dab04370f6f30572587e2c58517301",
                "sha256": "64b433e26993127732ac7b66a7821b2537c3044355798de7c5fcb0af34b8296f"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f1dab04370f6f30572587e2c58517301",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 286022,
            "upload_time": "2024-01-01T21:07:07",
            "upload_time_iso_8601": "2024-01-01T21:07:07.187461Z",
            "url": "https://files.pythonhosted.org/packages/49/fb/9760e01af33116d65d1a891bc516a48a83ad50bdabf0c2927d22870f2ceb/bitarray-2.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5c33c7f8d5657421cbd62d8d6819b38dea25804f202f680d096ac6daa94f314",
                "md5": "2cdd69ac77e2fe22d1f60c0e17bb0618",
                "sha256": "1e497c535f2a9b68c69d36631bf2dba243e05eb343b00b9c7bbdc8c601c6802d"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "2cdd69ac77e2fe22d1f60c0e17bb0618",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 275775,
            "upload_time": "2024-01-01T21:07:09",
            "upload_time_iso_8601": "2024-01-01T21:07:09.002620Z",
            "url": "https://files.pythonhosted.org/packages/c5/c3/3c7f8d5657421cbd62d8d6819b38dea25804f202f680d096ac6daa94f314/bitarray-2.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "856d0d42e437c8b189e656da9c38f597aacdec19fbc2b562c55789800c14efc5",
                "md5": "368a79b4b1bfd22aadf5598f581e3935",
                "sha256": "e40b3cb9fa1edb4e0175d7c06345c49c7925fe93e39ef55ecb0bc40c906b0c09"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "has_sig": false,
            "md5_digest": "368a79b4b1bfd22aadf5598f581e3935",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 318444,
            "upload_time": "2024-01-01T21:07:11",
            "upload_time_iso_8601": "2024-01-01T21:07:11.016477Z",
            "url": "https://files.pythonhosted.org/packages/85/6d/0d42e437c8b189e656da9c38f597aacdec19fbc2b562c55789800c14efc5/bitarray-2.9.2-cp39-cp39-musllinux_1_1_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7bd234781a60732f63cd3198ba865a198a09fca0e6c4dfc3cd3152fae428bf75",
                "md5": "66ed28583f125d8e799ceffe6a7af761",
                "sha256": "f2f8692f95c9e377eb19ca519d30d1f884b02feb7e115f798de47570a359e43f"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp39-cp39-musllinux_1_1_i686.whl",
            "has_sig": false,
            "md5_digest": "66ed28583f125d8e799ceffe6a7af761",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 305732,
            "upload_time": "2024-01-01T21:07:13",
            "upload_time_iso_8601": "2024-01-01T21:07:13.373178Z",
            "url": "https://files.pythonhosted.org/packages/7b/d2/34781a60732f63cd3198ba865a198a09fca0e6c4dfc3cd3152fae428bf75/bitarray-2.9.2-cp39-cp39-musllinux_1_1_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e20cfdc30c0c0555c514eb3bbe673c893184545a89615fdf998efd2dba9ff55c",
                "md5": "f0e7ec5aaac43f9cc22e00602ddd8a5d",
                "sha256": "f0b84fc50b6dbeced4fa390688c07c10a73222810fb0e08392bd1a1b8259de36"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "has_sig": false,
            "md5_digest": "f0e7ec5aaac43f9cc22e00602ddd8a5d",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 331238,
            "upload_time": "2024-01-01T21:07:15",
            "upload_time_iso_8601": "2024-01-01T21:07:15.972886Z",
            "url": "https://files.pythonhosted.org/packages/e2/0c/fdc30c0c0555c514eb3bbe673c893184545a89615fdf998efd2dba9ff55c/bitarray-2.9.2-cp39-cp39-musllinux_1_1_ppc64le.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "035e6fb7edde60b3e9b499efc00e422be0654704ebb940ad913a56394c2bc90e",
                "md5": "55519078ff654850317a477780e0cf68",
                "sha256": "d656ad38c942e38a470ddbce26b5020e08e1a7ea86b8fd413bb9024b5189993a"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp39-cp39-musllinux_1_1_s390x.whl",
            "has_sig": false,
            "md5_digest": "55519078ff654850317a477780e0cf68",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 336474,
            "upload_time": "2024-01-01T21:07:17",
            "upload_time_iso_8601": "2024-01-01T21:07:17.918169Z",
            "url": "https://files.pythonhosted.org/packages/03/5e/6fb7edde60b3e9b499efc00e422be0654704ebb940ad913a56394c2bc90e/bitarray-2.9.2-cp39-cp39-musllinux_1_1_s390x.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "9fd7f91469143cf7479ceb0cf3cb09b211aeb49819e14595e9c0f7282bed05ba",
                "md5": "0bf9612f515a8a27095cc0affce10aaf",
                "sha256": "6ab0f1dbfe5070db98771a56aa14797595acd45a1af9eadfb193851a270e7996"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0bf9612f515a8a27095cc0affce10aaf",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 316163,
            "upload_time": "2024-01-01T21:07:19",
            "upload_time_iso_8601": "2024-01-01T21:07:19.672421Z",
            "url": "https://files.pythonhosted.org/packages/9f/d7/f91469143cf7479ceb0cf3cb09b211aeb49819e14595e9c0f7282bed05ba/bitarray-2.9.2-cp39-cp39-musllinux_1_1_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e331afa43a5b41c3a7dac88b4d2226142b453bfedcd826fab43f302d2947bb5c",
                "md5": "c9e2844cd509d9a2afc068d204f81f1e",
                "sha256": "0a99b23ac845a9ea3157782c97465e6ae026fe0c7c4c1ed1d88f759fd6ea52d9"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "c9e2844cd509d9a2afc068d204f81f1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 118676,
            "upload_time": "2024-01-01T21:07:21",
            "upload_time_iso_8601": "2024-01-01T21:07:21.358567Z",
            "url": "https://files.pythonhosted.org/packages/e3/31/afa43a5b41c3a7dac88b4d2226142b453bfedcd826fab43f302d2947bb5c/bitarray-2.9.2-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "f97230c5565f1622ee3b51d8ac1cffac00a7459bb46cbdd7347450300cf8d05a",
                "md5": "6d3f0d03c51d3c6a30e6be1317ec9b24",
                "sha256": "9bbcfc7c279e8d74b076e514e669b683f77b4a2a328585b3f16d4c5259c91222"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "6d3f0d03c51d3c6a30e6be1317ec9b24",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": null,
            "size": 126107,
            "upload_time": "2024-01-01T21:07:23",
            "upload_time_iso_8601": "2024-01-01T21:07:23.222924Z",
            "url": "https://files.pythonhosted.org/packages/f9/72/30c5565f1622ee3b51d8ac1cffac00a7459bb46cbdd7347450300cf8d05a/bitarray-2.9.2-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "04f868d0fda45f2c0e02773aa692ef113b3beb399e75033bd8f4aec7fa90f7f6",
                "md5": "7bcaa803af3b2e1621f92b5a37d40ccb",
                "sha256": "43847799461d8ba71deb4d97b47250c2c2fb66d82cd3cb8b4caf52bb97c03034"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7bcaa803af3b2e1621f92b5a37d40ccb",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 124138,
            "upload_time": "2024-01-01T21:07:25",
            "upload_time_iso_8601": "2024-01-01T21:07:25.086211Z",
            "url": "https://files.pythonhosted.org/packages/04/f8/68d0fda45f2c0e02773aa692ef113b3beb399e75033bd8f4aec7fa90f7f6/bitarray-2.9.2-pp310-pypy310_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e5cf585d3e2bbb05928d3bcd3deb14ced5d62e90211cc3b2c5534579f602d194",
                "md5": "284ef80f7cc5f60fbdf39df397ea1f33",
                "sha256": "f4f44381b0a4bdf64416082f4f0e7140377ae962c0ced6f983c6d7bbfc034040"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "284ef80f7cc5f60fbdf39df397ea1f33",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 128828,
            "upload_time": "2024-01-01T21:07:27",
            "upload_time_iso_8601": "2024-01-01T21:07:27.006460Z",
            "url": "https://files.pythonhosted.org/packages/e5/cf/585d3e2bbb05928d3bcd3deb14ced5d62e90211cc3b2c5534579f602d194/bitarray-2.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "5dcbedc40ceedf7148c11afb44e43f7d6816d6e196044ab5cf5f12734cda8f8c",
                "md5": "fb572d1a65e2b0ce4c4d0619862a0b72",
                "sha256": "a484061616fb4b158b80789bd3cb511f399d2116525a8b29b6334c68abc2310f"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "fb572d1a65e2b0ce4c4d0619862a0b72",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 129614,
            "upload_time": "2024-01-01T21:07:28",
            "upload_time_iso_8601": "2024-01-01T21:07:28.549217Z",
            "url": "https://files.pythonhosted.org/packages/5d/cb/edc40ceedf7148c11afb44e43f7d6816d6e196044ab5cf5f12734cda8f8c/bitarray-2.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d1f848020a48ffb72d4021826c801e4c73109dad0abbec03860f512b61162c65",
                "md5": "6fe3caa28b473386823193bb90d57c01",
                "sha256": "1ff9e38356cc803e06134cf8ae9758e836ccd1b793135ef3db53c7c5d71e93bc"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6fe3caa28b473386823193bb90d57c01",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 131448,
            "upload_time": "2024-01-01T21:07:30",
            "upload_time_iso_8601": "2024-01-01T21:07:30.398104Z",
            "url": "https://files.pythonhosted.org/packages/d1/f8/48020a48ffb72d4021826c801e4c73109dad0abbec03860f512b61162c65/bitarray-2.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1239fea10d4aae1c2f63448c37308b8b6cd7dd34dbbc3dca7ebb5e9d98ae6fbe",
                "md5": "eda77607754ca677865ca11f6e46c54e",
                "sha256": "b44105792fbdcfbda3e26ee88786790fda409da4c71f6c2b73888108cf8f062f"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp310-pypy310_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "eda77607754ca677865ca11f6e46c54e",
            "packagetype": "bdist_wheel",
            "python_version": "pp310",
            "requires_python": null,
            "size": 126480,
            "upload_time": "2024-01-01T21:07:32",
            "upload_time_iso_8601": "2024-01-01T21:07:32.202348Z",
            "url": "https://files.pythonhosted.org/packages/12/39/fea10d4aae1c2f63448c37308b8b6cd7dd34dbbc3dca7ebb5e9d98ae6fbe/bitarray-2.9.2-pp310-pypy310_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8701f6c8af669ed9706b946c1176dc989675d447d99ae2b37b7f53022bc71474",
                "md5": "a45ef5c01de9831b21b093f6d1c05ebf",
                "sha256": "7e913098de169c7fc890638ce5e171387363eb812579e637c44261460ac00aa2"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a45ef5c01de9831b21b093f6d1c05ebf",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 124000,
            "upload_time": "2024-01-01T21:07:33",
            "upload_time_iso_8601": "2024-01-01T21:07:33.833176Z",
            "url": "https://files.pythonhosted.org/packages/87/01/f6c8af669ed9706b946c1176dc989675d447d99ae2b37b7f53022bc71474/bitarray-2.9.2-pp37-pypy37_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "996531bcfea7f09ed4ff8ed41ba6a49476d8f4fa0d8d3ee34e83856f04deb8f6",
                "md5": "2527fa9299504a0158dd4034d3dde2c5",
                "sha256": "d6fe315355cdfe3ed22ef355b8bdc81a805ca4d0949d921576560e5b227a1112"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "2527fa9299504a0158dd4034d3dde2c5",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 128731,
            "upload_time": "2024-01-01T21:07:35",
            "upload_time_iso_8601": "2024-01-01T21:07:35.504095Z",
            "url": "https://files.pythonhosted.org/packages/99/65/31bcfea7f09ed4ff8ed41ba6a49476d8f4fa0d8d3ee34e83856f04deb8f6/bitarray-2.9.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "812298c90b103a13ee54c1eac1077d5751d049ac6d4518c335864ed9711a7268",
                "md5": "1f6ac7ff85a55a4534989186fcd0e41c",
                "sha256": "f708e91fdbe443f3bec2df394ed42328fb9b0446dff5cb4199023ac6499e09fd"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1f6ac7ff85a55a4534989186fcd0e41c",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 129553,
            "upload_time": "2024-01-01T21:07:37",
            "upload_time_iso_8601": "2024-01-01T21:07:37.284869Z",
            "url": "https://files.pythonhosted.org/packages/81/22/98c90b103a13ee54c1eac1077d5751d049ac6d4518c335864ed9711a7268/bitarray-2.9.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c8f944908e897e0c2b13b44b15ad4a58a65852d9963676b302bfd6de211bd6d8",
                "md5": "3bd60e5484d9716d2f7ea3fb3667d0bb",
                "sha256": "5b7b09489b71f9f1f64c0fa0977e250ec24500767dab7383ba9912495849cadf"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "3bd60e5484d9716d2f7ea3fb3667d0bb",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 131218,
            "upload_time": "2024-01-01T21:07:39",
            "upload_time_iso_8601": "2024-01-01T21:07:39.234619Z",
            "url": "https://files.pythonhosted.org/packages/c8/f9/44908e897e0c2b13b44b15ad4a58a65852d9963676b302bfd6de211bd6d8/bitarray-2.9.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "280927fe687e96346e65d698a52d9382161dfe71a23c045f39ea6449af07c65b",
                "md5": "372d58a3211d4374de9b73cfe0795af4",
                "sha256": "128cc3488176145b9b137fdcf54c1c201809bbb8dd30b260ee40afe915843b43"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp37-pypy37_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "372d58a3211d4374de9b73cfe0795af4",
            "packagetype": "bdist_wheel",
            "python_version": "pp37",
            "requires_python": null,
            "size": 126670,
            "upload_time": "2024-01-01T21:07:41",
            "upload_time_iso_8601": "2024-01-01T21:07:41.434758Z",
            "url": "https://files.pythonhosted.org/packages/28/09/27fe687e96346e65d698a52d9382161dfe71a23c045f39ea6449af07c65b/bitarray-2.9.2-pp37-pypy37_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a48e2e32556b6c36b1bb3a2f1996365b0645595090eef4dc7d1bcf1850ba4af0",
                "md5": "996a18f10aab0eeb3ae8c798c03ecc0a",
                "sha256": "21f21e7f56206be346bdbda2a6bdb2165a5e6a11821f88fd4911c5a6bbbdc7e2"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "996a18f10aab0eeb3ae8c798c03ecc0a",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 123992,
            "upload_time": "2024-01-01T21:07:43",
            "upload_time_iso_8601": "2024-01-01T21:07:43.426015Z",
            "url": "https://files.pythonhosted.org/packages/a4/8e/2e32556b6c36b1bb3a2f1996365b0645595090eef4dc7d1bcf1850ba4af0/bitarray-2.9.2-pp38-pypy38_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c5046a281749331e580a8084789a3428e1a8bef14b4dfe960297dabb29bde13a",
                "md5": "1356889ca1cecc51e58afdd0e9939101",
                "sha256": "5f4dd3af86dd8a617eb6464622fb64ca86e61ce99b59b5c35d8cd33f9c30603d"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "1356889ca1cecc51e58afdd0e9939101",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 128717,
            "upload_time": "2024-01-01T21:07:45",
            "upload_time_iso_8601": "2024-01-01T21:07:45.192570Z",
            "url": "https://files.pythonhosted.org/packages/c5/04/6a281749331e580a8084789a3428e1a8bef14b4dfe960297dabb29bde13a/bitarray-2.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbd598edd548900f9536b7ee5e31f94451fa307c7765376a8b378d9e6a84314d",
                "md5": "0e680cbfea87f76c0eafa4aac8272e95",
                "sha256": "6465de861aff7a2559f226b37982007417eab8c3557543879987f58b453519bd"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "0e680cbfea87f76c0eafa4aac8272e95",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 129562,
            "upload_time": "2024-01-01T21:07:46",
            "upload_time_iso_8601": "2024-01-01T21:07:46.895558Z",
            "url": "https://files.pythonhosted.org/packages/bb/d5/98edd548900f9536b7ee5e31f94451fa307c7765376a8b378d9e6a84314d/bitarray-2.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d81b5d7f5747ce8b0775693d986ced895761cbda3f159dd1cd05080058252926",
                "md5": "d73543c1afb13604ea29737768edb8d2",
                "sha256": "dbaf2bb71d6027152d603f1d5f31e0dfd5e50173d06f877bec484e5396d4594b"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "d73543c1afb13604ea29737768edb8d2",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 131226,
            "upload_time": "2024-01-01T21:07:48",
            "upload_time_iso_8601": "2024-01-01T21:07:48.790116Z",
            "url": "https://files.pythonhosted.org/packages/d8/1b/5d7f5747ce8b0775693d986ced895761cbda3f159dd1cd05080058252926/bitarray-2.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "4715fcbf764c55ebf8b019cfb0fcfa0f4093e46be8b31c17e25efb7fd137b2d2",
                "md5": "2775a0eea0b0a3401561c78a51b047e7",
                "sha256": "2f32948c86e0d230a296686db28191b67ed229756f84728847daa0c7ab7406e3"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp38-pypy38_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "2775a0eea0b0a3401561c78a51b047e7",
            "packagetype": "bdist_wheel",
            "python_version": "pp38",
            "requires_python": null,
            "size": 126659,
            "upload_time": "2024-01-01T21:07:50",
            "upload_time_iso_8601": "2024-01-01T21:07:50.419838Z",
            "url": "https://files.pythonhosted.org/packages/47/15/fcbf764c55ebf8b019cfb0fcfa0f4093e46be8b31c17e25efb7fd137b2d2/bitarray-2.9.2-pp38-pypy38_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1647c4e39be58788c18636912698f1cb067b6909163b19d912deb77fd8354b74",
                "md5": "6b46e797961ace0e81a8b8e4013abaaf",
                "sha256": "be94e5a685e60f9d24532af8fe5c268002e9016fa80272a94727f435de3d1003"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6b46e797961ace0e81a8b8e4013abaaf",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 124136,
            "upload_time": "2024-01-01T21:07:52",
            "upload_time_iso_8601": "2024-01-01T21:07:52.118184Z",
            "url": "https://files.pythonhosted.org/packages/16/47/c4e39be58788c18636912698f1cb067b6909163b19d912deb77fd8354b74/bitarray-2.9.2-pp39-pypy39_pp73-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2deb42ee0ff848714b3ff4f2a076d41436151d63ef12be456fa12b89aaa87098",
                "md5": "e8ffd8ddbef0af4e237de2b5251d76b3",
                "sha256": "a5cc9381fd54f3c23ae1039f977bfd6d041a5c3c1518104f616643c3a5a73b15"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "has_sig": false,
            "md5_digest": "e8ffd8ddbef0af4e237de2b5251d76b3",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 128735,
            "upload_time": "2024-01-01T21:07:53",
            "upload_time_iso_8601": "2024-01-01T21:07:53.801692Z",
            "url": "https://files.pythonhosted.org/packages/2d/eb/42ee0ff848714b3ff4f2a076d41436151d63ef12be456fa12b89aaa87098/bitarray-2.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8d91afbaf35a8eb37be0be937741b90b72a072b526cb0e16e6b5fe7f2c0ed407",
                "md5": "376e7272d7173cf738896b3f94896419",
                "sha256": "cd926e8ae4d1ed1ac4a8f37212a62886292f692bc1739fde98013bf210c2d175"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "376e7272d7173cf738896b3f94896419",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 129594,
            "upload_time": "2024-01-01T21:07:55",
            "upload_time_iso_8601": "2024-01-01T21:07:55.476234Z",
            "url": "https://files.pythonhosted.org/packages/8d/91/afbaf35a8eb37be0be937741b90b72a072b526cb0e16e6b5fe7f2c0ed407/bitarray-2.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "0bdc86219d2c7aa1ace7431ccc90d1eea54e91583906ad141b61038017069032",
                "md5": "bfec52b3bb9c280c032c8ecf904d8c9c",
                "sha256": "461a3dafb9d5fda0bb3385dc507d78b1984b49da3fe4c6d56c869a54373b7008"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "bfec52b3bb9c280c032c8ecf904d8c9c",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 131279,
            "upload_time": "2024-01-01T21:07:57",
            "upload_time_iso_8601": "2024-01-01T21:07:57.404053Z",
            "url": "https://files.pythonhosted.org/packages/0b/dc/86219d2c7aa1ace7431ccc90d1eea54e91583906ad141b61038017069032/bitarray-2.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "18b279feddd666ab770b7ce74c008b96b219486c988d750b2513a1153759e846",
                "md5": "c5409115e9837e35015f71b8ac3041ba",
                "sha256": "393cb27fd859af5fd9c16eb26b1c59b17b390ff66b3ae5d0dd258270191baf13"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2-pp39-pypy39_pp73-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "c5409115e9837e35015f71b8ac3041ba",
            "packagetype": "bdist_wheel",
            "python_version": "pp39",
            "requires_python": null,
            "size": 126650,
            "upload_time": "2024-01-01T21:07:59",
            "upload_time_iso_8601": "2024-01-01T21:07:59.605909Z",
            "url": "https://files.pythonhosted.org/packages/18/b2/79feddd666ab770b7ce74c008b96b219486c988d750b2513a1153759e846/bitarray-2.9.2-pp39-pypy39_pp73-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c7bf25cf92a83e1fe4948d7935ae3c02f4c9ff9cb9c13e977fba8af11a5f642c",
                "md5": "024324a82314e9e68ecdcdefdc69071f",
                "sha256": "a8f286a51a32323715d77755ed959f94bef13972e9a2fe71b609e40e6d27957e"
            },
            "downloads": -1,
            "filename": "bitarray-2.9.2.tar.gz",
            "has_sig": false,
            "md5_digest": "024324a82314e9e68ecdcdefdc69071f",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 132825,
            "upload_time": "2024-01-01T21:08:01",
            "upload_time_iso_8601": "2024-01-01T21:08:01.957134Z",
            "url": "https://files.pythonhosted.org/packages/c7/bf/25cf92a83e1fe4948d7935ae3c02f4c9ff9cb9c13e977fba8af11a5f642c/bitarray-2.9.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-01-01 21:08:01",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "ilanschnell",
    "github_project": "bitarray",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "bitarray"
}
        
Elapsed time: 0.16059s