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

$ 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: 3.5.0
sys.version: 3.13.5 (main, Jun 16 2025) [Clang 18.1.8]
sys.prefix: /Users/ilan/miniforge
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 578 tests in 0.162s

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

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:

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

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

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.

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, i.e. initializing the buffer directly, using .tobytes(), .frombytes(), .tofile() or .fromfile(), 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(b'A')
>>> a.endian
'big'
>>> 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(b'A', endian='little')
>>> 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 has been 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
>>> a = bitarray(b'\x01', endian='little')
>>> b = bitarray(b'\x80', endian='big')
>>> a == b
True
>>> a.tobytes() == b.tobytes()
False

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.

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 an iterable of the symbols:

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

Symbols are not limited to being characters. 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() method, 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')
>>> list(a.decode(t))
['a', 'b', 'b', 'a']

The sole purpose of the immutable decodetree object is to be passed to bitarray’s .decode() method.

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: 3.5.0 – change log

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 initializer, and bit-endianness. The initializer may be one of the following types: a.) int bitarray, initialized to zeros, of given length b.) bytes or bytearray to initialize buffer directly c.) str of 0s and 1s, ignoring whitespace and “_” d.) iterable 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

New in version 3.4: allow initializer bytes or bytearray to set buffer directly

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:

  1. memory address of buffer

  2. buffer size (in bytes)

  3. bit-endianness as a Unicode 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 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 bit-endianness of the bitarray object. Pad bits 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, /) -> iterator

Given a prefix code (a dict mapping symbols to bitarrays, or decodetree object), decode content of bitarray and return an iterator over corresponding symbols.

See also: Bitarray 3 transition

New in version 3.0: returns iterator (equivalent to past .iterdecode())

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.

extend(iterable, /)

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

New in version 3.4: allow bytes object

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, reads and extends all data until EOF. When n is non-negative but exceeds the available data, EOFError is raised. However, the available data is still read and extended.

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

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, 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 order (starting with rightmost match).

See also: Bitarray 3 transition

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

New in version 3.0: returns iterator (equivalent to past .itersearch())

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(group=0, sep=' ') -> str

Return bitarray as Unicode string of ‘0’s and ‘1’s. The bits are grouped into group bits (default is no grouping). When grouped, the string sep is inserted between groups of group characters, default is a space.

New in version 3.3: optional group and sep arguments

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 integers. a.tolist() equals 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 that contain one byte for each bit in the bitarray, using specified mapping.

bitarray data descriptors:

Data descriptors were added in version 2.6.

endian -> str

bit-endianness as Unicode string

New in version 3.4: replaces former .endian() method

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().

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 bit-endianness for new bitarray objects being created. Unless _set_default_endian('little') was called, the default bit-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.

any_and(a, b, /) -> bool

Efficient implementation of any(a & b).

New in version 2.7

ba2base(n, bitarray, /, group=0, sep=' ') -> 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. When grouped, the string sep is inserted between groups of group characters, default is a space.

See also: Bitarray representations

New in version 1.9

New in version 3.3: optional group and sep arguments

ba2hex(bitarray, /, group=0, sep=' ') -> hexstr

Return a string containing the hexadecimal representation of the bitarray (which has to be multiple of 4 in length). When grouped, the string sep is inserted between groups of group characters, default is a space.

New in version 3.3: optional group and sep arguments

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.

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. Whitespace is ignored.

See also: Bitarray representations

New in version 1.9

New in version 3.3: ignore whitespace

byteswap(a, /, n=<buffer size>)

Reverse every n consecutive bytes of a in-place. By default, all bytes are reversed. Note that n is not limited to 2, 4 or 8, but can be any positive integer. Also, a may be any object that exposes a writable buffer. Nothing about this function is specific to bitarray objects.

New in version 3.4

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

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

correspond_all(a, b, /) -> tuple

Return tuple with counts of: ~a & ~b, ~a & b, a & ~b, a & b

New in version 3.4

count_and(a, b, /) -> int

Return (a & b).count() in a memory efficient manner, as no intermediate bitarray object gets created.

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

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.

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

hex2ba(hexstr, /, endian=None) -> bitarray

Bitarray of hexadecimal representation. hexstr may contain any number (including odd numbers) of hex digits (upper or lower case). Whitespace is ignored.

New in version 3.3: ignore whitespace

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 bit-endianness). Note that the symbols are not limited to being strings. Symbols may be any hashable object.

int2ba(int, /, length=None, endian=None, signed=False) -> bitarray

Convert the given integer to a bitarray (with given bit-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.

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

ones(n, /, endian=None) -> bitarray

Create a bitarray of length n, with all values 1, and optional bit-endianness (little or big).

New in version 2.9

parity(a, /) -> int

Return parity of bitarray a. parity(a) is equivalent to a.count() % 2 but more efficient.

New in version 1.9

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

random_p(n, /, p=0.5, endian=None) -> bitarray

Return pseudo-random bitarray of length n. Each bit has probability p of being 1. Equivalent to bitarray((random() < p for _ in range(n)), endian). The bitarrays are reproducible when calling Python’s random.seed() with a specific seed value.

This function requires Python 3.12 or higher, as it depends on the standard library function random.binomialvariate(). Raises NotImplementedError when Python version is too low.

New in version 3.5

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

New in version 2.7

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

New in version 2.7

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

New in version 1.8

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

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.

urandom(n, /, endian=None) -> bitarray

Return random bitarray of length n (uses os.urandom()).

New in version 1.7

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

New in version 2.2

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

xor_indices(a, /) -> int

Return xor reduced indices of all active bits in bitarray a. This is essentially equivalent to reduce(operator.xor, [i for i, v in enumerate(a) if v]).

New in version 3.2

zeros(n, /, endian=None) -> bitarray

Create a bitarray of length n, with all values 0, and optional bit-endianness (little or big).

Project details


Release history Release notifications | RSS feed

This version

3.5.0

Download files

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

Source Distribution

bitarray-3.5.0.tar.gz (148.0 kB view details)

Uploaded Source

Built Distributions

bitarray-3.5.0-pp310-pypy310_pp73-win_amd64.whl (143.5 kB view details)

Uploaded PyPyWindows x86-64

bitarray-3.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (146.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bitarray-3.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (145.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bitarray-3.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (147.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

bitarray-3.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (136.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

bitarray-3.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (139.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

bitarray-3.5.0-pp39-pypy39_pp73-win_amd64.whl (143.6 kB view details)

Uploaded PyPyWindows x86-64

bitarray-3.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (146.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bitarray-3.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (145.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bitarray-3.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (147.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

bitarray-3.5.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (136.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

bitarray-3.5.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (139.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

bitarray-3.5.0-pp38-pypy38_pp73-win_amd64.whl (143.5 kB view details)

Uploaded PyPyWindows x86-64

bitarray-3.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (145.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bitarray-3.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (145.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bitarray-3.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (147.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

bitarray-3.5.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (136.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

bitarray-3.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (139.4 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

bitarray-3.5.0-pp37-pypy37_pp73-win_amd64.whl (143.5 kB view details)

Uploaded PyPyWindows x86-64

bitarray-3.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (145.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bitarray-3.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (145.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bitarray-3.5.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (147.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

bitarray-3.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (139.4 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

bitarray-3.5.0-cp313-cp313-win_amd64.whl (145.2 kB view details)

Uploaded CPython 3.13Windows x86-64

bitarray-3.5.0-cp313-cp313-win32.whl (138.4 kB view details)

Uploaded CPython 3.13Windows x86

bitarray-3.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (315.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

bitarray-3.5.0-cp313-cp313-musllinux_1_2_s390x.whl (335.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

bitarray-3.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl (331.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

bitarray-3.5.0-cp313-cp313-musllinux_1_2_i686.whl (306.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

bitarray-3.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (315.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bitarray-3.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

bitarray-3.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

bitarray-3.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (336.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

bitarray-3.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (321.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

bitarray-3.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (310.3 kB view details)

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

bitarray-3.5.0-cp313-cp313-macosx_11_0_arm64.whl (141.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bitarray-3.5.0-cp313-cp313-macosx_10_13_x86_64.whl (144.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

bitarray-3.5.0-cp312-cp312-win_amd64.whl (145.2 kB view details)

Uploaded CPython 3.12Windows x86-64

bitarray-3.5.0-cp312-cp312-win32.whl (138.4 kB view details)

Uploaded CPython 3.12Windows x86

bitarray-3.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (315.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bitarray-3.5.0-cp312-cp312-musllinux_1_2_s390x.whl (335.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

bitarray-3.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl (331.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

bitarray-3.5.0-cp312-cp312-musllinux_1_2_i686.whl (306.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

bitarray-3.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (315.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bitarray-3.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bitarray-3.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

bitarray-3.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (336.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

bitarray-3.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (321.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

bitarray-3.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (310.4 kB view details)

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

bitarray-3.5.0-cp312-cp312-macosx_11_0_arm64.whl (141.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bitarray-3.5.0-cp312-cp312-macosx_10_13_x86_64.whl (144.4 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

bitarray-3.5.0-cp311-cp311-win_amd64.whl (145.0 kB view details)

Uploaded CPython 3.11Windows x86-64

bitarray-3.5.0-cp311-cp311-win32.whl (138.3 kB view details)

Uploaded CPython 3.11Windows x86

bitarray-3.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (311.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bitarray-3.5.0-cp311-cp311-musllinux_1_2_s390x.whl (332.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

bitarray-3.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl (329.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

bitarray-3.5.0-cp311-cp311-musllinux_1_2_i686.whl (304.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

bitarray-3.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (312.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bitarray-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (320.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bitarray-3.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (327.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

bitarray-3.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (334.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

bitarray-3.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (318.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

bitarray-3.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (307.8 kB view details)

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

bitarray-3.5.0-cp311-cp311-macosx_11_0_arm64.whl (141.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bitarray-3.5.0-cp311-cp311-macosx_10_9_x86_64.whl (144.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

bitarray-3.5.0-cp310-cp310-win_amd64.whl (144.7 kB view details)

Uploaded CPython 3.10Windows x86-64

bitarray-3.5.0-cp310-cp310-win32.whl (138.2 kB view details)

Uploaded CPython 3.10Windows x86

bitarray-3.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (303.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bitarray-3.5.0-cp310-cp310-musllinux_1_2_s390x.whl (324.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

bitarray-3.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl (321.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

bitarray-3.5.0-cp310-cp310-musllinux_1_2_i686.whl (296.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

bitarray-3.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (304.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bitarray-3.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (312.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bitarray-3.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

bitarray-3.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (326.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

bitarray-3.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (310.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bitarray-3.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (299.7 kB view details)

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

bitarray-3.5.0-cp310-cp310-macosx_11_0_arm64.whl (141.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bitarray-3.5.0-cp310-cp310-macosx_10_9_x86_64.whl (144.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

bitarray-3.5.0-cp39-cp39-win_amd64.whl (144.6 kB view details)

Uploaded CPython 3.9Windows x86-64

bitarray-3.5.0-cp39-cp39-win32.whl (138.1 kB view details)

Uploaded CPython 3.9Windows x86

bitarray-3.5.0-cp39-cp39-musllinux_1_2_x86_64.whl (302.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

bitarray-3.5.0-cp39-cp39-musllinux_1_2_s390x.whl (322.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

bitarray-3.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl (319.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

bitarray-3.5.0-cp39-cp39-musllinux_1_2_i686.whl (294.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

bitarray-3.5.0-cp39-cp39-musllinux_1_2_aarch64.whl (302.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

bitarray-3.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (309.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

bitarray-3.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (316.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

bitarray-3.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (324.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

bitarray-3.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (307.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

bitarray-3.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (297.9 kB view details)

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

bitarray-3.5.0-cp39-cp39-macosx_11_0_arm64.whl (141.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

bitarray-3.5.0-cp39-cp39-macosx_10_9_x86_64.whl (144.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

bitarray-3.5.0-cp38-cp38-win_amd64.whl (143.0 kB view details)

Uploaded CPython 3.8Windows x86-64

bitarray-3.5.0-cp38-cp38-win32.whl (136.4 kB view details)

Uploaded CPython 3.8Windows x86

bitarray-3.5.0-cp38-cp38-musllinux_1_2_x86_64.whl (303.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

bitarray-3.5.0-cp38-cp38-musllinux_1_2_s390x.whl (322.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

bitarray-3.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl (320.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

bitarray-3.5.0-cp38-cp38-musllinux_1_2_i686.whl (297.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

bitarray-3.5.0-cp38-cp38-musllinux_1_2_aarch64.whl (303.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

bitarray-3.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (311.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

bitarray-3.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (318.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

bitarray-3.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (326.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

bitarray-3.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (310.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

bitarray-3.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (299.9 kB view details)

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

bitarray-3.5.0-cp38-cp38-macosx_11_0_arm64.whl (141.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

bitarray-3.5.0-cp38-cp38-macosx_10_9_x86_64.whl (144.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

bitarray-3.5.0-cp37-cp37m-win_amd64.whl (143.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

bitarray-3.5.0-cp37-cp37m-win32.whl (136.2 kB view details)

Uploaded CPython 3.7mWindows x86

bitarray-3.5.0-cp37-cp37m-musllinux_1_2_x86_64.whl (294.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

bitarray-3.5.0-cp37-cp37m-musllinux_1_2_s390x.whl (315.8 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ s390x

bitarray-3.5.0-cp37-cp37m-musllinux_1_2_ppc64le.whl (312.4 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ppc64le

bitarray-3.5.0-cp37-cp37m-musllinux_1_2_i686.whl (287.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

bitarray-3.5.0-cp37-cp37m-musllinux_1_2_aarch64.whl (295.0 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

bitarray-3.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

bitarray-3.5.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (310.2 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

bitarray-3.5.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (319.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

bitarray-3.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

bitarray-3.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (292.1 kB view details)

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

bitarray-3.5.0-cp37-cp37m-macosx_10_9_x86_64.whl (144.0 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

bitarray-3.5.0-cp36-cp36m-win_amd64.whl (149.2 kB view details)

Uploaded CPython 3.6mWindows x86-64

bitarray-3.5.0-cp36-cp36m-win32.whl (140.3 kB view details)

Uploaded CPython 3.6mWindows x86

bitarray-3.5.0-cp36-cp36m-musllinux_1_2_x86_64.whl (294.8 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ x86-64

bitarray-3.5.0-cp36-cp36m-musllinux_1_2_s390x.whl (315.6 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ s390x

bitarray-3.5.0-cp36-cp36m-musllinux_1_2_ppc64le.whl (311.9 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ ppc64le

bitarray-3.5.0-cp36-cp36m-musllinux_1_2_i686.whl (288.7 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ i686

bitarray-3.5.0-cp36-cp36m-musllinux_1_2_aarch64.whl (294.7 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ ARM64

bitarray-3.5.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (303.6 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

bitarray-3.5.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (310.4 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ s390x

bitarray-3.5.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (319.2 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ppc64le

bitarray-3.5.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.1 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

bitarray-3.5.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (291.4 kB view details)

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

bitarray-3.5.0-cp36-cp36m-macosx_10_9_x86_64.whl (143.7 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: bitarray-3.5.0.tar.gz
  • Upload date:
  • Size: 148.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bitarray-3.5.0.tar.gz
Algorithm Hash digest
SHA256 e10ae216416c36500c86c08ffceaf7589f6ad54056a7007845cdd907813e7d25
MD5 65e3849c4e112914a7a8d22f0994d176
BLAKE2b-256 0d0f6ecf00ec04622b8309aca3cfbdba20d5399d9e4e5a4b156d9ffd2e5610d3

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e031424efbb1f147cf51cfc766d07b57e033d21399a08751c0044325bf5facfb
MD5 3171560924aa0df87e1b18bf7f07bc42
BLAKE2b-256 a662fb8b55cdef9bcb07bba7697f58184834ae1082a8eb26538e005a235b31bf

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 625600b045b97569b5ed0c587030b08fba6f567ee3ba8c9fa0fda5f03f4db1e0
MD5 a800d67a1a26cc0e04ffb1851b17d9c1
BLAKE2b-256 007e93d482572b09b8dd4fe5ec41d16d1e6fbd0efad7810bc2047d0d36268e49

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 858002d4e0db2760674215ec05c1f3a3390c0b91ccd0f4dd01adba40df953aa2
MD5 cbcc4878bfe82f79c99b0a0811555023
BLAKE2b-256 80c1b7b545b3eb0ffce1f83a20b46e804dcb42caa4d8b8daf446dea2409fd06f

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 62b32f5040b5be5e6614226d1ff7562798ef127cbd67756c237ac3b2f6ccad91
MD5 112c58d51fa88809e26b30e102bb7a98
BLAKE2b-256 4a141de63bcb83c99b8c59228733272183f721813573a4b4237fe15603a202ba

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2a31d0f44a6bba07fc22841500a8fd9f82affa0ba30cddd18ed8f0370ecf5b8
MD5 ebd6d186b74db94bf2da03e46bcd41b0
BLAKE2b-256 11e427ab92aa558c2e44aa9f514df038860699520f15c20633298aacfdad0a88

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9416cc3077393f2ce9111a2160f7e48ae000503784495493d60e217f519c6f26
MD5 5638d9553dacda0df64efb75654cc525
BLAKE2b-256 494f1b56a48ee4275c4290097e779ca225a984f4a683d68cbd178ad04833b59a

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c86759366007584ff463240a9dea326b0b81f42b50001c7bc8f4d270162583bf
MD5 fe46f7ea05dcbe4901bdfb89dd843789
BLAKE2b-256 347fd513aca38b293257c307c4435da48256b2870b3871c1c39e475314c8dcba

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24c0bac23eca255f19f7861c63fdf0658a9678a2ed083dcb463d37a1b66c4ef8
MD5 917be65758d3458168a6fa6cec6cb8b7
BLAKE2b-256 6d72ccb4307ff8c5dec899307f76adb3e1d7aece384d8fa27eb931ddb8705945

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 364ff23c7408a558ead4e09758490c821b11db9f2a1db6e2a6be9679b628bebd
MD5 6ca3641fe16b0e03d4b0e0c6d1b045f6
BLAKE2b-256 cabb9078bc2952a9be74aeb06ee2b40bfff2f9d7f4be447f29155228e940edb8

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d20251577809af5bcc67b523639664b92d5e7d685752fe02780d8f6fb2ff7dcc
MD5 57f4bcab48313aeadc3b6f0f1c784058
BLAKE2b-256 4fe872b1405ee191cc4366518c1ce2391c912897c2c6d7e854aaeebc470a2770

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edb815d21c3df9e9258dce7e8fbc3bca884e2568c389d6ccaee05f6dac1506b9
MD5 0cc43302229ad7834c860f95c5a67b78
BLAKE2b-256 25d1efc064d93fc56faf148d49780c3cfe55c121c486fa2dd5ebb78f89372924

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6afb05fb457f7fe8db30a20be9c7069a30cfd90c378cd2af12fec01e1e5d6dbd
MD5 ef0df418f7aa5322f47f44c879d34d3a
BLAKE2b-256 25dcb9fabaf6b0f55b64a156179ec5ac2b37bd6c11178eb52d6fb2f5b9407d43

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 39edcfddfb42928139d543d2d77cee15ef6ae97fed55b58c7473626ff6ae6a92
MD5 953e352549f27edd6e8e8d1d37384834
BLAKE2b-256 f64fedd75f8b164e417e583a8931358a55f16053a9e015a3e5eb7884931a68bb

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aaf890284fc3614c5305753cbcdc634e8e6dcc5d4f2a45e0c1d6ef818f219d6a
MD5 fb5e562b5c305f04591ae5ee7b9e3fb2
BLAKE2b-256 e9103190feca5bc9bf3b91b7ba0d5f202b20a8726e687924d5d68e83a67d4db7

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ebefb454d82b13e5214fa772cddbb58cba3cb3ce24b8ff3190a043c580c67fe3
MD5 f8c92675004826d36fd74a115f87bb98
BLAKE2b-256 f56ab36425a456560344cc2ae6b382d02e6d8efedfe2ae9aea6cc8a44619d247

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e91a5ca0620ab4ad5f3ec467ee535ccd07fcd95e616d690f81e6e99a5f2d6a5e
MD5 e57d7f4fa5e7f113f2ac25b92bf20278
BLAKE2b-256 0ce5ddd76a3980da701870492d4477d5ff49dc9599195975bb114a8a1ff18bc3

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 226be74a3083ccb10a412d9f51181f18cef93689696f3cd0b2e69b77872cafb7
MD5 afc1d20e9d1b5772453abf280823c041
BLAKE2b-256 c9aca14b27ce9175e56e6da6e5ef15ad653167af7d5b9b5afa3e4bbbec18593f

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 812fcdd18ad7890f40039b401c6be5e7db707d6c8259cc695074ca32ef1bd27d
MD5 4a3b55e1566270f02994215af617f845
BLAKE2b-256 4f5b2bb463ca4030a34089f3fae4bb58fd87d29e2bc49e816b4351d6d410f9c9

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 00697db51462769388d481e418a350dc949c82abe63d60374fdaa2ac5d1bcee9
MD5 e13bfe391198dc0a04f000e99bc5b587
BLAKE2b-256 2bffbc54879adc7ea7dfe24bd0f4e74c1fcbdb47670c7e99e9d439a21b4d0a75

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d2b5700280d50599a46d04d78ac7d655b039efaf756f1e6af3cdd9894b6fdc1
MD5 9d33f9f1cfdcad9f823b25287b35b88a
BLAKE2b-256 3520d5b06d001bd63b4742dbd91f249fa45b8d697c80db863d3f05c9d076ec7f

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a182f2930e86d9ebfb6a0b04a06284f0f799e4580181b541e0c45f7332d929ad
MD5 bd8646631d44be2372671b25bbad6639
BLAKE2b-256 4a31dbfea46b3e3c9670005f77e3661c7ceb0d3874f75e6bec0a8b0597013670

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb20022bfeec86fbe34e1a65d92463263d3f492d2c679d36198bd838f1733523
MD5 b1b8b0b9fb04c7ec1e1ed0073cb98de0
BLAKE2b-256 1490746fa1c2b90d8213bdd1937d8ddd54503375b7e528fcf636cb11cb42f8b0

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d70a9319a9c90640bc0fc04bc7046d8cbcde6a2381cfc445ca892da6e4ed096e
MD5 dea5d2f05910e17a5fafba4415646472
BLAKE2b-256 06c841a67478fb047dcf2c538e01873ceafab347731db3a00b2dee108ef1978f

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: bitarray-3.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 145.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bitarray-3.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 15cd52d6dfe4374e31fca6b2d0b50f7ed6a98c316c2befdd2f8be80bb703061c
MD5 0c4a42cc04680de9d5e7deecb284bcc8
BLAKE2b-256 3e9253e801988a392f4c1bf6c0dcb6d6ccb247b7988e195e30566e775fe4d44a

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: bitarray-3.5.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 138.4 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bitarray-3.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 190eb9ce58f6ca01ba959800019d1a9ba30b2996409df938667c718a73d5c794
MD5 90bb80872cf148adb41584399870e8de
BLAKE2b-256 389a814c9ea5b3c9ab300a06f19a7e3f1a74424f1d46659d56b7409e989adb1a

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57312af2775edf4842f2561e996341394bc9650330bd352f38b6144238f95ec3
MD5 e55b1226c6fc1065a4017ea3d3858f0e
BLAKE2b-256 6ac1a800f2d0149ca944fb18827c328803bbc9ed8bb84a80489d2ca7dbe0062a

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp313-cp313-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8fdd640b86637d9f20e620cce4efad36e1b147feb978153222195a0703a5c013
MD5 42ff92e6453675e82f3b5532d7927f0f
BLAKE2b-256 5fb6f636072cc9d63598088a2869dd2011078b89b4c4293865c4482cb075b93d

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 02243c8db4a43c2f1ac66396073ac68d1e41863eef248a1f5fdf859c0b3edc33
MD5 3c568b60efb0af496ed85bfe754940ee
BLAKE2b-256 b26e39bf609510ae3b30ba42f3f26b906da155ed4abda4d48bf9418e0791df8b

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a4a8dc574ad6928dc327bffbd32d3bab8cdc21e90b9c773a7e40f8c2627f572e
MD5 d4dbcb333e1ad150b9bafe26cd8f2c5f
BLAKE2b-256 840569616222f43b11f4ae4d88408f30b551de96c6d4d4fe98b70774004aee2c

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f45aee9532f0f4f3b0dc7058eb1730661c0a83d29a2cc00c6fbb80c3080e85b
MD5 2b0dd0212e3f10900cffaa45c328d5fb
BLAKE2b-256 8c749750132b2ca7d6d3a213ce144281f1bee7b1bfba2e8693f1b219d6c0ca16

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f47e2f676a3cdc8c21771d3a7e736af5c8385122a8de4f0c11a965ac0905888
MD5 e560a55ce879ae113c48eef03637a285
BLAKE2b-256 f0dbb49e7aa669bfcb176099b296b4dafdc7783633e482fed4b6dc0f4f19a1aa

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3a23cc993ff727e7e29058ca8c663613ffc3725e02e0eba6c0650bb538a1b2e7
MD5 1d559b790a2bef8e5133df19c2e77eb7
BLAKE2b-256 797d7898927a7f4eaa9408c65dbecd4dab6e5d9273e86b02cf74f86113f97363

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a1cd11d51721bc2402d8bd5b0d17b855cecb63366f711cf016546da84bb4548
MD5 3c91e6bb7c28554eee104a7cd31b1779
BLAKE2b-256 a2074b696f7c2b01706ced6d1f06f8c68b12cb1822b78e8dc85909397b3d8a2e

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eca3558001e7228ffd917a4db91992e0955d02c6ae878e9788460ee7499f1665
MD5 949ac634d42c015fd61f5cbeb3099849
BLAKE2b-256 589879eced6eddfc71508b021d20d385413938347d5ff805eddb15ae4c4f47e7

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 287ee0717df4d70a7260495006c7dfbbeb42ba9e067224359f923e2ce76f1f0e
MD5 c3260c8e128e96e6b851db9ea108d4f0
BLAKE2b-256 25b85c1110467b142809c80db5eb9234c1592ae24a0feb4ed47e8590da841866

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ef64b8a8715b8d2393ab94b5e9c0463e43eba0dbe1e01dde93bbadb73c39cc3
MD5 08af7d4fb8d091415f99e961c83e2cf4
BLAKE2b-256 ec21b14f7ca5726ab569c3c61f3661de7bea3719d12a2988c2c653ca0fa19f81

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 9bf8439bc80fd7a075c180a27d7b951e2ee133be6c1c102443de6e0237390284
MD5 c7cded22f909e6ecf8086d43e8f33e8b
BLAKE2b-256 2602a3946dcf6176363df87f2e0a7e4f001ac25e54fef0218ae5660d763e1ded

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: bitarray-3.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 145.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bitarray-3.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 86f043ed3de669eaa1ace14bc0c3b2c1b21f53728e48f00699117f94c8c0e02b
MD5 7b98a03243bac866ea697ca77990cf17
BLAKE2b-256 9c2058a93d971e9d89a94c65d83a740a161370492ed51139ab42260d93de85ab

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: bitarray-3.5.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 138.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bitarray-3.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 891817b3006f56e542f889d844c4c5c4715ea7b6e0e5825fc51dd1f7de76c14c
MD5 aa5bcbede62bc3e9e853776b63e76589
BLAKE2b-256 5e0194be9b1fbe81143a8d842cbfa8b14fdca12b96c848239b71b944059aa310

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 333c707bbc58028750e56f2da253838a71ec47c6dd6f8302c461381258e266f7
MD5 8c264d328ff22e7040297185f68a47fd
BLAKE2b-256 f5d3b4c16d161d7b8bbf019532faf933ad7306ecbf1ae24c10d1a0ec75bb0906

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp312-cp312-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 67343d181a4181ee608afe3a284b21d8be0ed11bdfbf9dd0779d57403556fedf
MD5 f0ee4e7269e9ea4dc29c67646e788f0c
BLAKE2b-256 12382bc7a39182fbfd7fbe16b7f400034984af29e9dc640f56a349529fe13d27

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e75f9150b59a4f5d205bd55e5ddb741e295045f17ebb1d4599e7e68563e98955
MD5 7e85e28c0725ddf32e0b7afdcc569a0a
BLAKE2b-256 ce1150234d6d1c057aee92a0aa7849a7276352db3772267818ac066aee24fefa

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 39d8b00e5031d0ab8101c2e6349b04cd753d2426b963279858ed1d5b0d454cd8
MD5 b74eda343e7da094e4ccee20c4415b82
BLAKE2b-256 707833e485dbe8e499677271b9b7d244b3cb57d57b0396672682a071a2b22cde

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 18573b66d9c08b692e21abff8b77f32716ec77ab8aff60916590107d725bf648
MD5 6f1585e243acab5edbbeb215baa16804
BLAKE2b-256 c046115dff1e6c21461a0b1681fb4ec666d50bdda5dce8c6c0e1b384e753b145

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 403b2045f43d70b184f559bfc39cb98fef02ee03aafd1cbe6d77db345a8c8275
MD5 5e3523292b16b40622c78823a78922e3
BLAKE2b-256 bbda8b43649052792e9786b4cbf895191d7ee9d907a5bc802059ff3eeb57e2af

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 352a6f7a5501ab4f74fda2275258fb7607b740ca74f5768d10774efca4215d4e
MD5 4fbf8b449bc5d8c46b4db955df98e6f5
BLAKE2b-256 ca8c7e0dd6dee3e4311224ddf95601cd60c0378db3d591cdc135b70abc7f3999

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 923fa335dcc3ecbb516f12b2b70f5991773ffe05484f8c8d9d31bd419c311e90
MD5 33850887f9b90c10cc6b2b0223f5be37
BLAKE2b-256 5c63dde5698a9f3a3bb794f48f16f8d23ff42f26ea99a2fa7a7632dc3ea275e7

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e0099251d50ddcab672d6ddf415eccf1b1117f0ab54e9321f905685d9ff910a6
MD5 82d08e2fe70a89dbfbdbb3f34a73b76a
BLAKE2b-256 d479e5625aabf5ca1f79b44d6b5c5f4c7fd611f3d574afe241edacd2b31a3531

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 25946a0faf22f16619a1eae82ae28c0e5e09815e7d5629c507df7b4e3bc7807a
MD5 7d9f4b3ee0a6bd07b926a6ac3086e245
BLAKE2b-256 faa9c647eb2dd958550173c01f4859a8406b41ac8caa37a00d2be48711a31828

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5964f319ef78cf69f24eebb9061e06462eed1a9ca62bdbbb6dcad611691f271d
MD5 609d71a1a25175643d725ae3371e5a47
BLAKE2b-256 9813e4f2211629cad18655a677c1b0135d8e82c0ab6c851d496227f6ea8cd35d

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 cc918ff7beaa389055f38d7bb096b00b95434d80a6f4784624dbca4fb919464c
MD5 a398f25106d9a07d9501a8eb2282d6d6
BLAKE2b-256 4d473b2fd638a96da2e42a53647d694b3ec6faced228cae608889e685f03351b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 145.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bitarray-3.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b4d245dfcd8203ea005da3b34bf76364c6765305a96cabd539e40fd4178a9ff0
MD5 a406babcb0a36d53850516ca6f01edbd
BLAKE2b-256 91357960be0db242881ac1406aa33ba35bbb22725a673ab870f47efa8b6e6a54

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.5.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 138.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bitarray-3.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 70a283cd08d88bb197dd68a21382ca5ab74aaf641f69229e8675c685891ed8f5
MD5 527077ccbb87275acea56be3a6377dc4
BLAKE2b-256 57d357dc1d0585298e6ee784abadaa87c6e5d4564c17d50f0dfd453787c4510f

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 609ab7754decc5adb66d440853f303ea249e0125cb6cf17da28530964b2c4652
MD5 1d8afe212d814fb512a8a185c47264ec
BLAKE2b-256 7b91eb367694f0253e5e0c2923aada02182703e70c66da3b6f6eb3ea6f7bc58b

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp311-cp311-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4f45e1010543f0c742425e1bc85796bb3b9f0acfefa6f518d3da9b317528a4ed
MD5 c8ea3b16b7f3e199931d77e129753523
BLAKE2b-256 bb1fedd9b472f23b80d5197c7f46a7c5544e46a8c051296784621a7c4904c70f

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 eae607b47620907a90d03ff9b097a742506ae45cb18b049b18d5668802e418c0
MD5 f4841ea5418f7db02d63a20a5f67b317
BLAKE2b-256 8676e20d5a3fbb9653bd7dd0b99fb2bd6b4c281bbfdcb60c7c8b3692ea52d4b4

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f3c0561ac6c22e55353789ef8a85cec4dcbadf20f3b7913fcfb0871d71dfd6ae
MD5 7350465022521a0e5c4cf705e18fe140
BLAKE2b-256 c5758b1af14be525b9ab30c2c631c4ff521ef07af67ef13509e3472acb02821f

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0570482325465361979a1a92b97b4a23ed8cba1965e506ae7689029fdf1369e7
MD5 9ea6167a15fe3a13f2fd867d4e309e32
BLAKE2b-256 ce882f9aed7798fdf4def87b6046c41b6dcba7e379a42ef4126611768d74cda3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8b124f6296961859f34195df6a5c72ca671fe084c6242a15028ed7aed257828
MD5 16aaa502d2b6679a326059d667e883d8
BLAKE2b-256 b8e87dc417bd3dd1833f2dd1aec65c313eec0b7c15b5c214b1370bd9187de294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8bd508fdc7fb6e49e0a1121a0fdb0106929f05e1885e401b5cb097d6cf49a201
MD5 3e2e00feffee48e13b8c0bcd37ab026e
BLAKE2b-256 448501a7a208c890c66bc9bfb22c2387c22d18e10bd78122bdc980a2275b0bc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 044dc0fd286df53973f3935dc71c41f0aa49f5480f465f9f9dd7b66d8154a597
MD5 fe86ae01b606099bfe3cc6d3dd32f039
BLAKE2b-256 38e78ab419b8607e7215e5b1651b22d551916eda7f43ad87b6f2f5b712f2ebed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d27236276cdaf343b75f747f0359dbe717dd9adeda87dafa29971c90eb4da05
MD5 f5f39b154d2f00763f3bd9f439d0a417
BLAKE2b-256 ac49061ca66c809baa76af69bc736eda25307e848ab0c7baedacdc052c7e3e49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bdeaf551344860a2da79d9306cafb3673c5719de2d07f16ad544fdbd3d10ac4e
MD5 d6f5fd6e02d1c2f85e2eb6c9d0bb36bd
BLAKE2b-256 88a0048353fcf3294cc3bcdfa7e25eb5f0e894e8e9fa49e51b00f7802445c1a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fafe54f5a4af6aee0d162f6962d0e919a90c3f42e1b2a1064f1b2b47914f7d9
MD5 e9aa0c515480ebfb0dd7eab66b320228
BLAKE2b-256 2139e6859818865e59a70b86953bd37400efef3eaa391add4955027233ff46c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 24a3dbada4b8a65901e7c39eb6a0efb8a151bbec93b86a31a5790eaa41616447
MD5 d0b83016e8f4705e5ea2c5a3194b96bc
BLAKE2b-256 cc49ec0652fff05d64525779ac336818ce0de88c6951f3ca8db648b7fd432be6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 144.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bitarray-3.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 59841744a6b240bb99e54a716cad1ffa11f01bb64df647f74539948c5a0caa8f
MD5 7ec9fa9da702fa2fd089229fd622c020
BLAKE2b-256 bcf584226380489d5c9aca51905f4721920f1c1b6154c779f854093b9e59bf6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.5.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 138.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bitarray-3.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 46de32d5065528fb6b45318fc603bf9059893bf8dfd0825ab8ffabda50d194f5
MD5 f4f910c6ac044de94e3ceb6a9ca58d8f
BLAKE2b-256 b2b8bfaf67ba500770f37d07e52bfd92e1e13542a37edcf38f83a39c32942eb6

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0f6ae329ec0f2ed6f8b77ef44fc49e072fa16ded0ed8dceb6ade7c994aa506c2
MD5 50acc4f828feedf3456a1da931938c80
BLAKE2b-256 38e729d68097bf1997014ba92ade78abb5f553038c68349cc99455bbd457d83c

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp310-cp310-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 825b2e17cf7f71e5a1e431b3c874c3bef93cd5d63615f08eab884b85ba1b9b7d
MD5 d0471a4fc194f5f0a471689d54f9d088
BLAKE2b-256 4269f7ab446b7592c3410ca18d8dd7c85672854be79bda2eb367e915586b0bbb

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b8e1a8e74d9a56c4b524ad43b35cd095022102fe2dccf7737fc8da32e80edb2e
MD5 2bd7d7551bb8b2dbfae92e32f4504ef5
BLAKE2b-256 442da828ce97df6fda6713e78e4fddf49248b2c01f9617d6a09897262a1b8eae

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ad02bcac204496986a60415e4c9884b7366e4bc9a2e5de75eaa5dc46555dcef5
MD5 679ec4b645f0da4feab9ea8d64d891bb
BLAKE2b-256 4bc2c25ff869118a1c76461f2e769ca73b3c51bfd45d3c4fb14b2ab52db302b4

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a44c4bc66150fbc10221214ae763c1a4cb9f52a1e79da5814974d277c30169dd
MD5 2ed96481439bd8357eee5a4b6382889b
BLAKE2b-256 4f656df92197a262daf2b47fe7ba350cfe0d172e5d5c6f60053c6b5814792dcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f181b99cfd35a9f824faa598954364eeb67f3d92f5256c19b949f719e1031e6
MD5 b5b525ef8a4692faabea991444e30703
BLAKE2b-256 c7b6c97ac45534569e0104ddaffe3ec507170d875c395c3fadd9220dfe288820

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d4d9a3b0ca1ed1d0f9d80265b1cc40b1483cce2e8dc5d0dac99ae6f0dd0ffeca
MD5 8be078377f863c879e41344443d59157
BLAKE2b-256 cb04208a6f10acaac1f6ea1cb1def0e4c569c00f0986ceacd7ff9c531f298109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a8150368e30b7503159bb6f54f824666d043b6275bbcc50582bbfa36739ca87
MD5 00bbbc3ccb01be6bb43404177fe959e1
BLAKE2b-256 f5e04577719a620dc0499c33d0b2803e5912c0cae0fa4d2f8d8716cf1f270b4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b1f016c17c22c018cc6cd555d14cf5281ccbe02e7f15c5ae0f8bbb2b84eca4e
MD5 ee6a98e3d5de6208396a321352b28463
BLAKE2b-256 10a10caf48e7d4c033a92b85f8480f44b42edbed1c67edcf7a01382cc3ced2ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a11d4800be04a1e216f90266eef27bc98c8502455f0ff9d1dbc72ae566efeb9e
MD5 f1264b12cb810c57c52d30d24b125977
BLAKE2b-256 5285095d4d25c2dd01aa7e29d55c29650eec908eceaf902dc0d94a8798c2589b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 550d41ed332d7065f1b7fc0ff806894df09282981bb301915bd9a4978a5338c1
MD5 94d8570a847b2dcca3c94146c9e1cf19
BLAKE2b-256 5b86c4c5e199ed1d35073f17060cd07cf531bf5b6d8ef2160e33f435b32deb66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9bb632a55ed7250d43acdfef3e566d546e5f89275ef49e903f7aa19a8bba48f6
MD5 877f6999b5a5126447e3bfab76eb630b
BLAKE2b-256 33079feead3924e739c60691130bff2d5f704a810282275c31aa8d590a05c22c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.5.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 144.6 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bitarray-3.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 af2f0f63377ca16629981f2fdf8910dc694848cbd5192ecc912fddef969bf4c2
MD5 ea1698ea1785f2c4e70a633b6e4eb0a2
BLAKE2b-256 6cc6ec5cea02842503fe60d1eb6327d87cb8ba1751d6cee58d98ab2f6d765f22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.5.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 138.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bitarray-3.5.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 88a45d6b17b36ee9da05204d88d13e3e660da9c33a94ff447dea0746993a91e7
MD5 ef790fa5590742253128be52749095dc
BLAKE2b-256 b42146de988c31ed30678b34f381fd1eb81eb1f938604719a689df1a78398604

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be799fdedfc17e7b11dbefc08e5650c1f39dd286b14369b7213b86934f64280b
MD5 a3e88f332194d5f66f1a0e2e62ba54cd
BLAKE2b-256 28b6500770a0a9565b64d88c20a79c7f09ee701413316ef2c62b27631c2a8da8

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp39-cp39-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8e4f94304e657d20ee9b3455961d1d57f89bd4de77cd866714b5aa2d3d3f7262
MD5 a30418525fbb750ae29d63f4eebf266f
BLAKE2b-256 8699ff57ec6fa89ce746030e90132c52972b6af071b8a97d035b9e15f0154fee

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 fb8d5b5e1652ea29fdfa4a453e85626dab729d86880b1f3109f5029e1421abe6
MD5 682319d165d28ecf9381b92b7f751ec4
BLAKE2b-256 cac32efe22819c8c4166126835eae712064c60a0ba5825ffb76a9ad695751f4c

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e246f07bae0a91defed1ab79443610953e8f41da423acf81dff5dee0e76c08ee
MD5 5de6f064dcd7043584425a5e0c249bb4
BLAKE2b-256 db013f10e9a9ab37d642814a6fc97a401923af4399dc11e64ee12d40bbe4d8b8

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 277feb523be1e2a9d3ce7dfb34c46feeadda1956585bd9ab65ac1cf26f3ccb8d
MD5 c4126fe8681ea9a62a22d17639ac3c24
BLAKE2b-256 88e35d0600001d3ad55dd83fee29c5bb3d106f5fb8fcb8a79a701d83f5b65ec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c3d0e709566205ea0e91f933aa7bcc4aeeae19093e56f2ba7893dcbe1e85197
MD5 a42988897143923c374561b9752ebc35
BLAKE2b-256 899a4880127199e131cda284a8a84729ad2723f05c8222d1dbbdd229e78a4595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 58c7c3763da40369093158eb727caa25187d9d9fa555c4a33efcee98e9a9cc02
MD5 ace78f9b1b81b95e1a7a9c335ad8e7cd
BLAKE2b-256 2201d8624332a384a2eb027ad8c547be7140ee04e0313feb96923e2c06b28fb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c1c90573b55ae88f9fa4385b923138e5b52aec5b13afb48b32254ccc8aeefc46
MD5 4ee4361d4ac4c55c3d9fc8b2cf152fb2
BLAKE2b-256 4dab58b135481a9e25f4e79c6c4589d457cbc16585687a7176807c23b012b100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33be8ad210c43536330c6c3a93115311f66a3c0aa2ca1c05b4754f295492da75
MD5 3631987ac76276e6adc32b2a952ffca8
BLAKE2b-256 2a2c4f1a7c7a546caeffe23ee719ff89c4dcb7c980b43784db1a1508ce61c2e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac48354c21825bc1737c6568f809e39e5e773220499a533521b8bf1d5edebfb2
MD5 e148bd053cf832739cf20aefd5239bc6
BLAKE2b-256 3a54bc35c984289474687951e3d228cff34ef876e1b8c855e4dc022c5dd446e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49770114de14e505f0447680f4daaa0e70c1f60ece113a8ddb3febf7693699a1
MD5 1104b7800f121ffd03b4ffd2468d0007
BLAKE2b-256 4acb7cb598e3039394992fe74edf04adb81df89015982ebf7a1064b3278fee21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 1c0100d89618f73e7555fe5da8ddffccb9a8f5821fe03560169c31d68d8359ca
MD5 c290465de00703f54f48dc311bc561f8
BLAKE2b-256 db7d0efbbad87455a32f4c23164dfeba452d9348d2157fbd7de720dbbc4f8ae4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.5.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 143.0 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bitarray-3.5.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b5f8edebf5d4624cd52a6360fcc2aa7f6f9ed9562074bdcc80f7e889c790ca50
MD5 20c3bc62191b92f18bde1b28f35dad8e
BLAKE2b-256 a4763b16cbce04ada071e177e3680be35863326341af46822d28b810d3f38908

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.5.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 136.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bitarray-3.5.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 b5ff445b4e9526eaa53df0339a3adb7607fe8c68b22fa44857c76db8d5628ec2
MD5 497d1cb920267d55a700509aea1e050e
BLAKE2b-256 4bae132e183e194e256b6748f4c05bfa6c7f699ba736810b2716065e38cf1b2a

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7159852eb8e91a7a28ab3f942ee45f71482497c2da890a53166e8c91f7c2081d
MD5 1251954e617e7a689e776d2c8aa540b3
BLAKE2b-256 2944c82ef2148d7369f4bfa03a73bc38443e7dba4ba44bf85c89f374796a5741

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp38-cp38-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 6cff0d0b7dc5fcd0153f7c9d794c7db92ac255913f7fb5eac3300804e5262c63
MD5 a1260735dc7551bf56f0366d7b2af5f1
BLAKE2b-256 4485c3ae4a2a0312b48723709ba023570e9bfb5676deb7202102ec7fce59a102

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b7f56dadc45a0b3b5cc5c18f1dcbe4259ed280f2494d557d110a125d5cca149e
MD5 f84988ad3dfd6cf459a9d498ac563624
BLAKE2b-256 afc85dd509a581ce3a3def53a0222f2d04f59ce1d7cc5bed4f6e52b4b50f2c0e

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2ca6b839389d931127885a29ffdc8b1aead42e631010bd9e7684482f941004cb
MD5 d39b5176e6bf86148e949fb4051cb279
BLAKE2b-256 e42fb7e72e277b568c95461fdf5a44388ef8e0f55de560c6488ad182feb8ba32

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4620ef7704126d6f4b43d5b071b8cf310df1c4f02cf66bbc8c44d5e7410873ab
MD5 11b6003da48d2643e3d431a631a8f047
BLAKE2b-256 175a6727c02b70ab69fbffae43b7b4657228a718c5b0b7c92aafe2bbf40ad706

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f6f6ecf2653b8ea49596cd2ea9b5faa5f82e0f1585f8b0f06d81a46380e2870
MD5 950749b0b6ee71159d308f1fd8aa863b
BLAKE2b-256 c460a5054c291b59fc9ad6ef32a5d542a05c644401845479335ab76abf7e40c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57f4ad1511120048945798a5f6da55be770770d04b1f719793aa317a77dd02d0
MD5 f0127263742d5c37d5c26b28bacfd051
BLAKE2b-256 024d8773ce76ce6776b7e99a22e27a15a4b67e3d87cd4b29acc0507e37527ecf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 91fead4c426fc91b4d7d2aa6c8e487981cba4a5429f4563d37e4f7039817d7b3
MD5 ad4e86b78077d11766cc4fd59b09b1ce
BLAKE2b-256 19b237ce469d0c4aa914dc9ebf1427eaba044fe8a3bc9b3c6f902df607b497b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d59e534737364e54c020ab3376ed2dd4c7e6ada23ba22d7bcd9ef248413f3eb7
MD5 fb3d2b0c73ae3aa340872327d879b1f0
BLAKE2b-256 5c6549184b048cc449a45db98ddc6b88fc03b23b0ec2e3ba5007b79048f4a3ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 26c2921b6077b3abc98a86104d0ea2b03ce273a0b1aff45f17c697291dbc784c
MD5 7f0fd81319709fb15205aa9a692a2214
BLAKE2b-256 1d21e8a1381cf0a64f130ad07cd833c48fe9ca7c72e2656e80a6b09b8a51dec3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15dd2a738f73992492bfbbcb65fd14642a8f6e7c37f7e43c57de8ac91d15279a
MD5 faa5ad6c8d976af7e88d3ce57fc89342
BLAKE2b-256 701f400dccb497d870786f82173e79b62827223ee607ebde36cb4e7ce4a80598

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b0b6f2236ec1dd7f9287075f20bb622200d7e3e4bf40164542e38e6aa3a2d6ed
MD5 2c23200a5a0de755e7a6bef73d76e639
BLAKE2b-256 b37eafaffd8b283747428860362e2a5bd4402cbbb8c7aec9ecaee802195a8e5f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-3.5.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 89c5f8c9b46b72fdecca51622be2f8f021f0d88dcd80d985caf6dd5dbb126867
MD5 c545b7fcfb89dc7ab995ca3c4e6edecd
BLAKE2b-256 8809f3831fdc6b145da4cf54d79057329bddc69ea9d3bbf5c94eec7aed232f0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.5.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 136.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bitarray-3.5.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 f5e3ed91feddbdac93cfa3c3061ed04ce2f0342b4629b56da940d391e816980c
MD5 2d22a50d040173c970cead7e612ee6c5
BLAKE2b-256 ccdc3f8c852b31766e4bcb6e551d57979630a9128c409d427d8994eb97ee3810

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db18d5563e892b0ffc48c44cdaaf734b0f5ab1cd7db5f14567edb627a321a622
MD5 fe473b3323d41664b668185f57b79adb
BLAKE2b-256 6d23c10ecc7ab36d0296dcfccedba9f470fe6c0dae9597dd2311cedecc3fe77a

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp37-cp37m-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp37-cp37m-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 a6b4b13364c99687e8c6a0b76eb68c8fe3400da7475b66f1cfe54586bdabdf74
MD5 f781b2777745625aa4fe539fa4e62e85
BLAKE2b-256 3a0d84540f5e8cd210843ee36a4c8cd5e2ef5284a0c256fe8c2f6ee814881250

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp37-cp37m-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp37-cp37m-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e7c8f9cf37f45cd55432e1f3e09c9786b7924cf029c698f452cee71563d3f283
MD5 65b62efd0888d1831b4f09556cb279a7
BLAKE2b-256 765c9b59bb85efaade64bc033d84da2d343f194f33cb1464d2dffc565b2be35a

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6e2f9d5936e9428ee9510ee8eb73c8feca6c16d35bcf0c91ae80a14ac48fd197
MD5 9553d11ce3da48bba2a57cf2f656e81a
BLAKE2b-256 d88dea833f3d4bcc36053625674e348c105ea6eddb7ad95ff16bfdbf9deaf7cd

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp37-cp37m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7a929fad198ce1b6558dca16449655923dfb1dc3060a07c1d5b64949780fb6c
MD5 930c134b138654b9252261998c00fe6a
BLAKE2b-256 17180af67e22148660cd174ba52deb2ac462c1e51d4806ca91867556b90bd563

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 998419b6b551e6367565164013b638f3e224e93febe55b54abf0c208470be5d6
MD5 e40b0dc87e08ffcb778364e93b93a0cf
BLAKE2b-256 094bb9f942f74e7a1b85f4f9261ec396f67e1aded28c6964d05fe5f2ada8e70f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0761279dfbc400a913ccfe99c5fbee3a7f3615e9dd3dde160ba5253016ae2019
MD5 a18b4a2da0abdad7acb96921dc2ff97e
BLAKE2b-256 d91b8a58e7b66b168fb5a21059137dc3ae5a121ca03b3c78bf80ba37cc7f5c18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dbe278e098eee54943835a11d808773c021eafa1378303dc8165ac0fa48ca7c6
MD5 5c5fdbc9dde48310ed419e0e86cb140e
BLAKE2b-256 202481568d041553b003b56f63aca45f5c4e7555aafe5b674bcdeba520e4041e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6f56b32b9119ab410a1eb0ad181e1e21adf6dbeb5f310d91f0c9a166a958d5c
MD5 6dea9622afa4062a802e2f59d807d554
BLAKE2b-256 cf371e5cd41bc471ff6932f6eb619167332684ae08c7615ce9d467e1cd634c4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3a147396ab7a501e85818c5b24d67b9b48273dc19d3f166798a4c5880f9044aa
MD5 352d1cc5d95d7e3a5e384effa0c43c3a
BLAKE2b-256 bcf2e9c3cdeae32457c447caf7aeefa6ab40500cae825b8c8776a755d8b834af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 99e75099c34b41be1b898789ff010f4f05113bb2e8d3eb02521d536153e08ce3
MD5 4776789da586f2c752c15f2262dfff77
BLAKE2b-256 932cca2014c0493904338433cd6cd036b06ef5495d80a62d6a3527cfeac2f7df

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-3.5.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 aedb850c7231882e18a349d17884ab9cba7d049b5b224c7376da9c10f8733af2
MD5 4f128d2f30dc4483baa7d49ce40c42e3
BLAKE2b-256 c2427028a4811da082f863970340d4905640d163975cf09bb7b126f7eabfd967

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.5.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 140.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for bitarray-3.5.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 4040b74e711625d4e9ac05c799a70b78969c1c9b25f50f427344d836d2db21f2
MD5 22144bd6644287629db80210806941b9
BLAKE2b-256 25ffe553f7bcaa6e4c81e14eed53049b95ae5cf17656f3c0cf897660e1a2bd42

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp36-cp36m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 de97a25180f10949884a7da195b589cd095901ddfc1850407a3b660f519933e3
MD5 e65e3584b8f88f4e201fe7811ede59f6
BLAKE2b-256 ea8a55d0088c2ebb7c5bab02babde574384573fb23d8c89f99d5174b0493dbeb

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp36-cp36m-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp36-cp36m-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7cd3fc61b677d5e98219e5e90013ec3bef7bcef6baff557add551cdd9bc0ca9c
MD5 ddbfb5c2dce5666a3ab872b09c8ae276
BLAKE2b-256 0b143fb643419509e53aa3ade59341108d174844eb526425a2409b5d8f56e8c4

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp36-cp36m-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp36-cp36m-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 88a50ad5583af5f5c32a0f81d84af5935e32bff5b90e4a1a13c906c2d7342b61
MD5 32330b4a3ee9874585e5c0d51aeeb97b
BLAKE2b-256 f8764d8133ce2cc0358c013ef6e836e21fc18c96f2591722cb30ff5ad400f997

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp36-cp36m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e2bc0a067e0dacded4fef471d7b23c21b82a7ceb7224385d335c3989c8c280dc
MD5 6459bee2535644c624dd1e761f3ae729
BLAKE2b-256 f479c6846a293ed74f755974e5db7ec90805336d22f2957d3dc2c872debd08e9

See more details on using hashes here.

File details

Details for the file bitarray-3.5.0-cp36-cp36m-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.5.0-cp36-cp36m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b42bfe705123e40535a390281da139ebee47d9822f87b9541e6f1c9868b83883
MD5 d1d284dc9352e0ac669a9e6889b20889
BLAKE2b-256 0739747c8937f0ce08178c505a8a2877b6f1ab838b54010503e434a6c1050337

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e333d21ba375ace468cb7de171613dcaffb4359d6db014a9d9a60b17d0e38ea3
MD5 9f7c31c13c33491acbc6b84742f49d8e
BLAKE2b-256 32ef64b48d81a85a5fb4b27094f1f6ee85645acbe6d1aec28fd70d4461aa0ccd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 92f05b22b33d70d15fe74d86047f1be0d3eef3011bf17295891fe81c938e336e
MD5 011bd9a1528bca9f3ac29354dcecf27d
BLAKE2b-256 bc3538d0fcd0af499858dd05cd7877222632a7232c20c208e60495dae0e000fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d55dc1dcdd623010468b54a17173da5ffc59729435ba571cf9aa573b3e803b33
MD5 b38d628ab952f4aeb2c709f051aa6a6b
BLAKE2b-256 7d1353c06435d3a6364923531e02abdb6a5d2eb60a1f51bb5600cf468c09d9c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3bcced6336c9e37e934696c82fafc27c26e530b6a889ec3215fdb8092ea43dd
MD5 d4b08141d73aee1cfb329cde34677a10
BLAKE2b-256 a12ccabd2967227b7992bd6bee8cfa52e1fc527253206301ff5b6db206717358

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 089ee3a9098526a5123c85cecc24328ab78b311254487b6c6f08f80d3bc0346e
MD5 ad3565956ea1721e6158c92a831ab249
BLAKE2b-256 42251b086938bccad599ff4be2375f20097195195cfbf75e350b8fbae6a32aff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.5.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4d6324e6dc20f711d0b5f602c9ddba6578fd38c59e963fa7c0400c52309a62f2
MD5 b6314136bf84bce22b3b6590448bd7ca
BLAKE2b-256 e75fc4d6f47197d3d3c481aa42d4ebe6a2b5841d53ef9a0a21df581e2dca0c38

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