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 about 500 unittests.

  • Utility module bitarray.util:

    • conversion to and from hexadecimal strings

    • (de-) serialization

    • pretty printing

    • conversion to and from integers

    • creating Huffman codes

    • compression of sparse bitarrays

    • various count functions

    • other helpful functions

Installation

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

$ 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.1.0
sys.version: 3.10.14 (main, Oct 25 2022) [Clang 16.0.6]
sys.prefix: /Users/ilan/miniforge3
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 498 tests in 0.187s

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, using the .tobytes(), .frombytes(), .tofile() and .fromfile() methods, as well as using memoryview, the bit-endianness will have no effect on any computation, and one can skip this section.

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

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

By default, bitarrays use big-endian representation:

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

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

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

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

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

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

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

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

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

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

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

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

Buffer protocol

Bitarray objects support the buffer protocol. They can both export their own buffer, as well as import another object’s buffer. To learn more about this topic, please read buffer protocol. There is also an example that shows how to memory-map a file to a bitarray: mmapped-file.py

Variable bit length prefix codes

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

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

Note that the string 'Hello' is an iterable, but the symbols are not limited to characters, in fact any immutable Python object can be a symbol. Taking the same dictionary, we can apply the .decode() method which will return 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.1.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 initial object, and bit-endianness. The initializer may be of the following types:

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

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

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

Optional keyword arguments:

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

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

New in version 2.3: optional buffer argument.

bitarray methods:

all() -> bool

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

any() -> bool

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

append(item, /)

Append item to the end of the bitarray.

buffer_info() -> tuple

Return a tuple containing:

  1. memory address of buffer

  2. buffer size (in bytes)

  3. bit-endianness as a string

  4. number of pad bits

  5. allocated memory for the buffer (in bytes)

  6. memory is read-only

  7. buffer is imported

  8. number of buffer exports

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

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

endian() -> str

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

extend(iterable, /)

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

fill() -> int

Add zeros to the end of the bitarray, such that the length will be a multiple of 8, and return the number of bits added [0..7].

find(sub_bitarray, start=0, stop=<end>, /, right=False) -> int

Return lowest (or rightmost when right=True) index where sub_bitarray is found, such that sub_bitarray is contained within [start:stop]. Return -1 when sub_bitarray is not found.

New in version 2.1.

New in version 2.9: add optional keyword argument right.

frombytes(bytes, /)

Extend bitarray with raw bytes from a bytes-like object. Each added byte will add eight bits to the bitarray.

New in version 2.5.0: allow bytes-like argument.

fromfile(f, n=-1, /)

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

index(sub_bitarray, start=0, stop=<end>, /, right=False) -> int

Return lowest (or rightmost when right=True) index where sub_bitarray is found, such that sub_bitarray is contained within [start:stop]. Raises ValueError when the sub_bitarray is not present.

New in version 2.9: add optional keyword argument right.

insert(index, value, /)

Insert value into bitarray before index.

invert(index=<all bits>, /)

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

New in version 1.5.3: optional index argument.

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

Return a string containing ‘0’s and ‘1’s, representing the bits in the bitarray.

tobytes() -> bytes

Return the bitarray buffer in bytes (pad bits are set to zero).

tofile(f, /)

Write byte representation of bitarray to file object f.

tolist() -> list

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

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

unpack(zero=b'\x00', one=b'\x01') -> bytes

Return bytes containing one character for each bit in the bitarray, using specified mapping.

bitarray data descriptors:

Data descriptors were added in version 2.6.

nbytes -> int

buffer size in bytes

padbits -> int

number of pad bits

readonly -> bool

bool indicating whether buffer is read-only

Other objects:

frozenbitarray(initializer=0, /, endian='big', buffer=None) -> frozenbitarray

Return a frozenbitarray object. Initialized the same way a bitarray object is initialized. A frozenbitarray is immutable and hashable, and may therefore be used as a dictionary key.

New in version 1.1.

decodetree(code, /) -> decodetree

Given a prefix code (a dict mapping symbols to bitarrays), create a binary tree object to be passed to .decode().

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.

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

Create a bitarray of length, with all values 0, and optional bit-endianness, which may be ‘big’, ‘little’.

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

Create a bitarray of length, with all values 1, and optional bit-endianness, which may be ‘big’, ‘little’.

New in version 2.9.

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

Return a bitarray of length random bits (uses os.urandom).

New in version 1.7.

pprint(bitarray, /, stream=None, group=8, indent=4, width=80)

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

New in version 1.8.

strip(bitarray, /, mode='right') -> bitarray

Return a new bitarray with zeros stripped from left, right or both ends. Allowed values for mode are the strings: left, right, both

count_n(a, n, value=1, /) -> int

Return lowest index i for which a[:i].count(value) == n. Raises ValueError when n exceeds total count (a.count(value)).

New in version 2.3.6: optional value argument.

parity(a, /) -> int

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

New in version 1.9.

count_and(a, b, /) -> int

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

count_or(a, b, /) -> int

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

count_xor(a, b, /) -> int

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

This is also known as the Hamming distance.

any_and(a, b, /) -> bool

Efficient implementation of any(a & b).

New in version 2.7.

subset(a, b, /) -> bool

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

intervals(bitarray, /) -> iterator

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

New in version 2.7.

ba2hex(bitarray, /) -> hexstr

Return a string containing the hexadecimal representation of the bitarray (which has to be multiple of 4 in length).

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

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

ba2base(n, bitarray, /) -> str

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

See also: Bitarray representations

New in version 1.9.

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

Bitarray of base n ASCII representation. Allowed values for n are 2, 4, 8, 16, 32 and 64. For n=32 the RFC 4648 Base32 alphabet is used, and for n=64 the standard base 64 alphabet is used.

See also: Bitarray representations

New in version 1.9.

ba2int(bitarray, /, signed=False) -> int

Convert the given bitarray to an integer. The bit-endianness of the bitarray is respected. signed indicates whether two’s complement is used to represent the integer.

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

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

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.

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.

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.

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.

vl_encode(bitarray, /) -> bytes

Return variable length binary representation of bitarray. This representation is useful for efficiently storing small bitarray in a binary stream. Use vl_decode() for decoding.

See also: Variable length bitarray format

New in version 2.2.

vl_decode(stream, /, endian=None) -> bitarray

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

See also: Variable length bitarray format

New in version 2.2.

huffman_code(dict, /, endian=None) -> dict

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

canonical_huffman(dict, /) -> tuple

Given a frequency map, a dictionary mapping symbols to their frequency, calculate the canonical Huffman code. Returns a tuple containing:

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

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

  3. a list of symbols in canonical order

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

See also: Canonical Huffman Coding

New in version 2.5.

canonical_decode(bitarray, count, symbol, /) -> iterator

Decode bitarray using canonical Huffman decoding tables where count is a sequence containing the number of symbols of each length and symbol is a sequence of symbols in canonical order.

See also: Canonical Huffman Coding

New in version 2.5.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

bitarray-3.1.0.tar.gz (127.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

bitarray-3.1.0-pp310-pypy310_pp73-win_amd64.whl (123.5 kB view details)

Uploaded PyPyWindows x86-64

bitarray-3.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (125.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bitarray-3.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (125.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bitarray-3.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (127.4 kB view details)

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

bitarray-3.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (116.8 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

bitarray-3.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (119.7 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

bitarray-3.1.0-pp39-pypy39_pp73-win_amd64.whl (123.6 kB view details)

Uploaded PyPyWindows x86-64

bitarray-3.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (125.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bitarray-3.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (125.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bitarray-3.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (127.5 kB view details)

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

bitarray-3.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (116.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

bitarray-3.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (119.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

bitarray-3.1.0-pp38-pypy38_pp73-win_amd64.whl (123.5 kB view details)

Uploaded PyPyWindows x86-64

bitarray-3.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (125.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bitarray-3.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (125.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bitarray-3.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (127.5 kB view details)

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

bitarray-3.1.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (116.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

bitarray-3.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (119.6 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

bitarray-3.1.0-pp37-pypy37_pp73-win_amd64.whl (123.5 kB view details)

Uploaded PyPyWindows x86-64

bitarray-3.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (125.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

bitarray-3.1.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (125.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

bitarray-3.1.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (127.5 kB view details)

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

bitarray-3.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (119.6 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

bitarray-3.1.0-cp313-cp313-win_amd64.whl (123.1 kB view details)

Uploaded CPython 3.13Windows x86-64

bitarray-3.1.0-cp313-cp313-win32.whl (116.8 kB view details)

Uploaded CPython 3.13Windows x86

bitarray-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl (286.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

bitarray-3.1.0-cp313-cp313-musllinux_1_2_s390x.whl (314.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

bitarray-3.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl (303.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

bitarray-3.1.0-cp313-cp313-musllinux_1_2_i686.whl (280.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

bitarray-3.1.0-cp313-cp313-musllinux_1_2_aarch64.whl (287.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bitarray-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (294.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

bitarray-3.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (309.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

bitarray-3.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (307.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

bitarray-3.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (293.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

bitarray-3.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (284.2 kB view details)

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

bitarray-3.1.0-cp313-cp313-macosx_11_0_arm64.whl (120.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bitarray-3.1.0-cp313-cp313-macosx_10_13_x86_64.whl (123.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

bitarray-3.1.0-cp312-cp312-win_amd64.whl (123.2 kB view details)

Uploaded CPython 3.12Windows x86-64

bitarray-3.1.0-cp312-cp312-win32.whl (116.8 kB view details)

Uploaded CPython 3.12Windows x86

bitarray-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl (286.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bitarray-3.1.0-cp312-cp312-musllinux_1_2_s390x.whl (314.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

bitarray-3.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl (303.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

bitarray-3.1.0-cp312-cp312-musllinux_1_2_i686.whl (280.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

bitarray-3.1.0-cp312-cp312-musllinux_1_2_aarch64.whl (287.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bitarray-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (294.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

bitarray-3.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (309.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

bitarray-3.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (307.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

bitarray-3.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (293.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

bitarray-3.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (284.3 kB view details)

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

bitarray-3.1.0-cp312-cp312-macosx_11_0_arm64.whl (120.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bitarray-3.1.0-cp312-cp312-macosx_10_13_x86_64.whl (123.5 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

bitarray-3.1.0-cp311-cp311-win_amd64.whl (123.0 kB view details)

Uploaded CPython 3.11Windows x86-64

bitarray-3.1.0-cp311-cp311-win32.whl (116.8 kB view details)

Uploaded CPython 3.11Windows x86

bitarray-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl (284.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bitarray-3.1.0-cp311-cp311-musllinux_1_2_s390x.whl (312.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

bitarray-3.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl (302.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

bitarray-3.1.0-cp311-cp311-musllinux_1_2_i686.whl (278.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

bitarray-3.1.0-cp311-cp311-musllinux_1_2_aarch64.whl (286.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bitarray-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (292.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

bitarray-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (308.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

bitarray-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (306.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

bitarray-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (291.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

bitarray-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (282.4 kB view details)

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

bitarray-3.1.0-cp311-cp311-macosx_11_0_arm64.whl (120.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bitarray-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl (123.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

bitarray-3.1.0-cp310-cp310-win_amd64.whl (122.9 kB view details)

Uploaded CPython 3.10Windows x86-64

bitarray-3.1.0-cp310-cp310-win32.whl (116.8 kB view details)

Uploaded CPython 3.10Windows x86

bitarray-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl (277.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bitarray-3.1.0-cp310-cp310-musllinux_1_2_s390x.whl (304.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

bitarray-3.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl (295.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

bitarray-3.1.0-cp310-cp310-musllinux_1_2_i686.whl (270.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

bitarray-3.1.0-cp310-cp310-musllinux_1_2_aarch64.whl (279.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bitarray-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

bitarray-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (300.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

bitarray-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (299.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

bitarray-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (284.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

bitarray-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (274.5 kB view details)

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

bitarray-3.1.0-cp310-cp310-macosx_11_0_arm64.whl (120.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bitarray-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl (123.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

bitarray-3.1.0-cp39-cp39-win_amd64.whl (123.0 kB view details)

Uploaded CPython 3.9Windows x86-64

bitarray-3.1.0-cp39-cp39-win32.whl (116.8 kB view details)

Uploaded CPython 3.9Windows x86

bitarray-3.1.0-cp39-cp39-musllinux_1_2_x86_64.whl (276.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

bitarray-3.1.0-cp39-cp39-musllinux_1_2_s390x.whl (303.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

bitarray-3.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl (293.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

bitarray-3.1.0-cp39-cp39-musllinux_1_2_i686.whl (269.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

bitarray-3.1.0-cp39-cp39-musllinux_1_2_aarch64.whl (277.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

bitarray-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (283.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

bitarray-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (298.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

bitarray-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (297.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

bitarray-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (282.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

bitarray-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (272.7 kB view details)

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

bitarray-3.1.0-cp39-cp39-macosx_11_0_arm64.whl (120.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

bitarray-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl (123.6 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

bitarray-3.1.0-cp38-cp38-win_amd64.whl (123.1 kB view details)

Uploaded CPython 3.8Windows x86-64

bitarray-3.1.0-cp38-cp38-win32.whl (116.8 kB view details)

Uploaded CPython 3.8Windows x86

bitarray-3.1.0-cp38-cp38-musllinux_1_2_x86_64.whl (278.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

bitarray-3.1.0-cp38-cp38-musllinux_1_2_s390x.whl (304.1 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

bitarray-3.1.0-cp38-cp38-musllinux_1_2_ppc64le.whl (294.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

bitarray-3.1.0-cp38-cp38-musllinux_1_2_i686.whl (272.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

bitarray-3.1.0-cp38-cp38-musllinux_1_2_aarch64.whl (278.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

bitarray-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

bitarray-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (300.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

bitarray-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (299.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

bitarray-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (285.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

bitarray-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (274.7 kB view details)

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

bitarray-3.1.0-cp38-cp38-macosx_11_0_arm64.whl (120.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

bitarray-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl (123.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

bitarray-3.1.0-cp37-cp37m-win_amd64.whl (123.0 kB view details)

Uploaded CPython 3.7mWindows x86-64

bitarray-3.1.0-cp37-cp37m-win32.whl (116.7 kB view details)

Uploaded CPython 3.7mWindows x86

bitarray-3.1.0-cp37-cp37m-musllinux_1_2_x86_64.whl (269.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ x86-64

bitarray-3.1.0-cp37-cp37m-musllinux_1_2_s390x.whl (296.7 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ s390x

bitarray-3.1.0-cp37-cp37m-musllinux_1_2_ppc64le.whl (286.3 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ppc64le

bitarray-3.1.0-cp37-cp37m-musllinux_1_2_i686.whl (262.1 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ i686

bitarray-3.1.0-cp37-cp37m-musllinux_1_2_aarch64.whl (270.6 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.2+ ARM64

bitarray-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.1 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

bitarray-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (292.8 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

bitarray-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (292.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

bitarray-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.7 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

bitarray-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (267.0 kB view details)

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

bitarray-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl (123.2 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

bitarray-3.1.0-cp36-cp36m-win_amd64.whl (129.2 kB view details)

Uploaded CPython 3.6mWindows x86-64

bitarray-3.1.0-cp36-cp36m-win32.whl (120.9 kB view details)

Uploaded CPython 3.6mWindows x86

bitarray-3.1.0-cp36-cp36m-musllinux_1_2_x86_64.whl (268.9 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ x86-64

bitarray-3.1.0-cp36-cp36m-musllinux_1_2_s390x.whl (296.6 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ s390x

bitarray-3.1.0-cp36-cp36m-musllinux_1_2_ppc64le.whl (285.9 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ ppc64le

bitarray-3.1.0-cp36-cp36m-musllinux_1_2_i686.whl (261.9 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ i686

bitarray-3.1.0-cp36-cp36m-musllinux_1_2_aarch64.whl (270.2 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.2+ ARM64

bitarray-3.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (277.2 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

bitarray-3.1.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (292.5 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ s390x

bitarray-3.1.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (292.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ppc64le

bitarray-3.1.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (276.3 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ ARM64

bitarray-3.1.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (266.9 kB view details)

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

bitarray-3.1.0-cp36-cp36m-macosx_10_9_x86_64.whl (122.9 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for bitarray-3.1.0.tar.gz
Algorithm Hash digest
SHA256 71757171a45eac58782861c49137ba3bed0da489155311857f69f4e9baf81fa4
MD5 b00432728486dd17f6d288cca3cecbcf
BLAKE2b-256 33331cacd69541f57649a55db29dbdaae8c93a2e64583388363aa3c62dc1b5c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 729ede2a88c0b379080606f2dd6ff4b4fc1798683f1fb244d79e929b298784c4
MD5 178aa79bf6c8c35a1c2efdf1882150d7
BLAKE2b-256 1855e8bff6b5051dbc0aa828c7ad45226b3af6e4c3533fd0ced4d31f0c5dc261

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea7319e68ad1cb081dd7d1b2fe1242c12fe8f9ee3c78812db010b18e9753f7bb
MD5 3f85316b75b607b8c88352e7562df780
BLAKE2b-256 69e6b50c534831f8104c0c705d7ab6aa6ea8c9facb09462b6ac86ffb24069fc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ea7791224248fe8ad6f5533877f94850b5636cf957f245a2f4854da21d0be766
MD5 9c5ca64d82f4bf75787561e01a70e6df
BLAKE2b-256 d2bac6551403d7e31c886dd2d225127ed12773dae1c9b9ea544c7479c5dd9ab2

See more details on using hashes here.

File details

Details for the file bitarray-3.1.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.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3aab1395cd4a23b1815f87120e59e1a66a5f3e92cbe42e4653b9fae1320e0eeb
MD5 3a88c42998c070e5e19f12b8c0d51a76
BLAKE2b-256 aad25d86e4fac05e24044df512079e8b5245108abc45a4a3387c7c2d4c5b74c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dde6268797d6e3f0639b1a5048eee5e42aa63fd00c4477741f9a5b1720f1aa8f
MD5 e8c8d6f25802efb9942e197ab446b3c9
BLAKE2b-256 9971f7bad2f64e19f9b22ed4ffa6557a72d49accc93567dd11f689a216047ed5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c0790bbbe08b141d6a93061e68d1954c86374ca4982e5586becdf7dc0d61e95c
MD5 6b2db26fec15076f4ad3c966ad8d1e66
BLAKE2b-256 0762049a0e18fae8b642c8a7ab7fd735b8193cad5910598ada525ef259f27639

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 244897669375d345fe67cd5c0701ec5ea81991a9193fa8cfa4bcb55277375eff
MD5 54e719e699ae951844d26e2b93457c2a
BLAKE2b-256 ee956f0b733f2d229d08a49fa15cf72d3259f9736f0012e7a52361ccef71266b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c64123ae24065478a17d2c6ed08e7e9ea6131be054326a01c9b13f5e36ac1a95
MD5 be1eac27533b3edfe6b416b1eb08b728
BLAKE2b-256 473970e75f771c9c705350ee273b83911aeb0545c278abf3f0059dec2b92dc6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 868e0a4fc33333b9cfaa9a0c6b847ce64e7d2064162c2183608244a649487d0a
MD5 d52235ad22fc3559b563ff131e36bfed
BLAKE2b-256 2cc8c849549f8ffcbe4cdd82cb87d3d3f1a5b962d118484b328ce4a3172f5b6f

See more details on using hashes here.

File details

Details for the file bitarray-3.1.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.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6dcceb74c288777e86dbf2497e0bfc444aecf1e710e8a030ea4dba13600ac066
MD5 2123c19566dbffc3c58a5b771525b0da
BLAKE2b-256 53790da3a20ccde49449537659d8e8a3f8e3dc0db0a49e484996552ec93b2357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d6ef7906263c12a27361ec06e89180a01f8ac57ffa0e1cdf7953948505fea4e
MD5 5d7276c737b3cd6a1866b64fde976546
BLAKE2b-256 f9dfd5cc8202a6c3ca6cae4bfdbe59cac50e9f999993382f96ac47691d64751e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4653e4cab6001a97c6689a4bfe3517128a74656eaa5df22f6ce01fd9b264db30
MD5 32fffc5bab174441fb4bdaef1aa55c72
BLAKE2b-256 2f6e10dd09f3104c86064664e56d0141da21d8a4c0857f101dfd6163d8b1180b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 41282599c51e26bc491a3d1471a785a0158c529a2e99757a353a708a9df66655
MD5 46d57131f9d02411ce33453de5bf1b03
BLAKE2b-256 2116404af7a5c7593c4a0c718902fe0276dc56d9ead60326d385cc2c9645b457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 984803aa15421f3bade7c05fd44ab6acdcebe16b646f3201f5ccf1a111ba7661
MD5 38d640f58216e1c324b4ea2b0c1c34a5
BLAKE2b-256 a7c9a66d4707b1efd506bb7b584af8239af8a1825ad0f72796b197855c1ca24e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 44b93406e302f1077c9b4c4b990a40a7afbebab66e4579dce2b06d7f55d8e7c7
MD5 a75eab224c98c754877c0559962265cd
BLAKE2b-256 1a5692bfea6b693c9a195d0e73a4351bfad2173e39c7f8f38fb3e97cd90e9e33

See more details on using hashes here.

File details

Details for the file bitarray-3.1.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.1.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d39a36b6b95889a4cbc1d3083053cebe3315c13ff9a8760c14a3fe9cd8a102b1
MD5 6b5e8b8ad931506c20706b00cadbfcbe
BLAKE2b-256 76bf548a43943e7afa7d7beae1fbc233adbc1bfbc35107fcf1ae363d09cbec74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b9fe9c40c13c0c796bee8d6416185c59f270eb9d22dfb7f6b1cadd0d8be3b4c8
MD5 d06fab34ae24672bfb3bbd014d43b18b
BLAKE2b-256 8e4f70bd265b0f9781e758aa310e51486235e7c7a902c9855eef52b094d3a8fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7eb06912a72f5728864808a68abc1e247bc24c9983a1f3e400f9954245715fac
MD5 cf5bdc6d2bc34df5252f5735515cb37b
BLAKE2b-256 735e6bec06241256952022667353b67569325611b1861b14bf4513ae145f737f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 37901e3b417ae482858c29be7b963ef1e6cf0ac16f03f4852295aee1aa77ac18
MD5 28da05fe185c4ec205369ae85c5baeaf
BLAKE2b-256 752600f7d0f3c7be84725c977ef9426b6a0a24961d05bf018877f2d7777940a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ba0aede899cd78952977db93cf24f5845163efbe85e4220de95298976d3c54b
MD5 7721391cd5ee72d4365c8cac8fcc04ca
BLAKE2b-256 7b011a07690d0397acb1e1513c812d9a7dc50f6df000b0970947bbf5333206f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 19f7b08cabfeed0190fbfcf7aad2cd71bb6934f319bd9f195b138616ebc56edf
MD5 d94fac757aaa55fb041e8fc1cfdfe24e
BLAKE2b-256 f08f3b6548b617ea5c1abf804f43eae7d2b8fae4e4776ec8027c60beac5bd1d6

See more details on using hashes here.

File details

Details for the file bitarray-3.1.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.1.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6370b01839750fcb3aea8639344fb3898f73dac42abe344bc5e39669b93fe110
MD5 4317a3c1d95acc6f60c6fe93ad70362c
BLAKE2b-256 3dc396ef9a1e612ecb3299df3c937533aba930e009fa9d38f285093b07c9433d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fe0998dfa82776c17c262b20c2ff735f310aed4c85dcc2614ed389815a6bb4ef
MD5 3eddabb24296916f84e475d72c4f6cf8
BLAKE2b-256 56b4ed46278438ff8bca240a89f699151b5de53657c2b4015697d36eee951749

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-3.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 34d75765b5c558e7bffa247493412831c6edb5c40e639a6ac94999bc6f40a6c8
MD5 c32878c65a6a8345199bc27950eeb82b
BLAKE2b-256 c183e2ced9b9d289c6d97bc756c7e5c7773d2d9791f6ac26b0a49f25eaa85068

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-3.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 69721fef0427a7f56ed7eef16ff9ddec96c64cee4d7abb5e7511c9aedebafc0f
MD5 1e1dbbc0351e352d3086cc86d9328e26
BLAKE2b-256 560637c3b60e6a0da03cba7a437e6b8143affe8c6ba9c44345f6635d8ebb7620

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5efdb6403d206068d434caf9deb7ab936732c06e5617a63e213c94ac750303f4
MD5 202ce66095f3ab43bb482480fa102133
BLAKE2b-256 bfd9af8af3a7cd1d4543a4d097b2e2f55ae959ba2c70311c30a4330266165c00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 7e3ade382c9a5d5d77635041dd2aaa4e59326c8f62e1fb33ce28ddaeaa6ae7b6
MD5 9224d0ed473bf084967eed0ea1eacfec
BLAKE2b-256 74a641092e6a2bf2f05e971dd609999312da2cf0a1b03f6839a366a45d4550c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 139115998ffcffd8b883e1f21ced6f1d96947c5ace51f9656ceccedea5765557
MD5 b68d276b32bd3d0737701ab83ad11212
BLAKE2b-256 8b1a460b993d20088917661b14f3c32f2036b332c281a57f89d73e33918de541

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7c228c78bd20f2a46a2f3f2e349292c604ae26210dad56afe4b64ea65f72db75
MD5 07b510eb6c37b012b9d78237dedc0f46
BLAKE2b-256 d6235061657b3cff855dcd9d273e9edf39dfe68e9de3fd61036ef30b2dc70410

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 afb4d8876fff11cced4377f055498fd3c179e6e2bf7165fd055dabc494005252
MD5 9eefabb5ca4210462b6d994accbfbea7
BLAKE2b-256 1563ae160f4fe8bcf46c4ed057d277ad6e03532f50583599fc74b80f3d1c347d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e8c319f77118bac6aded58a0d2f172ac1b06e00bfa5391033848864e39bfd771
MD5 2675c6156209e563be56b76c32390956
BLAKE2b-256 bd9f7b8edbf10d1fadf6df73ba668cb49d1626c464e85484a40b42b389ebc2f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 91e9309912700ab085cf78d162ad0bf0d3de35e5e084868400672b4ce3befbb0
MD5 a57123ba49e7cd9f3227a27b9ca7110b
BLAKE2b-256 7468080243639c2dabaa100a7b6e539c6f6719186b0de312aa575e77a6502f4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1221d5d1255a74397f938ff822d8df4b0cc416b74e5659d21c3fe5f3d06590a1
MD5 b641a24c52c5b3a241059eb1fed85f7e
BLAKE2b-256 c5744352988907e5a2cb846fb12e57ad336855a81e78665cdec6072fd0a385cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 577a1ffc6318cdcbf91e8492596004bb1572ce3c703aa42c16c8ac1188625b8d
MD5 7a7b965b8c63d235e64c065a5f38ceed
BLAKE2b-256 a26c4a736189e261293f50057b700176b28a135e8a75ed41ea63edaa732cd66b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 08004c22af11a234a73a8edf744524fb67e89ab4c80791f647c522687ddcb4b9
MD5 96a50abf7cd5f8ff9a2c8bdd0b40c7c9
BLAKE2b-256 1956cfa3c34f5a56e52ef91036cf26e2e6df9576e01c449414831fabd0c5eed1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2695c23b9857105631e9d4f8ebbcc8a4e55c6c9f31bc80d9e5e018e377d650d8
MD5 1600a94491ad5996bdcc110133bd0022
BLAKE2b-256 1ad02acf62614c9f502f479c4b03ac79ab17a91d3db354406b0b67839adb7ab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6ea4a888e45fdabc89705837b10030a990ec4879d14fccc3b9450ab56ca9d7ec
MD5 9e58c2963d75c35ba37b73c3eca7bd8c
BLAKE2b-256 7d2d8e9b60dcf950b6680597e4fbbbac75c8c65a109d2d91e0ce452c07ba410b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-3.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 4fed8491a77f9fa5303bf6a24a76fcafbf1b496bb22d72b213b673ef8ce6e201
MD5 f6bb634400dd4df43f2cf39da3da4621
BLAKE2b-256 cd99619f92fa9fa037f36394f7c7f28827d632bed5eb1bfb83a246cdee1bbfc3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-3.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 598072dbe456cc57270c6f34fa6b9aafd56bb5291e0d14f8509c1522f6d77f32
MD5 959d0b6b4ef6740aacb480e7f59e9b12
BLAKE2b-256 cc65ec5f63c32a49155ac6080e40a0e0d94ee64777701bc399010d67b62a4af9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f8fab5053ff281954718dc56c44ee7d1462ccc7e296b84da504b72b01c6c0c41
MD5 8d07400e72c565b88e15cc23b9371066
BLAKE2b-256 23ede9c759617b4765444cfa9678d6a10d6eb22f9c970c6c6a691d047b6937ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 d4277999453fa63e96ed8a31698c9ac64ee5f38bd5c63205d69d9b73780fa152
MD5 d87f5e4e0c902dd2ae7d7961bc5038bf
BLAKE2b-256 391b0cd00721f0db83575db77b0be7dc6dba4542e33d7dd7d929a836a6ad4705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 430302c3ca7ed0dbb629db87e24a3be082851d71777787d4c8ad424624363780
MD5 101adb35cb7b32295cabebc7b3a570ba
BLAKE2b-256 d081cae2db147b124e11479639edf7ddc35ba3ddea42369906a58bba9cde2ea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ffb6b3a6efdabe6a4f3042b16a68499711a7835e950847a5643f60a43de3335f
MD5 891b38a0051f5a2ec8eb0e4bbbf168ca
BLAKE2b-256 1a10c4fe19255336574c19fa2fc85f1b8dd7f22670fd424c142d43ad07e360d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54a6a8525bc66228ed9cc69d562979319ef151dba2ed302bf7a21c7e124c137b
MD5 e5878929dfd1b8fa9a96363f1fc25a1d
BLAKE2b-256 5b7bb93fde3d9fbd542e4eefdc0b269d73374c5ba1ff4d0bde2aea262f0166c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dcd15f43e846bfdaac8e5420006eba2d6adce29b6336492cf9d651e4a313ea86
MD5 9d5d4338e46d561bf72bb909624e9b17
BLAKE2b-256 5be6f07e7098fda874d1dcd19d06663dbc22ea63567d85623a904d3127d458d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3807c38b37a500583eafd4ae866d2a051834acd4e11cd8557af9cf5379fa7e21
MD5 81bb32c1b02d33e186f9fac4aea318dd
BLAKE2b-256 77a4bc83b3407b0ca3ce451788322a51b3b071701145158a69bdad273624cdd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2db21d733e06d0d5b86fd3c848a84b8930e71250542aa7602e2c048b96fce163
MD5 f02d047fd070ce037ea5ef2905105589
BLAKE2b-256 fea07cc3a299f3afb752b0a5ee31c9ed2a201f1972110036fe589dd66928c3c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b6bfe0a618301f0afed9004b8230a413ad399b58fef50a744a623461b96d8e3
MD5 2b04bb1ef74512af26e0bbde895a5588
BLAKE2b-256 71754febe1ee16e3fecd8f29fdab2911233f956cc09d40b6238ec626dec3bbfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 fc2266e15f02d3192d1c2d29a790a4eccb230e23de0de6136815b32f9cdd5b4d
MD5 8ba44b15393e3b5f89beef8e6e70470a
BLAKE2b-256 2ce4c5e564076e74b21ddc7223b00258c38d56302e08b74569865b186e8bfceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9211fb3a109ba76cb8bd0f76645d256f8a46e733693de22d0d7857941603cee
MD5 3890cb43e5cd1884bacc86a21b99b3b1
BLAKE2b-256 5f028bf64399507ec94422635b621eeea00a649413988fc19ae54ce54f3a239f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4c298fefda9dfe2ef24aee8fe48acc3a1a063b266791a814330c6932248785c4
MD5 00409e842102416ef5e166e3b3ab1b14
BLAKE2b-256 5cd34be50f727dd2786dd545030fd6cb16ba678405ef147d647a8d89d7a673c1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-3.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b2f8aed62de760be852e0dee0ad507e0fe17fc12f83b36cc0bfe4900e0a0e915
MD5 1ddc7e842d3ed97f76787b25b58fb115
BLAKE2b-256 c327fce9e948da179d8329192fca1e431b2211c14dd18c21529fc30254bae2c2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-3.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 7ff061c714ff62357ff3be23d96c73944ad9181b8b21d49c29ed82fb2fb0efa4
MD5 f4c1e345e24eb5dfb404d855666aa550
BLAKE2b-256 163a11b27412dc829b08ceb7773ea730ad5cccc311b7268557bbedb861ec7754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68bab51a827abc6f037ea76bb374ec28804a47b51716f9eb3f7da3d754bc8431
MD5 fe7ba4cc3327e3185350b593f808c631
BLAKE2b-256 d8c54bd5f3b051f439d8fd612f40b83ae6f7dbd6d408de98a5885c6b4a181882

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5255fb9e4e4879adea5fb61cbde347767d346e29822a51ca21816f28340f4cdb
MD5 5786a3a0aed1fd6ccb657c5546cb9181
BLAKE2b-256 1e2dbc2db4c27d7de4bb60420a1a2204e93695378e9c7ae2ed50c6bed1de23ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 e43a96b9b63348d9e5cca70fc31b5d0f07a420a70ef89b376aa4148b87d24b39
MD5 ab1d75c81a04a6cd1fc5ac72198e8e7a
BLAKE2b-256 1768741b59febef912876c0f95c450eb842c7138cd067e24ca4ff459265d82ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f238c2eb7a0a6a50537e5d182edb629901af94746854108483f0b11b0e3d1a78
MD5 ecda9f0599c06bd33c878875ef67bcc1
BLAKE2b-256 6b3bc9f75c3fccbf384f6ffc5e40316226f131280d9f21d6678de1bfc934a5d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1303604e4069699cef3e969f31d6c3e8e5a0bc637569d90b3647469eff91dc7b
MD5 90704210fb9a30e2bc0b3a464f607005
BLAKE2b-256 511201b3f08b73e472d3bf1ec015bd5c5e02b7f21fc2f63aff0d278cdc827401

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 769184a57abfdfc24c37bb5d0f3836ffe65c7c5cdbeec431766520cd246a27c6
MD5 2cba27dd796718518382ba2939e463b8
BLAKE2b-256 108c9398986e210be15ae0bb4f1c5f392e9c4d058dfbe9c89b4eac0a23fee74a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9bcaa1764d0d302050a31b0f6879ea20e3900b2e73b4ea647ab570950c2062b
MD5 6ff47a9b4309b11ed5393d47e38ead09
BLAKE2b-256 63cc74a8dfc7070baf508fb4285d01c2726e6981297b3952c6d96d682caf366a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2c57a4e8f0d9eb5cef7c83c8a4fd8bf06c35d641fc3cb24bf9511adb54e2d8a
MD5 e83bc5d37bb089a8b2fffa25454a082b
BLAKE2b-256 779116d437a8d31b75c62cbf3f404af0385b8631ef980dfb3df38b4ddb1df33b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37a9559ab050618902f8b8055c5b0b78dfc2a7974656fddee26b033ec56945f7
MD5 ce5be5dc6936ddff6df35498130bbddf
BLAKE2b-256 a164aed159110569362af829d5dcd9b65517d720e762dfc233cc833e1b10b3b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8f247387bb58b8c626088be2fa4ca5869fb12638b45acd29fab21aee48529560
MD5 a443a54668ad43ec1ae8f368ab7846b0
BLAKE2b-256 9da5ee6730aa5bb323d0e7530f55dd63fb59e160cc4a4c0edbac4eebc6497ece

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92d8130efa6bebd4903b70f6d98832aabbd78c1031bc64c7c9d4e39b9db3bfa6
MD5 28ab6525d5912ec0e683409354fd7f8a
BLAKE2b-256 2aec41d9ddfc5375118d07b721c3a50eddd2c0dd1ad0693865075e470c3d3b12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a1cb97bdc51e3db8def039607ca42d12c6e55fb134a8d211cca2fcf0a7b3a986
MD5 e4250187fdc058a9bd8d49528c9c4cce
BLAKE2b-256 c151503136a07a44b03b279c8e06823bdae7d2147b2512700c4d7129c786e67e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-3.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 453395201790f16b22092c25bed6ecf3bafee7f36db840d4cfc07cd9b6f9628f
MD5 d2d7edf7cc5757fa62a08e5c5cf5b66a
BLAKE2b-256 6fd4e06bc3f9ac7fd216330c73f2094a79163bb34b507f3c963ef39b9eaf288c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-3.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e092a5c4cc9ae6bc757bc1fee8894cd0275f0a0689c8f57555b00e198cdbcecc
MD5 cd0d3caa38b687665e40f20b4af35670
BLAKE2b-256 ffff57f32626f7824206b3a1a836b3b4dd6eb6254e5b531925006c980f41dade

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c58cbd0cc9f6347fffa36a6870fac695cd6e98c39fcfd8002d44a70fba03cd8c
MD5 e196d83b350e13a3df951fbe87228ed8
BLAKE2b-256 6c77fe27654c1ecf19625b0a914b3586c363f1f87226a03e57b2fe4a8134614a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 4deac3da54c3df136d6615a2410d5a6170353b4d08142273266296c376fb1889
MD5 cbff3a19314d390a5626ea5afbffb993
BLAKE2b-256 40c4c8554f431cc0f620085e20282b2327c4f341b19054c4b3f0e938e37624c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 43ec740770723de6c99f0a858807ef905664f31cf254e0b803f3dd2797537d7a
MD5 977fec62950dc67e42e7bad7338e24e3
BLAKE2b-256 4080e74a41e90a57b156e33818c6699d5234fb5929ffbc648756b625c7155bb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 506df7b12e1380f56cfa20b9c203518afe585f0b86e850a96e3691cf0175e4c0
MD5 c1bcdb1803f721c4c9ba61de62eba7b1
BLAKE2b-256 d9fb112397a57fba6c55bc42e4595eef2c46672af39651e3d80c84cac225506a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b81bbefe9d205af66a15a3097f8b66f29fe767fa9cb5dd5a7881f53d2505c2d5
MD5 95b03c9154727b76ec38b910d6f170d8
BLAKE2b-256 0e2cb4474666b8be94d196ce15c840bbc284b6886bd7d0763bd565e447bd2b2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7cb6c270c49d6779af97586a955977493146626ae34710a4c1ec84cb0115f4d4
MD5 099badceb3dd63bfcdebf4e972335b60
BLAKE2b-256 5276634cb3ed8161ec5bbbd33093cc2e9f3a6a7b645a130eba7ba8835e73fc5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eabaee3c7d411f6ed48f92752e61a409530a0ebf65498bd408432800a804e0b8
MD5 066116175be8b50b73619563599cfdd9
BLAKE2b-256 dd147a7db155c915b492475897a843a098cdd8351205aec16c305ddf06cc7eab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3f4be402e7c611a0a7048f3d042b9e4d697ca6f721d08098118d1ae8bb8a69c
MD5 69a0ec68f1c1b2b36edcea555f0b36ff
BLAKE2b-256 9723782f6b3d5556b64a7b1a4d9a9fc689431571014f83ad51093cc9a14fca8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84de57891a80944e259956fd72bd542290b76c063182f0e85ce5380c49cfcfb6
MD5 fed4ea3ae00295b97bcf3d7fc0f749b6
BLAKE2b-256 618ba5a1c35bcf24e2c3ae678e8f34284e998ade61e80d93c09d879516481ca0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 481a00d710c7811b38563f6fe22da20be2e6f722196f68873e12d23f4fdf82c1
MD5 f34fd7171929ca26c20ef1d3ea376266
BLAKE2b-256 63f2109a6ce801eb2346db8e60e04a194fc86b402daf1c0c9cfa3c605669f7e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0dc0f28340929fffa17fbd3eca5bfae5c1827f3000c0bd9312999d8c5b1464a0
MD5 d61f9b814569f066201ba5e242171f79
BLAKE2b-256 0165a6cbeb1b0b03c6bcf291122d102cd793a81544bbf2f2e480b76983e1ea35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3c1fad6456993f604726dcb21d1f003430988d5138f858d79e5b8682f56dfad6
MD5 2ea1a9b4750835429ad09cc3ca78a696
BLAKE2b-256 21299cfda55fff2447d1469461f4d2361d02e14fc14f330f98ef9816f6c7931f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-3.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7c96ecf342bf6093523477cf1eacd958df5206564aef347d3d2d8d4541a1c6a0
MD5 f0a273aad38ebfc67a53bab7bb736891
BLAKE2b-256 383d3a1625955af7c6333524546106d09952c5a1ba67c0c1ca03c2373c6ecf57

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-3.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 df4ea0d3035298716550b20396d831bc5871efbba7f9cc8e84eabd0906c0163e
MD5 78f3b452542dc5aa4b9fc11e4755650a
BLAKE2b-256 181cd59326237d893cb7caa0eae3a4e5dcd4a271384f1bdd568286dfb0736b87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e47bee13f43dfc5c5c3661e70b350a5dd37f62f25e196c9a20f504ca02774ac6
MD5 9953d14038a2dc169533758665fb22ff
BLAKE2b-256 42cc46e94426b0f5f796d0cf916d5ccf367e1b9380162ca9ead114b0e63449e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 56fac415c19689b327f22ca6c02ffa908009f21aab931230d292d5239de40094
MD5 d5dd0a50c86d1cda40f2d3168d81aac0
BLAKE2b-256 9bbd44bf50b4bbb5ee6218f0fcbe000a309be5074a73a195c0057556f718224e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 56ce6219922715fa8f9c65a40a504d4a5e64504ed7c4f3fac64071117559ef33
MD5 84fe05293da12c55700049cef58ee453
BLAKE2b-256 8f0002029345e6aa4b3045e24dd3862474193b8ed8c40440d1e84aeead75b72d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 86544ffdf8d0cb7271acb5c3a560f4c7850f4c11057cc9c9acdadbea125aa68a
MD5 487c080d760490dd4fc7e126f540374f
BLAKE2b-256 64bfc9df1277644f949750df59562678cf9914a397926a69eb0fe622f64ea83d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab0063f8264cae001fc24238bf8b90a424be25b952951b749b647fd615011428
MD5 b1312dfae81266164f88fcf51717aa1d
BLAKE2b-256 b7d06ba5adf02eeefd3304fe2321c62adc4c4cc0f47494d4c8fba82b16160971

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19c3a7f80b286bd4df0fcbddbe97fd8b48028c0497678ee1f0bab820978295bd
MD5 c4f980f05b9104d53c7b25fa63ea9663
BLAKE2b-256 a97afc475df66fce42b0bc2c0a3d7d5a525e36c13a2683aaa54bc45420fc6e02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9d6e940dfefe604ecbd77849b107319c73f51dfb24ae18c80710dad9bdb59244
MD5 7fcf53175d30cb203c77ee8bfa6f65d6
BLAKE2b-256 2760a606fd750f85c8ecc91802835ed5aa7474572c25e4cff991fce6e33bdd2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 39f32b9c1b03f2c2cec002513ef91a9818cf85e8da94069e430d71256c0b858c
MD5 6aa24fdf2cf49ac0dc27b6c6aad545e9
BLAKE2b-256 bb390903141f1b95b5abaaa9c82c7ed341e9180bddd4b8666ce9cfae52eadbb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff398a6850da105e5cf13e4297f1bd181d90c16a4db9ce20e0608e1edf9c81b0
MD5 813e7bcad8f603a3a1e998ca8689e103
BLAKE2b-256 abb34c4ff9e3bb640ce39ad3dc19b0c685ac1a98cae0682226b817f3bd3d78ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 47b6cbbecd24d3b943cef3e704dbf9b510dec310251e1c279d10105cb40a33d8
MD5 2b70eb46b30e62c7771cdaab6b422ad8
BLAKE2b-256 4fa2e7db41e98e1f003561e2cf941cfab67569db27538f82ac53ed7969cb6f5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c609504ce985754867a91db78fb1d5110df589447233badb5a1d453fb2e1714
MD5 8a15e20c9a8b41e26eb1821dd0d21df1
BLAKE2b-256 ccf9e32f0537be6686ba34433af05b0cf9a74f4c72adf409ba8f781af5c021d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6fdd73f8f563b1f0d106c09949bd90b1104464b5cd148c02b7dae4e3efdb1dcd
MD5 0ca2093d87ac7f0fa869b3f943c07b79
BLAKE2b-256 4c46542cf5cac4d9377120d89976622edd1dfeb32d7ca54b9bdd34a3eb1777fc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-3.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 40c3f234b515aa8cfce0adc1df2b9c3b45e4307f8b756c9f3069cbc3effb5acb
MD5 f545289a14910e7aedd383a72e02e31b
BLAKE2b-256 c182f62bc68a6a42a89a66456aa657ae3bea3349d8af3448e5783f9da0b09a4d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-3.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 515d954219d9b81b6442ab270cb8142100f32eac06f00f0c588da6c1416c9a1f
MD5 171f904f3c833c2d6b79d8c8aed38b5b
BLAKE2b-256 df9b35e2f09a5e41f53ae29f8bcb4fcf2f6e2987559bc1fcb7353dc8f37e7d2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 491d5c5b34b00c971be98b36736e090c847b0e2904a1b097a32bb02226fb11ba
MD5 72ae515e422b9bfccb07abe3d2064233
BLAKE2b-256 d0878c6dc8a3f661777665c01d7326991435abb6b7f431e4e089508d67697ba1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 5b90b46cc73fc2db871985ae93132c7945f264aea6000348a124ba84b48af980
MD5 fe40f41bc451de15fb1a2ecfd1fbd8b1
BLAKE2b-256 6f5380221e8521e5f1688eae5e236b8258e31eaefff5c8237ed093f9b0f92664

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 752e2de8b0094d56a6e98516609f4d2b9a2027d1a9038de3f021a7d1d13d0599
MD5 0ebbb40478efa48e50a136a8381629fe
BLAKE2b-256 2ad5b7182d00304923c78ed5d32519bad1d5d3f604de87f2d42d88b379c4c6fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b57959f7538b93cb058aa8c467cfd8b82c0af88a2168a4f382ff77e3a90274ee
MD5 ff7f4aeb6dc01f4cda94e86fc9c0c8a0
BLAKE2b-256 157267ed3e6fd06411a9ce7041f328436472aa845187e3d2bf2459e11e323cae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d49b0748e9aa0b3bcec4074675405d6a1b19288fb0e8ad8bc6db95c66840747
MD5 9a8a95f8d09cab1fa16d74708587b764
BLAKE2b-256 fcf5dc6c234166dd89907b9a3080eb4ac34300f201ed48b970179d2bd2269082

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a0a9c6a9fe679cd48204c719329de0ce72dede6f8e862744adcaf85b1d0c4c6
MD5 170ec2c0461c40a16c67280ab88db260
BLAKE2b-256 7b2aa197d9e1d1555d6fd855691e2e9cdfe83a5095d91f11464a9a6531edbd24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d5eb9d2389c76469c4f10d636a79bcd13142d863a5d07a962738ae55fa60dfa
MD5 36bebc43b2bed4369bf852ebc76c84fe
BLAKE2b-256 7ec91ad625f4f335518685fe7b669fb13f9b1da4b1e19e4468a69650ab9330ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 798a71af5e1cded785dabc2f03bf65cd021a7e0ea54d8874a49cbb64669694e2
MD5 d5307bbe1f2135fde9b38518b698d33b
BLAKE2b-256 a333dab6fa32f3b78ae5b0e551231254275b0172e2b828f4a8022e5f00d7dcd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cfef13ba01363e185f3c7ffd8dc84c109a2be7da4d035b289c8f8a94b02c8183
MD5 331420329830d3dccf528c56b628d44d
BLAKE2b-256 ff5e078175e6ef6db7568f17eb570dd4275b3b86d65fa0cc4550f4ab62b75b86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a97cb1a6cf3538ecda5ce537111f246f468919ca38ff6cfe188f99ee3353c8f2
MD5 f7bead3d7c99063615492655ef902072
BLAKE2b-256 d7ebef7d4cf81d6fdfcaa954a840be0db869a0c625f9d937576cd39dc786c12a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03ae745110d4e343d78f5c3836058d510222b17469b1eb64362cdba7cbdfa26a
MD5 3988e2ed67fbf7739d029ba1455690f4
BLAKE2b-256 b2de9dbad2e9119d172182d76c2171af51c3258d06dba59d065629298a9e1d00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 34dd123c69a7f8520c20b45351df1d169429b9e636425c3c8278fdde80151fe6
MD5 d39f782227609ed85f0388bfecf0367a
BLAKE2b-256 779a399ab13bfd0d15f5ef055d1693c59c2458d5f16edf0430b8197db8517f3e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-3.1.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 4cbbe82edbe2f93f2598042d208caa87969025537ddce34cf647e4da6c4f6af4
MD5 64795362c752970fce328d91bb54f7c6
BLAKE2b-256 20e74ccdd642342186c89fd60f4ee49303c4dccee56eb6fe15a068422a62f055

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-3.1.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 90b714bc59a9dd11d1bba0d68dd395a3e51f275c8547e9b68af561763a61196e
MD5 527a3398f6fb30fe422b93870187ca51
BLAKE2b-256 5b9528cbbdc3ad711454252f19e12996ac1d80ae70707d4f8c4751bb027f77d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c467bf00939b162144862d167dd55a651e44c256805f25e44edbd547fc0b0922
MD5 adcc4873a6497a21c169a8dd22446bff
BLAKE2b-256 c009e1d7729369fdfd620dc6af597659ee930b255c484175254c9eca34ed9275

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp37-cp37m-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 9ce0f80904644ddbdad42eb1eb3945c19bc274b8b0e0844c7f7b9effafd279d0
MD5 2174dd29a8baf5d3d34681aa31fe3b90
BLAKE2b-256 724408d214b9a85cfa06b1f6a423604577c09f7c4d507271c421ef5148742f20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp37-cp37m-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ce05239a8422ca3ebb1f00cf3577a1d255f07f7dd4c2ab20e8e009da393b86f3
MD5 1ca80eb81df5b51bbfd6b5cd00d7fe65
BLAKE2b-256 ae053e9c4d4c01e4c2087dba93c17ef1f0127c96ea75cbb065e219f09f9a2b98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f4c28344774fadb554489f3a8c7a9c75237a85996a8a6d5d91ffa781bdd7b1ff
MD5 8db620043afc6f47def054a28dbe4d59
BLAKE2b-256 114bc4c8e1b4989f877599b7177636fa9fd4908d33150d4ec61930513cb0a3e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp37-cp37m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 226297bb0a9f6636c3b74cfa39a1feec7fbd26c6b59fd9d5b78c4066a87aa571
MD5 44f17e6b117d998fe6c36ff084855593
BLAKE2b-256 2ddae4aa196a0f2e756bdf304f554b13bee659c70e219d26ae7cbffc458fe5af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2225ce0383a2e6950865f178513d8939c89782e909cbcfe4dd7c4f572b1e5a1
MD5 7b0faceb98805d9d323552f1d5ce362a
BLAKE2b-256 f543560624804f5dc286d1fbc4e7dd2f89b943a0db73f45a82dc8295cd6b3b10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 93cb9b8e2cda9006d489bfa8e7f4fe5680860b6ff45fa9081a6554a9e661fa97
MD5 5327aaceb582fafe949d0e1fe0d68080
BLAKE2b-256 23bc85e11ebacc0cd29955bc8a3222eee56bff21c677e1259cd6d7cfbe5de73a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f90b57ea9aa9c6159c4a9110e8f787194583ede08b6ff5a6ea36c17b8973b75
MD5 8e916333c90a5c761f85e553e3e729c9
BLAKE2b-256 5de561289a6a771de97b633ffb4d5d751eb798402ef27372b097dcb169636865

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 638026c90fb135f0014a47bc5e9d5ed8acff8bbc3283f05e811e9f84a1f32a0e
MD5 f3a61a5c395f1170a9f494ea3a2f209f
BLAKE2b-256 87f66dc38b0ccc13d33f013d234f220dd37d0ec4b8ec84670e0c543424f49482

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bf22a95774a3d04200605bef8f436867df3ec87a13033fc482cce7ce17f62644
MD5 50b1c6337e2004efff5731acff0afd14
BLAKE2b-256 d0b07737e27ad16f9f1b02bc4a25aa4804d4a1c7ede1650f7cd144d0bf1ce866

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 756da43ac44b1cbf576a02b3e9710fa24f14823b38df95868ea8a3fea840c725
MD5 c1145c3bd0b774dc7f92336f4f183bd8
BLAKE2b-256 9da6b1eebc42913415c6b91e038fe369d16046d7b1fe059bd11ac4f6b5abddc3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-3.1.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a394cfcd6d9f7fac71429df8e8c4b93b1f0db3ef7a06eb84d9f69d901b862ee4
MD5 ad4b73b67c0e4d5cd08b592f40601087
BLAKE2b-256 949c4665c4526918501b50669e333cee9ff3cb0959c1aa77cefea8bb1fac04b4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-3.1.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 f78e2a4fd88b6fa383f44ca866cf6b5e1c0370de7ace7a0b4af7b3f11d806558
MD5 5b89974057c015fda6d5015f7a860514
BLAKE2b-256 4866d56fcccde862b63ab55fe4689ccbbbc4b74de0368d8572dc3919f9163a8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp36-cp36m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37d8da058472b2fedd27903781d5ea27264cde11dcb81a3237724427de83f241
MD5 84cc8c331b406085398b79bc8ba863cd
BLAKE2b-256 bc0715408f6142e1d4753b2ac07ace76a4eaf4bca97060496759474140afd499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp36-cp36m-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ccd384e435d9c540c7e54c9149abbf462691e8a6c9287448d44da9f22230e09b
MD5 75bd169541169119fb5d85008f08b201
BLAKE2b-256 dc37d118175a22552356d0c517b26b004098a6dd472caba471e5e151d9861d61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp36-cp36m-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 72b0f7cbc5c0bf008fde06b7777474a942cc0aa9c743dafc583a1dc430a07122
MD5 e410e21bee9a5fdafdb75b99ca5e5688
BLAKE2b-256 3054fd6fbb2481aa35663bb237ad384aad48f2887b69b4e8e9b2c1d480e22c53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp36-cp36m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de8ce30fb9e9d2fa063abf8f9443d7bdf77b5de52a5cffbfd007f6150e6bee96
MD5 bd50f6e095d5e595863cec00022b149a
BLAKE2b-256 b5a87168999f86f235dc0a5b87f4a4ba35b0f32bffcb31bba5a5a04f51610689

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp36-cp36m-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b380164b3b2ff5aa833ee2cf00855645308f14694546ca02beca6b9069e3c75
MD5 e5632279b4b03171d5241ee21dcd493e
BLAKE2b-256 38413e6c02a0d18423d9d965a3655ad6ddd6125f06bb56912cdb1d3cc0badfef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf4d0759d431953324de2ab251b954123bd4dfa83c990370814a88306f1ffc53
MD5 44f670aa0424d85fb3352bd17caec5ee
BLAKE2b-256 00d4a9087ad3c9fe6682a45926aff34f4ada891ccddd14427b64311e8b7a3e52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf6be47880210416d3cd2405fd9a5f28b8fd1896b77acf729024f64b4ecd2676
MD5 760e617c23925f70bc30a15302964de8
BLAKE2b-256 f8341216bb0442089733cf1a062c125888e288f1f04a3137d56a8dbc6c1ce549

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f851a69521240418fc1ab6b313ef5ef6533e451a46184077b1f5e410441c7d9a
MD5 fa3bed469fcd60ae414719b0e6276d28
BLAKE2b-256 ca91e00c9be968791156901a86c9044a4f972ad82366dbba85c848c30d39bb28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 acdac94fa2853e74503248b4079a30f3c09ab993f1b2a393fd88071824bdb0de
MD5 b05e470f4c406426ea39d941d68950ee
BLAKE2b-256 ec0ea786cd10abab11de622aea8289b174c937b38ce118ba534d65a9f32429a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a0e1e3836468b62c079a69dbbfcdb8f0abb8dc8540f5cfca48147a8178cc95ea
MD5 b613375458ef8edf7a60b2619002a26a
BLAKE2b-256 afa17b85ef4e4bd470b9e34534fd02b06f20ac81263e214b79e2aabd55774357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.1.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6b85d01d8cf30937d9f55d2029a0f7575e9b559d606e6fff17bb79c2830e0afb
MD5 7ddc853df7b5019908be6b2e7c9f5d88
BLAKE2b-256 73ab5952fdca9ccb8351447a88bf7fd7da3ee7321fab04587f1947ee28e5a017

See more details on using hashes here.

Supported by

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