Skip to main content

efficient arrays of booleans -- C extension

Project description

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.

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 over 400 unittests.

  • Utility module bitarray.util:

    • conversion to and from hexadecimal strings

    • (de-) serialization

    • pretty printing

    • conversion to and from integers

    • creating Huffman codes

    • 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:

$ pip install bitarray

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

$ conda install bitarray

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

$ python -c 'import bitarray; bitarray.test()'
bitarray is installed in: /Users/ilan/bitarray/bitarray
bitarray version: 2.6.1
sys.version: 3.9.4 (default, May 10 2021, 22:13:15) [Clang 11.1.0]
sys.prefix: /Users/ilan/Mini3/envs/py39
pointer size: 64 bit
sizeof(size_t): 8
sizeof(bitarrayobject): 80
PY_UINT64_T defined: 1
USE_WORD_SHIFT: 1
DEBUG: 0
.........................................................................
.........................................................................
................................................................
----------------------------------------------------------------------
Ran 435 tests in 0.531s

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:

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

Using the module

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:

>>> 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 (uninitialized)
>>> 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.count(1)
3
>>> a.remove(0)            # removes first occurrence of 0
>>> a
bitarray('1011')

Like lists, bitarray objects support slice assignment and deletion:

>>> 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:

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

This is easier and faster than:

>>> 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:

>>> 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')

Bitwise operators

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

>>> 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:

>>> 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:

>>> 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:

>>> 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:

>>> 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:

>>> 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. There is also an example that shows how to memory-map a file to a bitarray: 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:

>>> 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:

>>> 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 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:

>>> 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:

>>> 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.6.1 – change log

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

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 uninitialized.

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 readonly 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 the array are True. Note that a.all() is faster than all(a).

any() -> bool

Return True when any bit in the array 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:

  1. memory address of buffer

  2. buffer size (in bytes)

  3. bit endianness as a string

  4. number of pad bits

  5. allocated memory for the buffer (in bytes)

  6. memory is read-only

  7. buffer is imported

  8. number of buffer exports

bytereverse(start=0, stop=<end of buffer>, /)

For each byte in byte-range(start, stop) reverse the bit order 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.

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 of array>, step=1, /) -> int

Count the number of occurrences of value in the bitarray.

New in version 1.1.0: optional start and stop arguments.

New in version 2.3.7: optional step argument.

decode(code, /) -> list

Given a prefix code (a dict mapping symbols to bitarrays, or decodetree object), decode the content of the 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 the bitarray with the 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 of the bitarray will be a multiple of 8, and return the number of bits added (0..7).

find(sub_bitarray, start=0, stop=<end of array>, /) -> int

Return the lowest 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.

frombytes(bytes, /)

Extend the 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 the file object f. When n is omitted or negative, reads all data until EOF. When n is provided and positive but exceeds the data available, EOFError is raised (but the available data is still read and appended.

index(sub_bitarray, start=0, stop=<end of array>, /) -> int

Return the lowest index where sub_bitarray is found, such that sub_bitarray is contained within [start:stop]. Raises ValueError when the sub_bitarray is not present.

insert(index, value, /)

Insert value into the bitarray before index.

invert(index=<all bits>, /)

Invert all bits in the array (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 the content of the bitarray and return an iterator over the symbols.

itersearch(sub_bitarray, /) -> iterator

Searches for the given sub_bitarray in self, and return an iterator over the start positions where sub_bitarray matches self.

pack(bytes, /)

Extend the 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

Return the i-th (default last) element and delete it from the bitarray. Raises IndexError if index is out of range.

remove(value, /)

Remove the first occurrence of value in the bitarray. Raises ValueError if item is not present.

reverse()

Reverse all bits in the array (in-place).

search(sub_bitarray, limit=<none>, /) -> list

Searches for the given sub_bitarray in self, and return the 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 the bitarray to value. Note that a.setall(value) is equivalent to a[:] = value.

sort(reverse=False)

Sort the bits in the array (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 the byte representation of the bitarray to the 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 the 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, which is initialized the same way a bitarray object is initialized. A frozenbitarray is immutable and hashable, and (unlike a bitarray) may 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, repeat=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’.

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.

rindex(bitarray, value=1, start=0, stop=<end of array>, /) -> int

Return the rightmost (highest) index of value in bitarray. Raises ValueError if the value is not present.

New in version 2.3.0: optional start and stop arguments.

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 the parity of bitarray a. This 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.

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 a & b == a) but more efficient as iterating the buffers can be stopped as soon as one mismatch is found. Moreover, no intermediate bitarray object is created.

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=16 (hexadecimal), ba2hex() will be much faster, as ba2base() does not take advantage of byte level operations. 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

New in version 1.9.

base2ba(n, asciistr, /, endian=None) -> bitarray

Bitarray of the base n ASCII representation. Allowed values for n are 2, 4, 8, 16, 32 and 64. For n=16 (hexadecimal), hex2ba() will be much faster, as base2ba() does not take advantage of byte level operations. 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

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 endianness) and is guaranteed not to change in future releases.

See also: Bitarray representations

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

New in version 1.8.

New in version 2.5.0: allow bytes-like argument.

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

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. StopIteration is raised when no terminating byte is found. Use vl_encode() for encoding.

See also: Variable length bitarray format

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:

  1. the canonical Huffman code as a dict mapping symbols to bitarrays

  2. a list containing the number of symbols of each code length

  3. a list of symbols in canonical order

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

See also: Canonical Huffman Coding

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

New in version 2.5.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

bitarray-2.6.1.tar.gz (103.6 kB view details)

Uploaded Source

Built Distributions

bitarray-2.6.1-cp311-cp311-win_amd64.whl (107.5 kB view details)

Uploaded CPython 3.11Windows x86-64

bitarray-2.6.1-cp311-cp311-win32.whl (101.8 kB view details)

Uploaded CPython 3.11Windows x86

bitarray-2.6.1-cp311-cp311-musllinux_1_1_x86_64.whl (280.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

bitarray-2.6.1-cp311-cp311-musllinux_1_1_s390x.whl (295.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ s390x

bitarray-2.6.1-cp311-cp311-musllinux_1_1_ppc64le.whl (291.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ppc64le

bitarray-2.6.1-cp311-cp311-musllinux_1_1_i686.whl (267.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

bitarray-2.6.1-cp311-cp311-musllinux_1_1_aarch64.whl (280.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

bitarray-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (249.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bitarray-2.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (262.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

bitarray-2.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (260.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

bitarray-2.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (248.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

bitarray-2.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (237.2 kB view details)

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

bitarray-2.6.1-cp311-cp311-macosx_11_0_arm64.whl (104.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bitarray-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl (105.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

bitarray-2.6.1-cp311-cp311-macosx_10_9_universal2.whl (144.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ universal2 (ARM64, x86-64)

bitarray-2.6.1-cp310-cp310-win_amd64.whl (107.5 kB view details)

Uploaded CPython 3.10Windows x86-64

bitarray-2.6.1-cp310-cp310-win32.whl (101.8 kB view details)

Uploaded CPython 3.10Windows x86

bitarray-2.6.1-cp310-cp310-musllinux_1_1_x86_64.whl (274.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

bitarray-2.6.1-cp310-cp310-musllinux_1_1_s390x.whl (290.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ s390x

bitarray-2.6.1-cp310-cp310-musllinux_1_1_ppc64le.whl (285.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ppc64le

bitarray-2.6.1-cp310-cp310-musllinux_1_1_i686.whl (262.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

bitarray-2.6.1-cp310-cp310-musllinux_1_1_aarch64.whl (274.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

bitarray-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (243.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bitarray-2.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (256.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

bitarray-2.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (254.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

bitarray-2.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (241.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bitarray-2.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (231.6 kB view details)

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

bitarray-2.6.1-cp310-cp310-macosx_11_0_arm64.whl (104.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bitarray-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl (105.8 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

bitarray-2.6.1-cp310-cp310-macosx_10_9_universal2.whl (144.6 kB view details)

Uploaded CPython 3.10macOS 10.9+ universal2 (ARM64, x86-64)

bitarray-2.6.1-cp39-cp39-win_amd64.whl (107.6 kB view details)

Uploaded CPython 3.9Windows x86-64

bitarray-2.6.1-cp39-cp39-win32.whl (101.9 kB view details)

Uploaded CPython 3.9Windows x86

bitarray-2.6.1-cp39-cp39-musllinux_1_1_x86_64.whl (271.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

bitarray-2.6.1-cp39-cp39-musllinux_1_1_s390x.whl (287.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ s390x

bitarray-2.6.1-cp39-cp39-musllinux_1_1_ppc64le.whl (282.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ppc64le

bitarray-2.6.1-cp39-cp39-musllinux_1_1_i686.whl (260.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

bitarray-2.6.1-cp39-cp39-musllinux_1_1_aarch64.whl (271.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

bitarray-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (240.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

bitarray-2.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (253.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

bitarray-2.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (251.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

bitarray-2.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (238.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

bitarray-2.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (230.1 kB view details)

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

bitarray-2.6.1-cp39-cp39-macosx_11_0_arm64.whl (104.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

bitarray-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl (105.8 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

bitarray-2.6.1-cp39-cp39-macosx_10_9_universal2.whl (144.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ universal2 (ARM64, x86-64)

bitarray-2.6.1-cp38-cp38-win_amd64.whl (107.6 kB view details)

Uploaded CPython 3.8Windows x86-64

bitarray-2.6.1-cp38-cp38-win32.whl (102.0 kB view details)

Uploaded CPython 3.8Windows x86

bitarray-2.6.1-cp38-cp38-musllinux_1_1_x86_64.whl (279.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

bitarray-2.6.1-cp38-cp38-musllinux_1_1_s390x.whl (296.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ s390x

bitarray-2.6.1-cp38-cp38-musllinux_1_1_ppc64le.whl (292.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ppc64le

bitarray-2.6.1-cp38-cp38-musllinux_1_1_i686.whl (267.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

bitarray-2.6.1-cp38-cp38-musllinux_1_1_aarch64.whl (280.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

bitarray-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (241.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

bitarray-2.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (255.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

bitarray-2.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (252.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

bitarray-2.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (241.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

bitarray-2.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (231.5 kB view details)

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

bitarray-2.6.1-cp38-cp38-macosx_11_0_arm64.whl (104.9 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

bitarray-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl (106.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

bitarray-2.6.1-cp38-cp38-macosx_10_9_universal2.whl (145.1 kB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)

bitarray-2.6.1-cp37-cp37m-win_amd64.whl (107.6 kB view details)

Uploaded CPython 3.7mWindows x86-64

bitarray-2.6.1-cp37-cp37m-win32.whl (101.8 kB view details)

Uploaded CPython 3.7mWindows x86

bitarray-2.6.1-cp37-cp37m-musllinux_1_1_x86_64.whl (260.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

bitarray-2.6.1-cp37-cp37m-musllinux_1_1_s390x.whl (275.5 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ s390x

bitarray-2.6.1-cp37-cp37m-musllinux_1_1_ppc64le.whl (270.9 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ppc64le

bitarray-2.6.1-cp37-cp37m-musllinux_1_1_i686.whl (249.8 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

bitarray-2.6.1-cp37-cp37m-musllinux_1_1_aarch64.whl (260.6 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

bitarray-2.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (235.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

bitarray-2.6.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (248.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

bitarray-2.6.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (245.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

bitarray-2.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (234.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

bitarray-2.6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (225.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

bitarray-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl (105.6 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

bitarray-2.6.1-cp36-cp36m-win_amd64.whl (110.4 kB view details)

Uploaded CPython 3.6mWindows x86-64

bitarray-2.6.1-cp36-cp36m-win32.whl (103.6 kB view details)

Uploaded CPython 3.6mWindows x86

bitarray-2.6.1-cp36-cp36m-musllinux_1_1_x86_64.whl (258.3 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

bitarray-2.6.1-cp36-cp36m-musllinux_1_1_s390x.whl (273.6 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ s390x

bitarray-2.6.1-cp36-cp36m-musllinux_1_1_ppc64le.whl (269.0 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ ppc64le

bitarray-2.6.1-cp36-cp36m-musllinux_1_1_i686.whl (247.6 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

bitarray-2.6.1-cp36-cp36m-musllinux_1_1_aarch64.whl (258.6 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ ARM64

bitarray-2.6.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (235.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

bitarray-2.6.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (247.9 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ s390x

bitarray-2.6.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (244.8 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ppc64le

bitarray-2.6.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (234.6 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

bitarray-2.6.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (225.3 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

bitarray-2.6.1-cp36-cp36m-macosx_10_9_x86_64.whl (105.6 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

Details for the file bitarray-2.6.1.tar.gz.

File metadata

  • Download URL: bitarray-2.6.1.tar.gz
  • Upload date:
  • Size: 103.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for bitarray-2.6.1.tar.gz
Algorithm Hash digest
SHA256 8440a5493221f6ed6c4e0d9cb2ba6e4e600a5fb639f66003eaf15b7150a49230
MD5 0f3b20538cb5268978043050ba7cc675
BLAKE2b-256 d5be1c3e8849596abc2ea1714df0e43de14fec22c67b7044abbebf9a1db6d6d6

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: bitarray-2.6.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 107.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for bitarray-2.6.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3cdfed3c81035385ae7dd859d1e054a0dda6770e83bc5b112ca0b4bce91a753a
MD5 975f4ae504c4cac2dbc7030a6100f7c1
BLAKE2b-256 118f539e70fc9381589e75432004f81cb17a2cb959d58d7fae29e01aee110bde

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: bitarray-2.6.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 101.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for bitarray-2.6.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cd977dce97e0b3d16cf28a21e5d28d4f462dddac7d3c6f4e434ec409c78adeb1
MD5 a816cf9df74eaa284a8740f9bc1847c2
BLAKE2b-256 a2e82d20a89553ff82ed951341054e57b0fcf67720e1bcf7041c118a3eea2602

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8909a248227beef7ed222f5031519436a986a36b9f82f63f5c25e1b510728247
MD5 2e4d6e9e6d7d36b241e5af626e31b723
BLAKE2b-256 3daf8cac73a76856c491e9c925156257905d6f52bd258e6e2acc1ef8f37fcace

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 ffbaad32418e91f7f7916447a3c3f6e2dd3f12abeb71ca43b063c64f3d2beb05
MD5 50319220cf8276d6ea2c373176569fcd
BLAKE2b-256 5ce05775a012386eb69887e679e4ef3cdc0c5508c8b9474b590f0e3374a3af76

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 9df2525c68dea2f8d2700a2307533f5c34854cd0f6455f92e1da1ed3e80dc512
MD5 2e42cf7f0cc09adbc57e0436d9163abe
BLAKE2b-256 f62866c74835cb3706c1a81884ec735003c40f027bbc629d0bf1f84340133dbb

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 97643c9f755f1754cf17f063688826012e6d70b1b341c4bb22323589ff010288
MD5 7f7cf72271fc77913c7ce09ef45b90f0
BLAKE2b-256 f50e595eb7fc352cb85e03353fa746cc40620a3667920c48be666375b2770d51

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4e20edff57f3fa26b457311f887e076e773d3b13acbbaf8dfdf18c7019c971f4
MD5 9d758ead9bdb13660e3e026fcfbbf19c
BLAKE2b-256 26e90d7d4eae106de5222285a261b7b8b264926dce92ddd0dfa34d1d331292d1

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7348712346082ae9f246b92b1b17b6cdd7daab5fda3d7b0604c3d569ad953548
MD5 69d36e991f875d13fc19b5ed1b80cd3b
BLAKE2b-256 069ecb66d76be7fa13636527b8466d179ba1045aaec02bd12209119078c08b82

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 af2820fab55a7533133286fedae649e77c9ae8d8a0485afc895268e50dd96eba
MD5 db00238d754ef8b42db0b9ae52097be3
BLAKE2b-256 232c2525f3c343539a2bf511ad24e1469af755c109e6186dc97c72ce05311b51

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2477dec4feeff17202074a2adee37efcb1ecec8dc2f10f35d552d0bfaf2ec7b7
MD5 3fe850875443d1a8572a611804b1a8bb
BLAKE2b-256 570b2430117bd472f0933caf56156c1fd5e8f5d250881bb56b79ff2c50e4be15

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77599b490e42e901f656666bbad50b2e08791a8381275a01a22cf461d95627f2
MD5 cc02e636054d7b18643beb60a84e10df
BLAKE2b-256 8874cf8f46641fa1d31f59d51b1135213ec15cc1a261edbfddd641cba729cad9

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c539b56b78a54b83a07a371f9db0e35a59fac6a12fe89a2632a2cfefa89197da
MD5 0b10156d2ac129f713c52be324894209
BLAKE2b-256 cfc6d34559f528e888e6dabf39c7c77132edc66b6598df38125c2e8b78447b09

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 096e538a25c2323eb72720c8b8681900b48012f82e4548bb4ec2eda16f634455
MD5 3449cea341519ad1f5146d408c42e154
BLAKE2b-256 0ce78c1e796c14453dd2e9920f3dca0ae0a5833430470cc32ac822e2386a83e8

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 49772c92b10b989fd4581f7c354a83f4cc20bbd2c6c48bef57aa73a23f9e3ebc
MD5 0d09ec0860dcaa2691e62f612ccd0016
BLAKE2b-256 fb5300c676555911e5c193ae9bd7db824244ca560c99470e2bd1f7d86981b758

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp311-cp311-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 7f5a1eb0b9e853631025353b813e5fb05e68a6113708afdfdaff84dde59f9b3a
MD5 1f970a6953d91760ca793e30c696b0d2
BLAKE2b-256 be311f5c8131ec9e764fa53e8bd34b1af3593c5146e15e4f04034336916a7a78

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: bitarray-2.6.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 107.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for bitarray-2.6.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e6137124297839bc2dc073d97b9dbdb22e476bf9cae7ca68d64d937a66ff19e4
MD5 f69cb15e6025592f11c15e5743755546
BLAKE2b-256 e121b53f65fe03d7664812364d388f6f3eeeff3a0f9b387856c4ab5a116ef440

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: bitarray-2.6.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 101.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for bitarray-2.6.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f559a645e50d081bf5ba25550bffe1126cfbd1e2b3d57dd3fb688fb5da66e718
MD5 487f746a53aba51adc502cf499aba6b1
BLAKE2b-256 64c64b22d6e4cf4319b1af35640c10a373b1b8540ee53fd0dfd4bca9eae40752

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 034712f8843544ba2e9aa574628035e3e8d141e878365623b594c7fbe6440f4b
MD5 2f2db7ae30bc22d02b064889781a918d
BLAKE2b-256 15af96391fd39ba5b786b116fa6758bf1d70b5fc3f55caef4b2aec73ebcee5d7

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 7e6d14e391bac9e53009d16548eed5243e6956752807621715cc5b07f69c55bf
MD5 9ee67d9823815104780eef5c2d05cb07
BLAKE2b-256 c569d12e0cefe7cc4218ba12d47b325879f95b1f05de15eab6cc4da5d17eb2c9

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 404064972413c8e8bec99de20b37f8617f74c73e13a4439bbc8bd7a3801182f8
MD5 50705c4386329392b7fbe48c9cc68aca
BLAKE2b-256 250ca16ebaac7ab603d6ec1a7190ef21b8d805aebc23b6448f8a07c516226d1b

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 f7b632757a2fa7f19f29c5c750a389a5f4681636936d327c020acd186e2d82bc
MD5 45b25fa21c3e4a84c7690502dd89d1a3
BLAKE2b-256 5c845cbca72e19d702e0c534b13eb39b1bef9f2cee9ab3387bcb6464735274ec

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 db9894527bac35c4740dee96abe37978a8be91f774b69fa033dc1264a8a114ac
MD5 65baa27202aceecf013006bb25687cfc
BLAKE2b-256 24858d183654b7a66a1c84e678875d6fad1498a90e58253782b7adce6e759efd

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c82c2057e2af71a930983ff51eddfeec1e5169af376975f1716f785cd2aabe6
MD5 ae78e150c0a93f043cbfff0c604ccbf5
BLAKE2b-256 5efd2d6b350aefdecba77eb491a71a84235bb1e9d8fbf728c13a0dfa3be4b574

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a102c90e82b80b88d934794b3506ff3a41a4964b9a1b0895bf480303ca99ef82
MD5 672a985e50362d8731c61597506e30e6
BLAKE2b-256 814227e2510246767db6291edd1204135e07eda1490f042de2d7d20296e286bf

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 33e50f3af1fad9bc92544017b577ddc0a8be01411a19cf14afb1add1ec809835
MD5 83cb2c2268136c51e8b0569b25dc0767
BLAKE2b-256 b0d7df64eb133ed5f712c4399e9e6b71821d4e21d0ceda960cf4e3cbe05ddc6d

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a04654315dbe4d137e2d55234496091d5c6602f886798832b46a1e0bdba3d52
MD5 8a146744aeacd4acbde5c5175d80db8a
BLAKE2b-256 5fa575bbea8fb3b925a6e624481e29fbd5ece3e818cf7fafd60524c86577762f

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 097a2e6015e1ba663b3235b4c305470717f1a1e9d6dd211212010431e80b91f9
MD5 02e472a94c0b7ff3b2e419fbde81f79c
BLAKE2b-256 86c53568d0f2b0d238d1e8c5d4ae4ab6707ac0f502dd029d3495e4aa361dbfdf

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc2ecc8d3d49a178a7fc78ddcd8e6126c552c0d905de709eb9d4fe7cfba5f62b
MD5 6f995f99fb494a5ebea3af821f6a8d1d
BLAKE2b-256 8e7f5cdc7de970f99be87b71c93d05bdef5886a3bd644da33ceedb37c0593e3f

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 391868f7c60993afddb33dd4f6de0fed3583572133c6c1fdb3301c423dcaa1bd
MD5 7ce6c46e33dc5d8307c9f1c27884dc27
BLAKE2b-256 8323c00dc021299e8a2918548d82e0ce2b415346360c25b4bd6347e5df438008

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp310-cp310-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 758e078c8b04e32fa2926b00484ba251fd4e580bff45c477a0d97de8d9aca26a
MD5 52ab7f9835bed658730b09cfefbeeef3
BLAKE2b-256 e958d5d50662f1824fc9da552a263171eec86948bfd0a37bc8c257f61b707baa

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: bitarray-2.6.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 107.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for bitarray-2.6.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 916f9025c672394a628b6fe1a27193c62f1947bcf075cbbebcf5b7f4869f0be6
MD5 7789c86a6a98e868b1bd5bd09fe47709
BLAKE2b-256 10fefc85965b47fef33ebd83a38bc3a296ead3d9d4ce1f0501d3ad5c3a6102c9

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: bitarray-2.6.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 101.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for bitarray-2.6.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8aeb90e9ec5555618db564de6a4ec62eab6fd21233d8dee524a09941430ff6d5
MD5 88cb3e3dd6200f0c822e08b0b37749ed
BLAKE2b-256 cade9882f05d8338712ed8cfbd6224c59d49dcc48825ecb0c87972776b67c9f6

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 529da137751c0d619871f6886373428df19a268fcf96830c10e213f377947e3e
MD5 5daffc2df4b1a9312c77b2e6c7f03bc5
BLAKE2b-256 1e67f324b024e5c7618bd7ec797f182b59d42cf40cf6c22c7c3eb2edcc26752f

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 b24a9c8ad7cea786e4bad5780748efa4a3ba32b4457d173d49285cf22e64dc10
MD5 f302cceee3dea2c26b25d4ab21b0586f
BLAKE2b-256 c419645e6ca220c15450889e0b12e6b50435586d0648ebe39a5341a6e7f333d6

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 d28f390dee46f7b8eec6378474f16935a9db2eb14b1f8eb7c3a42fc4218fe099
MD5 0fb1c3b17c1daea01e620cd5668c379d
BLAKE2b-256 48882eff31319d836f0f69794cc08267232a01805f123476cb912474c45ac0cd

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6d1600401b0d673333f7b11e0a7da665c2502216031399444cf2217a3211d077
MD5 daa7675cad0eef3fd5982d07eca66f86
BLAKE2b-256 0c673f6fe2191ae0fd9eddcfc4c75c1aab17290ee50c13e81c106a2ab2380dab

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cbb191a80bf728c2cfd8e06fb9c1ebe5a53cf9d36303e74260a8288317024b15
MD5 15d37abe693555abe0383ddce0e563cd
BLAKE2b-256 cc7210e6b782fdc99dd4c6f4cbd6efc2253ef0ac1efe18d5be9c0657ca936789

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 72a68a3c7b134c6947ae4186edde865aae56bfe6a86f22b76fa6d5d53165fe43
MD5 5b4f1c88055c9629784bd53215be1b7e
BLAKE2b-256 cd64a81056e13ccd52a4d5d8adc185790acafbb853ecabbfb7ac44e9b4cf10c3

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 428785f992b774ba5eaf1c9dacca532c03b8db416a61898b21f09c91c9f924a4
MD5 9f3e43c46d7d04f8c1979a14e393fa94
BLAKE2b-256 3a02363c7447b7cded6b4f5a7f26904fe3cd9c57a7a44291ce53e2cf42dc05a8

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf8857f0e745c55d19a0ac2b36b43e70b782c0c29094b3941dfd77f69aae61b9
MD5 c26873f2244669e6765db1c16b47a1cc
BLAKE2b-256 01a6061b5dcb575ec341ee7d2c9bf57e080c0adfc7adcd4cdec98a768385dc6f

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 411b1c01de6ba6581259cade18676f023447e22744ce1d5b44ff5beb3f7ef824
MD5 2a5ca11b38ad74329a45fc67a3e1dd42
BLAKE2b-256 ff1fe0030b33d84259d3d25d82a6e664bf7b35156abcc32f5618e7892f3a42e6

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 df1b099d1b76c83db15164588b8abecf09fdbad665db7b550d40468e14087515
MD5 e529b95f01776582442d7cd19cd47e39
BLAKE2b-256 e8bb80c476e1418e00ba86aa896a1b3ec6c83c8a64658a7d74c01731d1c0b2fe

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61d57f9e4880fdf107ad5c9e84e3742ef8b5f67b5869e5da7b45d30ac8168129
MD5 6ad947338ca04a48cd12eae2dafa7a36
BLAKE2b-256 8445b88bcb0d4324464734e553cfc97a09917ad056354f136fa37b2e2a9e8399

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 85ec485bbc08812594e5971d32dab4acd73ad347b388f8d0f299e4c0e154e29d
MD5 514f7bea7696025112ab99caca361406
BLAKE2b-256 fa556637a499cf83a96b3d6eec01028cb2b5626cb343dd302f163ee6b7742be9

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 45d52a5f1b99ffa64cf0ff822d4efec848ccc4c5b62e22157cb5ec86c6cf4940
MD5 51277c86b48f2f0ce620fb562557d7f0
BLAKE2b-256 855840c93b3c8ef524898caff6c634807b3e5c631a80487587083fa80eaee283

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: bitarray-2.6.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 107.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for bitarray-2.6.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a57acfb28cebb79afde68f9b42c02c8f3e34a808a164e420a2c799035c01f579
MD5 74711b4a01027ce592dedaff1964d684
BLAKE2b-256 bf9658f6a319d6d00515f28ce9cee1a3917f1707bccc7467e8a4db0aad7dfcab

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: bitarray-2.6.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 102.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for bitarray-2.6.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 70ed1fa0141d3c4a17e529c096a8ed46a681ea1b7719f4022c7751e8a7be578a
MD5 d5c501df0751b3cdc1afb2692b7b8d5c
BLAKE2b-256 8d4952449650cafb1db1ca82d769936e5c0960212b77e3f3aa3db08d7977967f

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f44c3c52446ea168466ac86bc215be3be49d8417133a7914f9ac7d83dd891714
MD5 fe0d762cfb221f03becb840a2f9c9e74
BLAKE2b-256 f4b540b3318e932f3e437e811ac31c92a4eed5ec7a6838345b03f5a965c2e868

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 94da059dd7c7415d0857bcf271a5af626593b9b3b478fba2d9a1c03fd6fddf54
MD5 7227a682c3c1c971c42cf1c3f60984b9
BLAKE2b-256 e2efc3aa305e2f72dd7cac3cf30fcf294194632b7da18b14095ab738d0466250

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 1bec2595891ca421c14f577937d889d164d3cd069a0caa7b3de003a822f0ec59
MD5 09cb3163de3d0ed76136fe0db4387d7d
BLAKE2b-256 a2ea8416bab2a3ae287ce25dced2cd54fc222b9657d1904fa8435507197d8246

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 6f90dcf9e91ff9a15a5392d79ece61d02482a894d53e95cf26d78c620d3be65c
MD5 7851668896898adb48d74715d8a0204f
BLAKE2b-256 72af5c6b3f68854171c8b6dd696fb792e179f0a071b045605c8fd26d23421e18

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 98ad08c01b120f64aaea87d65395e8f43c74dedd8cc51d12d834687313c80059
MD5 a2774be0710470e8cccbbfa8ebc26847
BLAKE2b-256 d065b2941acc6e392e5c635cdbb669e296ed53bff32f6bec5d35ae9910a73e45

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2740880c8664a09ca0044ad251701fad5647b91959c1d036b27387e582e7abd
MD5 c9d1966224cd0c874f76a7fc90a795cc
BLAKE2b-256 96d47909e966f8396716e09a9e1d8b758e26a1bfa0ab7439b83805e6361ce325

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0867f4e48884ccf9e3324916122e20193f0f04ef407df58f76b29b0b7c4dde2e
MD5 dba57e1deb0716a1449eede0314f696b
BLAKE2b-256 c543346c02cad5edb9c73066981bd1dc4395f0a24ff4be7632b333fa727782a6

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2c5e137dd85a0fef71ac3d602dfd1fafadcdc54371e879b312290ec8ab75260d
MD5 72390d94c2a1824e53c15eb803796e18
BLAKE2b-256 13b09a7d9bc1ea26a9893dd2a7809d048e469d5ab16626fbf7da63e4af27b049

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 779779bc7f4924a0e4d9d1ff3222c295571a56b597557faedcdd4f4c1067e8f6
MD5 9fa3d5401dab5cf278824ed2aef07044
BLAKE2b-256 2107338db06c9f6c6dddcfcce6d991d8a905aa8a1b7bf129c22c070849f93746

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a69cc8ddd15bb129306c8be7b9eb0e2a52b689a99daaa884f09ceba385313781
MD5 4d3a0ef71d861910af03c7c4c4a1356b
BLAKE2b-256 0afc533f0af4b93ca7b92f9fed581778481649249bc8b2f14ff4bb78be049e6a

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c139c9a89291989b45a09f1bc6911dd97695d31311f9ec466ae09cb56166fcb
MD5 e6714b0d4a29a2fb2fcf01d8f4fc6dd9
BLAKE2b-256 5cdbc6681d0eb11f7d2ce86822396efc6837ceff547410969a3a5d77840292f4

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 20fb3e6ea148548d7c2a50bcb4238d1c8c2be21f04e101ba648f5f28636a7cad
MD5 1e0d9fb2ee57396716c4617b5218b2aa
BLAKE2b-256 821e84ed060a44250760899144c61580d5691b31c6ab18e8059c262db0e42e0a

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 0abffbb04c6238430ce2ebec4254ed1136557c522f406cefad33aeca6dc15628
MD5 b9dd00952abbeb946f553793cad043f7
BLAKE2b-256 65417cb7d64481aaacde3918be064bee09a5e67636dd1aaf235dd48549edd86f

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: bitarray-2.6.1-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 107.6 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for bitarray-2.6.1-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 d252f88dd22a9786dbe78451e1776a09ab4fea5dbf151c0d97149b1a91499d5c
MD5 9ce2a2fde5072f6e0428fffdb0a65ca8
BLAKE2b-256 150012efbf2f58e16b4f6d83267bc99e9ccb7365e5e3e5dbc8de9d46b5f99840

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp37-cp37m-win32.whl.

File metadata

  • Download URL: bitarray-2.6.1-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 101.8 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for bitarray-2.6.1-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 7cdf27dc8a20793ef52b1dbecb5aa0d62ce34700410b9681bffc3f3d89337d59
MD5 ec2ac53f5abb093a43b126bd9c92b661
BLAKE2b-256 8820d36df8bdf7b876c04cbdc069bfcea4b329e4a282f3b57e2b4842a0800d93

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d7f65a7d571d201f7cb45e35a6f90465137a4362b7ddc0dca98fe4bcc179af65
MD5 2e995665e4f396e98ec8f8e6758b73cb
BLAKE2b-256 3b3870c6e30b33d29bd705aaebc53673f51416ac51eb598e74e982fadb4e2d33

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp37-cp37m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 6955f750cc6a9d142e3ba323eb093ed8355cfdea648c35499bc45bdfd7da03b2
MD5 ecd66184bdceb9961752e0281bc34817
BLAKE2b-256 33f293ead9295d198e92e3f0fcab7d39c6ff368075887a113360fdc5324e5cb2

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp37-cp37m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 f9e76ba953713ab88da89d9fe811cc74391d422ce2dbc89bfb7b33c92582b104
MD5 8be31086736ce3cb3814ed6e7a2ffcab
BLAKE2b-256 abd6fd028a6638fe64f4e9f26cb709b4ed837600f699639f50be07c2e2538f77

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 8c10449d1960009d8cb1b1c8e863671a092fdc8f952979562a1b60a1fd42172d
MD5 d1195d18787e737e872218edf42bdbb9
BLAKE2b-256 c7ac4d71351c325d7d081c30b7ccafb006abe070709cce6431650586fc05501b

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a6af2a375512fa86476412cde0b57a398164792567ebc4ac38bd789bdfb49a2b
MD5 9a86650bc218cac011f7251c6bfb7b57
BLAKE2b-256 f93e133a8a1bde5b56d8f9d260638ea4bd49ee987439b546ab74a8daa8104b86

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a6af23cb8d3308d2424556f85ea99eb4aa673f279f9b55a3fc0f138df0170aa
MD5 009565dac8e8381b0ff18552dde474a7
BLAKE2b-256 4135e90a40b4ce01fe3fe7e8dc4c119ece07391d782b4c8310c98c465012893c

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b6608473dea7905ef0b1b2a2153a8f6bd9a474c70166ff58e7092a965be2bf76
MD5 faf3e43b457c4fe7c41387c0dd7c2449
BLAKE2b-256 3bb43f403508dea8779d78f4b562ff0c4f3230d9c7af5a7b4375c9f103d9bcbc

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce95811e39e3483bdfd82423593a3c90b6df121010257af3aad28222221b6610
MD5 bc9cff0175c325a72e08640996223529
BLAKE2b-256 e60b840ec4e15ffb01334eaf1ede61dc163fab939343bb43b49bc9bb6dca2fa0

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 edb817e2943ba4702f8e0c8cfcec9228fff1379434d8c0ab4ee198bd121a2222
MD5 80da1b25bc29a68818d8bba788c06023
BLAKE2b-256 eeb7c18881465398796dc0c64a914f9074ce4644ca04a554d53b63d58c98d6dc

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0649effe8f2b905c5160a30eaa56bda03bf322829f7bf9001d209391173b2764
MD5 a238929630ebd04e7ffe5ce1492893a7
BLAKE2b-256 457e065805752cfc403d969e8774ec0bce2fe59c53b7bfc153a4ce23edd7a6cc

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 96a814c8350d97a31d0b7d4174f1ee8e335abc486bd5a4e8c7497314757546d6
MD5 686ebc800f8099f26c6771c547e719c9
BLAKE2b-256 c113a093a37839760b4cc241cb66ceb3d86ac867c3fbac9799b54e21cc2b581c

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: bitarray-2.6.1-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 110.4 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for bitarray-2.6.1-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 47d6cdcc77e42e5e48ed04e009ec6371a972ca1ffefdfd66545bb7213754fb62
MD5 93f75aa89dc2937a6a1a108eabd37b2b
BLAKE2b-256 5ed68b23c3ead4a1a4fdf46c471070e40747428afbafebb490167a4462e306e9

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp36-cp36m-win32.whl.

File metadata

  • Download URL: bitarray-2.6.1-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 103.6 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.9.16

File hashes

Hashes for bitarray-2.6.1-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 2e6a2087ed0fd1e1ecf8729f89998304e22034d7b53baf689c94ddc101c7d6d5
MD5 fad6e71c5fbae0007d573a27d60b0ad4
BLAKE2b-256 8ce49e9aea55f8042c0a18b627335880f349ec03041b8d958b5df008a4aac4da

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3b6d788f72e64d18cbc270e757e32b90ef1dbd1190614d67bb395ad1edc0cf58
MD5 4a885f168abe02a75a0e5a33938b5f75
BLAKE2b-256 60410c8d86e456f58f36fb04bbac61fe958b2edb0d6705aa1a80adf55d7d8274

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp36-cp36m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 1f22552be33cb8b5fa86c68ae21e3d512bb73c304cadfd2912857cd694c70159
MD5 981d7e8271c5fb786e62448114ddcac9
BLAKE2b-256 46d8bf0c6852647aba477b1b5eefc928c5fedaf08459efcd9e1807b67edde88c

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp36-cp36m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 db285a317ff423bbe6a7f11ae76de77e6bcf6f3584ce5a79e428f26b25a191b6
MD5 6465170e90c7e32fc4657194b715bb61
BLAKE2b-256 b039b761316f505a1395a071e5120980d3f4d16db706c3eead9d061ca7451197

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 491f5360c787eaf9b809b258a43d88ab151770d6d0cb2b64a49516798f322ee2
MD5 5b1ca320dcf0d13e3168fe68a1b39339
BLAKE2b-256 9ce0ef531a8bacdf77d48d9c100bd7ad902e8575692d936f051430d9526e0189

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ea19a8a7a53894fc3ecf2f94829a72cf253fc08ea7e7d7d617e4f4f5bd5b7550
MD5 994b2661bf00dde7aba9197f6e298f7a
BLAKE2b-256 b68df0cb38a3f8381a17d007c6c1feede0edc51896e8669256cee0b8bbbd20b7

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b754b3e6d2e4699c5989734864492bdd47478c0b3fb225c03e2016fe01a5c109
MD5 7fb8735faa7b89a86e69f368cfcfae13
BLAKE2b-256 981d92b9b1b3b88acece94cff05b963f1455cf14fde312b01d87d7c6850a6944

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30b9fa3a1f52e9d395049be6c410e435d20ff8f97429896a40788d3b055cceca
MD5 ec46304aba07da609bac7f35a9b918b5
BLAKE2b-256 e507059c3c0f15121226bb06c07c802a52df7b6cf9a524abc8828f3ca53c10be

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8118fca0202467f4d6935836d597f43d840238b599c1ee1e3ef3a7ddeb8782c8
MD5 12c3c440d9e212e1186d6695b72125e5
BLAKE2b-256 2148488f39b8ff298b18446e8e82ab6b054f83d76e23a69736145c30dfab6afa

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c3fa5743d1882a1f32f5b908065c7feb374fd43ae6e936442d532b71e7aff3c
MD5 f2d44b0f833f68335559cbeb2ed6d062
BLAKE2b-256 cc38876977d5ba0b7c4341bd8c067269edbbc0ac1ac420ba5931fc161cd1fd87

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 5ac5fb13391507aa33ee4189ed5e640ddbbfd7106fc4290677061f1b3b997fb0
MD5 09ac31df6e44e54d4015056618fbfbce
BLAKE2b-256 bc190c55ce1f27e58b676b06aed21e195688b2678c4af8e91ff984ff2271f470

See more details on using hashes here.

File details

Details for the file bitarray-2.6.1-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-2.6.1-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5123a30bc921158286f06259517b962e8c42c845572bd0be16de491ee990bede
MD5 d1003fa1a8c2321c293978bced335bf9
BLAKE2b-256 6a4800f95c46bcb7f747f2b25d324d35bc4d700964ea5f6279988b42037fab3b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page