Skip to main content

efficient arrays of booleans -- C extension

Project description

bitarray: efficient arrays of booleans

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

Key features

  • The bit endianness can be specified for each bitarray object, see below.

  • Sequence methods: slicing (including slice assignment and deletion), operations +, *, +=, *=, the in operator, len()

  • Bitwise operations: ~, &, |, ^, <<, >> (as well as their in-place versions &=, |=, ^=, <<=, >>=).

  • Fast methods for encoding and decoding variable bit length prefix codes.

  • Bitarray objects support the buffer protocol (both importing and exporting buffers).

  • Packing and unpacking to other binary data formats, e.g. numpy.ndarray.

  • Pickling and unpickling of bitarray objects.

  • Immutable frozenbitarray objects which are hashable

  • Sequential search

  • Type hinting

  • Extensive test suite with over 400 unittests.

  • Utility module bitarray.util:

    • conversion to and from hexadecimal strings

    • (de-) serialization

    • pretty printing

    • conversion to and from integers

    • creating Huffman codes

    • 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: 2.7.6
sys.version: 3.11.0 (main, Oct 25 2022) [Clang 14.0.4]
sys.prefix: /Users/ilan/Mini3/envs/py311
pointer size: 64 bit
sizeof(size_t): 8
sizeof(bitarrayobject): 80
__clang__ or __GNUC__ defined: 1
PY_LITTLE_ENDIAN (use word shift): 1
DEBUG: 0
.........................................................................
.........................................................................
................................................................
----------------------------------------------------------------------
Ran 468 tests in 0.460s

OK

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

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

Using the module

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

>>> from bitarray import bitarray
>>> a = bitarray()         # create empty bitarray
>>> a.append(1)
>>> a.extend([1, 0])
>>> a
bitarray('110')
>>> x = bitarray(2 ** 20)  # bitarray of length 1048576 (uninitialized)
>>> len(x)
1048576
>>> bitarray('1001 011')   # initialize from string (whitespace is ignored)
bitarray('1001011')
>>> lst = [1, 0, False, True, True]
>>> a = bitarray(lst)      # initialize from iterable
>>> a
bitarray('10011')
>>> a[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')

Bitwise operators

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

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

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

  • the length of the bitarray is never changed by any shift operation

  • blanks are filled by 0

  • negative shifts raise ValueError

  • shifts larger or equal to the length of the bitarray result in bitarrays with all values 0

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

Bit endianness

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

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

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

By default, bitarrays use big-endian representation:

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

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

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

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

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

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

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

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

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

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

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

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

Buffer protocol

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

Variable bit length prefix codes

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

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

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

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

Since symbols are not limited to being characters, it is necessary to return them as elements of a list, rather than simply returning the joined string. The above dictionary d can be efficiently constructed using the function bitarray.util.huffman_code(). I also wrote Huffman coding in Python using bitarray for more background information.

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

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

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

Frozenbitarrays

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

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

Reference

bitarray version: 2.7.6 – change log

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

The bitarray object:

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

Return a new bitarray object whose items are bits initialized from the optional initial object, and endianness. The initializer may be of the following types:

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

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

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

Optional keyword arguments:

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

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

New in version 2.3: optional buffer argument.

bitarray methods:

all() -> bool

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

any() -> bool

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

append(item, /)

Append item to the end of the bitarray.

buffer_info() -> tuple

Return a tuple containing:

  1. memory address of buffer

  2. buffer size (in bytes)

  3. bit endianness as a string

  4. number of pad bits

  5. allocated memory for the buffer (in bytes)

  6. memory is read-only

  7. buffer is imported

  8. number of buffer exports

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

For each byte in byte-range(start, stop) reverse the bit order in-place. The start and stop indices are given in terms of bytes (not bits). Also note that this method only changes the buffer; it does not change the endianness of the bitarray object.

New in version 2.2.5: optional start and stop arguments.

clear()

Remove all items from the bitarray.

New in version 1.4.

copy() -> bitarray

Return a copy of the bitarray.

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

Count the number of occurrences of value in the bitarray.

New in version 1.1.0: optional start and stop arguments.

New in version 2.3.7: optional step argument.

decode(code, /) -> list

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

encode(code, iterable, /)

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

endian() -> str

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

extend(iterable, /)

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

fill() -> int

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

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

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

New in version 2.1.

frombytes(bytes, /)

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

New in version 2.5.0: allow bytes-like argument.

fromfile(f, n=-1, /)

Extend bitarray with up to n bytes read from 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 of array>, /) -> int

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

insert(index, value, /)

Insert value into the bitarray before index.

invert(index=<all bits>, /)

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

New in version 1.5.3: optional index argument.

iterdecode(code, /) -> iterator

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

itersearch(sub_bitarray, /) -> iterator

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

pack(bytes, /)

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

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

New in version 2.5.0: allow bytes-like argument.

pop(index=-1, /) -> item

Remove and return item at index (default last). Raises IndexError if index is out of range.

remove(value, /)

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

reverse()

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

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

Searches for the given sub_bitarray in self, and return the list of start positions. The optional argument limits the number of search results to the integer specified. By default, all search results are returned.

setall(value, /)

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

sort(reverse=False)

Sort the bits in the array (in-place).

to01() -> str

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

tobytes() -> bytes

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

tofile(f, /)

Write the byte representation of the bitarray to the file object f.

tolist() -> list

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

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

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

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

bitarray data descriptors:

Data descriptors were added in version 2.6.

nbytes -> int

buffer size in bytes

padbits -> int

number of pad bits

readonly -> bool

bool indicating whether buffer is read only

Other objects:

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

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

New in version 1.1.

decodetree(code, /) -> decodetree

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

New in version 1.6.

Functions defined in the bitarray module:

bits2bytes(n, /) -> int

Return the number of bytes necessary to store n bits.

get_default_endian() -> str

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

New in version 1.3.

test(verbosity=1, repeat=1) -> TextTestResult

Run self-test, and return unittest.runner.TextTestResult object.

Functions defined in bitarray.util module:

This sub-module was added in version 1.2.

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

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

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

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

New in version 1.7.

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

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

New in version 1.8.

make_endian(bitarray, /, endian) -> bitarray

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

New in version 1.3.

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

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

New in version 2.3.0: optional start and stop arguments.

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

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

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

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

New in version 2.3.6: optional value argument.

parity(a, /) -> int

Return the parity of bitarray a. 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=16 (hexadecimal), ba2hex() will be much faster, as ba2base() does not take advantage of byte level operations. For n=32 the RFC 4648 Base32 alphabet is used, and for n=64 the standard base 64 alphabet is used.

See also: Bitarray representations

New in version 1.9.

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

Bitarray of the base n ASCII representation. Allowed values for n are 2, 4, 8, 16, 32 and 64. For n=16 (hexadecimal), hex2ba() will be much faster, as base2ba() does not take advantage of byte level operations. For n=32 the RFC 4648 Base32 alphabet is used, and for n=64 the standard base 64 alphabet is used.

See also: Bitarray representations

New in version 1.9.

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

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

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

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

serialize(bitarray, /) -> bytes

Return a serialized representation of the bitarray, which may be passed to deserialize(). It efficiently represents the bitarray object (including its 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 endianness). Note that the symbols are not limited to being strings. Symbols may may be any hashable object (such as None).

canonical_huffman(dict, /) -> tuple

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

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

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

  3. a list of symbols in canonical order

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

See also: Canonical Huffman Coding

New in version 2.5.

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

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

See also: Canonical Huffman Coding

New in version 2.5.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

bitarray-2.7.6.tar.gz (124.6 kB view details)

Uploaded Source

Built Distributions

bitarray-2.7.6-pp39-pypy39_pp73-win_amd64.whl (119.4 kB view details)

Uploaded PyPy Windows x86-64

bitarray-2.7.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (122.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bitarray-2.7.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (122.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bitarray-2.7.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (124.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

bitarray-2.7.6-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (116.2 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

bitarray-2.7.6-pp38-pypy38_pp73-win_amd64.whl (119.4 kB view details)

Uploaded PyPy Windows x86-64

bitarray-2.7.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (122.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bitarray-2.7.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (122.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bitarray-2.7.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (124.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

bitarray-2.7.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (116.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

bitarray-2.7.6-pp37-pypy37_pp73-win_amd64.whl (119.4 kB view details)

Uploaded PyPy Windows x86-64

bitarray-2.7.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (122.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

bitarray-2.7.6-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (122.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

bitarray-2.7.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (124.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

bitarray-2.7.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (116.3 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

bitarray-2.7.6-cp311-cp311-win_amd64.whl (118.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

bitarray-2.7.6-cp311-cp311-win32.whl (111.7 kB view details)

Uploaded CPython 3.11 Windows x86

bitarray-2.7.6-cp311-cp311-musllinux_1_1_x86_64.whl (310.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

bitarray-2.7.6-cp311-cp311-musllinux_1_1_s390x.whl (334.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

bitarray-2.7.6-cp311-cp311-musllinux_1_1_ppc64le.whl (328.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

bitarray-2.7.6-cp311-cp311-musllinux_1_1_i686.whl (299.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

bitarray-2.7.6-cp311-cp311-musllinux_1_1_aarch64.whl (314.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

bitarray-2.7.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (282.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

bitarray-2.7.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (301.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

bitarray-2.7.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (302.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

bitarray-2.7.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (283.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

bitarray-2.7.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (271.7 kB view details)

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

bitarray-2.7.6-cp311-cp311-macosx_11_0_arm64.whl (117.0 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

bitarray-2.7.6-cp311-cp311-macosx_10_9_x86_64.whl (119.5 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

bitarray-2.7.6-cp311-cp311-macosx_10_9_universal2.whl (165.4 kB view details)

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

bitarray-2.7.6-cp310-cp310-win_amd64.whl (118.6 kB view details)

Uploaded CPython 3.10 Windows x86-64

bitarray-2.7.6-cp310-cp310-win32.whl (111.6 kB view details)

Uploaded CPython 3.10 Windows x86

bitarray-2.7.6-cp310-cp310-musllinux_1_1_x86_64.whl (302.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

bitarray-2.7.6-cp310-cp310-musllinux_1_1_s390x.whl (326.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

bitarray-2.7.6-cp310-cp310-musllinux_1_1_ppc64le.whl (319.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

bitarray-2.7.6-cp310-cp310-musllinux_1_1_i686.whl (291.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

bitarray-2.7.6-cp310-cp310-musllinux_1_1_aarch64.whl (306.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

bitarray-2.7.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (273.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

bitarray-2.7.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (291.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

bitarray-2.7.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (293.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

bitarray-2.7.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

bitarray-2.7.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (263.2 kB view details)

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

bitarray-2.7.6-cp310-cp310-macosx_11_0_arm64.whl (116.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

bitarray-2.7.6-cp310-cp310-macosx_10_9_x86_64.whl (119.2 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

bitarray-2.7.6-cp310-cp310-macosx_10_9_universal2.whl (164.9 kB view details)

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

bitarray-2.7.6-cp39-cp39-win_amd64.whl (118.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

bitarray-2.7.6-cp39-cp39-win32.whl (111.6 kB view details)

Uploaded CPython 3.9 Windows x86

bitarray-2.7.6-cp39-cp39-musllinux_1_1_x86_64.whl (299.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

bitarray-2.7.6-cp39-cp39-musllinux_1_1_s390x.whl (323.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

bitarray-2.7.6-cp39-cp39-musllinux_1_1_ppc64le.whl (316.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

bitarray-2.7.6-cp39-cp39-musllinux_1_1_i686.whl (289.3 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

bitarray-2.7.6-cp39-cp39-musllinux_1_1_aarch64.whl (303.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

bitarray-2.7.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (270.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

bitarray-2.7.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (288.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

bitarray-2.7.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (290.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

bitarray-2.7.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (271.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

bitarray-2.7.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (261.2 kB view details)

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

bitarray-2.7.6-cp39-cp39-macosx_11_0_arm64.whl (116.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

bitarray-2.7.6-cp39-cp39-macosx_10_9_x86_64.whl (119.2 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

bitarray-2.7.6-cp39-cp39-macosx_10_9_universal2.whl (164.8 kB view details)

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

bitarray-2.7.6-cp38-cp38-win_amd64.whl (118.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

bitarray-2.7.6-cp38-cp38-win32.whl (111.8 kB view details)

Uploaded CPython 3.8 Windows x86

bitarray-2.7.6-cp38-cp38-musllinux_1_1_x86_64.whl (308.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

bitarray-2.7.6-cp38-cp38-musllinux_1_1_s390x.whl (332.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

bitarray-2.7.6-cp38-cp38-musllinux_1_1_ppc64le.whl (327.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

bitarray-2.7.6-cp38-cp38-musllinux_1_1_i686.whl (297.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

bitarray-2.7.6-cp38-cp38-musllinux_1_1_aarch64.whl (312.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

bitarray-2.7.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (272.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

bitarray-2.7.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (291.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

bitarray-2.7.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (292.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

bitarray-2.7.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (274.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

bitarray-2.7.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (263.0 kB view details)

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

bitarray-2.7.6-cp38-cp38-macosx_11_0_arm64.whl (116.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

bitarray-2.7.6-cp38-cp38-macosx_10_9_x86_64.whl (119.4 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

bitarray-2.7.6-cp38-cp38-macosx_10_9_universal2.whl (165.2 kB view details)

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

bitarray-2.7.6-cp37-cp37m-win_amd64.whl (118.7 kB view details)

Uploaded CPython 3.7m Windows x86-64

bitarray-2.7.6-cp37-cp37m-win32.whl (111.6 kB view details)

Uploaded CPython 3.7m Windows x86

bitarray-2.7.6-cp37-cp37m-musllinux_1_1_x86_64.whl (287.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

bitarray-2.7.6-cp37-cp37m-musllinux_1_1_s390x.whl (310.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

bitarray-2.7.6-cp37-cp37m-musllinux_1_1_ppc64le.whl (304.7 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

bitarray-2.7.6-cp37-cp37m-musllinux_1_1_i686.whl (278.0 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

bitarray-2.7.6-cp37-cp37m-musllinux_1_1_aarch64.whl (290.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

bitarray-2.7.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (264.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

bitarray-2.7.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (282.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

bitarray-2.7.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (283.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

bitarray-2.7.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (265.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

bitarray-2.7.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (255.5 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

bitarray-2.7.6-cp37-cp37m-macosx_10_9_x86_64.whl (119.3 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

bitarray-2.7.6-cp36-cp36m-win_amd64.whl (123.2 kB view details)

Uploaded CPython 3.6m Windows x86-64

bitarray-2.7.6-cp36-cp36m-win32.whl (114.9 kB view details)

Uploaded CPython 3.6m Windows x86

bitarray-2.7.6-cp36-cp36m-musllinux_1_1_x86_64.whl (285.8 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

bitarray-2.7.6-cp36-cp36m-musllinux_1_1_s390x.whl (308.1 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ s390x

bitarray-2.7.6-cp36-cp36m-musllinux_1_1_ppc64le.whl (302.5 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ppc64le

bitarray-2.7.6-cp36-cp36m-musllinux_1_1_i686.whl (275.8 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

bitarray-2.7.6-cp36-cp36m-musllinux_1_1_aarch64.whl (288.9 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

bitarray-2.7.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (264.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

bitarray-2.7.6-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (282.3 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

bitarray-2.7.6-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (283.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

bitarray-2.7.6-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (265.7 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

bitarray-2.7.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (255.5 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

bitarray-2.7.6-cp36-cp36m-macosx_10_9_x86_64.whl (119.2 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for bitarray-2.7.6.tar.gz
Algorithm Hash digest
SHA256 3807f9323c308bc3f9b58cbe5d04dc28f34ac32d852999334da96b42f64b5356
MD5 0970c3b65043f09b9ddc5177a401c7e3
BLAKE2b-256 2d08e6b51b0456becc0db01e969d6e1c4542094bde0a7bbb197834f94b18332a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2d6a93eb2af22deba0e6f7353a68457fa04f933d59c6a0ca420759c0527850cd
MD5 44b86aee5cd4ea573688b36eb4aaf946
BLAKE2b-256 ff8a6fadaa4b791bef0c95acd07469bd8cdb9ab9eb505b46f988036c39b6920c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 952170c03bc415719156594aed10c7b20ce7d4389551f6bc89969e23486d245c
MD5 548392eb1bcb1aa33b0a15419e878ef3
BLAKE2b-256 1988ce0fdb23e3b1fe367bb4cde13e95af26f36fc5d2bc92e03248f4e01ca0c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9439459b58ff0cd29883445662c5d80cee109c4ce5984001798bb74a31b1ac9e
MD5 14c5c64c2f39c3c8f3bc696d5d3b9d39
BLAKE2b-256 cb217cf0b3cc248e6a98ec999d97bb76eb4e01845523749a40547823d2ac5822

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8a13774c45e9f59941b374a0e489f6660fcb4d027005748036a829cfab097c14
MD5 eb2448fb154bea8fa2d8d7b1476eae45
BLAKE2b-256 b39bb095445cd50385bf3b77f09a922bb191d6452a699a98c71ae96beb2cda71

See more details on using hashes here.

File details

Details for the file bitarray-2.7.6-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-2.7.6-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 13734e42f83a7ef75c876458619e11863f1d60644c83ff9a5ce21abf2935f331
MD5 61cbf2baf5c9e960baee7549fa2b9ec1
BLAKE2b-256 2b517df9d59ec031769d49ac44de3a7dbc02ee136efef595fb7deabb75377cc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bbb093c86e2c747ba3e81b01924353d982d4f6b62cce76a5eb1eb157cdf499e9
MD5 7771c169f66dd8b50f47701664e01912
BLAKE2b-256 27c42234bf7a469aa51a5d0e9f2042b2f9c14805fbb6130fa96e1aaff45ba5e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24f7804bd40deba52fb14c5c1510273e6e4a084ef7c9896a30bd9ee5353dbc40
MD5 2585875cce6844c2b67578df0c33b753
BLAKE2b-256 472cc7dd373dbce7499384aebcf0c44a5a9e5616d61fceca3b87ccd17c432d24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90a246583ff481c869227058988f5d2cfe5dd5a6cf76596b6e8de88cc10d440a
MD5 4a8bbdb555a64a994d42ffc43c3596e5
BLAKE2b-256 c5676e1d1995d605400ea438fe0fc727b5184432d626f23e1c54c802a288853a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 56e4f09d684337e33f6ad24bf4cda984de07b969865bfe2a8fd556ee1e1581cc
MD5 97981a41b5afa389a49320421341debb
BLAKE2b-256 5ac8d64c3bf228b26ff7c71e8fa68c28c77f31df275e31eb5ed87ecf4d1fe85d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 915abc5db73dd2e15182bc2b281e0aa565124068a6f36f8237d3479804478ea8
MD5 c274f13b89a7d082c43260f58716e9a5
BLAKE2b-256 39996237e6b64b96f6f54bd30c0860389d69ef675e4483a497e446013831db86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ffd1d8edb67b8ca264e033a349b611426b5b84c3eec410aeb6df67b784450131
MD5 6ad81ec6e9d416b16002801588d4e3a5
BLAKE2b-256 4d3b433cf28789783950c00ca0cef504ccbfe6e7d8d97b8eddef0c3e5041d610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 689859e796d39d0151d1d7a0f50b8119547cbd76d815884e8d8ff5e7e3ce8244
MD5 5307a4e7f199c4f3aa798fe93aa0920c
BLAKE2b-256 bc8b5f6bddbed2ba9038a9a74b1fa009ccedf1719f63dbb7d90dfcae24bd9d3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ffdb9106fd0d36b0a87db9903e3078877a9cdde98e064b76f24f6d8eb46067e6
MD5 86e26a6fa59afba33faec5f303c1e3a5
BLAKE2b-256 b6267eb0fd074f1ed0120c90b06a24c00dcf570647615d1676cb7d4a744d20af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bff837274244e1dcf57e43820ccd8f95736ab30e7f5f0c79e81f655717060d37
MD5 b385dafabea3f37ce228fc0e894c073b
BLAKE2b-256 74a228a85962663affbf3f5cb531bb1bd006be7d7fddf93c1506294b760c5677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 17df9b29105beec4dc4a489041783ddfe9de2628706bd4255863acfe3a78e648
MD5 bfb510ed62ec379b03127dbe34e71782
BLAKE2b-256 404a2af6aceb6da9792a7a94c8fd5f8438e76b9a375c86384587aa2bd1443fd9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-2.7.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2c2bbb73b8dbc52dd26ae40ae83f2e863fc48db6c37ea7fbfd5a750ec62c0a30
MD5 e227d19ff53fb6b1ad11b1d370ef1cd6
BLAKE2b-256 25497d516e91741d10efa5234b3390614bb06362ab2246efc014557554439e23

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-2.7.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 5ac235eb59737bffce44d605a2c1af47e56e28a98bc7c9c763587e8bd8c5ebe0
MD5 f509e4202ddcb5a7bf4c8b36ae468db8
BLAKE2b-256 10fee452c1867a8a23a8b524d1fb7c7a9a79278bd4833e4f6b2857280d034a55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 efe64997aeabedbaf24543020cc5c672d00cb373e126c12fe7e21e128f548001
MD5 faa9bc2ae78001d9c0311736d5108dd5
BLAKE2b-256 e0aaf308eabe234c52ee3057b73eff3099fb998abf8aa296c0e4a779c5958bfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 4d77b8ed242fa4b70a609e0bf81dd1f2db161ff4a082f7dfe233b491fe4c0c39
MD5 7d19429849eebb5935702e3d961a3717
BLAKE2b-256 788469c1db7784ae60a916961491f0b138d9b42c4c094c361e295a71a71c81de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 2b3527f41bbfd4b8b64b9d7541cd9f8234b0d5a477e59b8c7f666f6f9635ea09
MD5 d5f1350281e226ecdb2d99f11f69fcc6
BLAKE2b-256 7d4bb736bdffb771e725e1bf8cffd9937b8a19f817527d145103eead3e3f5981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ca4dc98b56461d3656f3219cfcc4a6845479ab7e6cdc134c7fa2615336c55f76
MD5 457ab13fb046743ba19df9c8bc88597f
BLAKE2b-256 d00fc07bdd323f5ec5f833831aee748deb0fb51021b887fb3ec91ed10df979da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e373bd92a6caf9bb6bb2918e3f6e64ba10045d62c2e376d80d0ec062dcdb19ef
MD5 f51f0b329aa25a401dc05b19eae11e91
BLAKE2b-256 79f7dea24ef6819374cf6177fa26ca85012a377dfe207ee325e2632d39538b63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f16a5e4fd0614d43c1bd5bd0887deca1fcf292253662bce040c169492005fd8a
MD5 a7d65ea2f4d8c1ce0875b3a75d595360
BLAKE2b-256 7a5f209612e43c10da026da5a4e6b17a1f6ed9a169b0126ce6d6d720b4e8b7d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30a9347acb24a0ee50cc932c52f58337d5b9503bb5b78f435cf3a47cd7031d86
MD5 11443aa3336b801ed7a194832282ad12
BLAKE2b-256 3d3aacabab10cdb2ee4e7479706a6272ffe9937edc9faa3db8b800a1e1b08717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6897bfadf3077685c73cd6ca60ebeaaa40b3bbe060f38f0a6c577bebe37935f4
MD5 f628418e4b7c454013ed0e30bb45e2a2
BLAKE2b-256 b774380355d87aaccb8f77d679fa6da23b9df5e565b1af9b006c9a5987f486c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98e1abda299b516573aa916e4c58bb870dd55f17dd544041d9290cb1c005be30
MD5 6b8a23b380ebcd4f290eec71fe866121
BLAKE2b-256 55f027f80f421218d7418093de64372a0212a9804773e167e7eba561d12ca609

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 02a871ee6f460d03febdd1577ddab66c7f297a43eff3293ee4cb34f6eb5cacb6
MD5 77594a3469c3e330f00f327730126023
BLAKE2b-256 c9e3f90d50fe18120064a35ca733366ae652e624aee34afa4303ebf2aba0d7f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e40be8a46062ff89c07fe00a0ea7e06a069805cf1f9cb57196a89f52fdcaf80
MD5 c1950f9def12e58223c667581a405ba4
BLAKE2b-256 36b2a8fa3d004626bdbbd03e088d0fb654fc873c9f92411ac69b9ec6c986f013

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 557cc0858e5171b542ed48bbb58ae83bc65da82fb3fd88dafd21e33ba1b685d3
MD5 b135bfed885bf85ceb8a07f5e8c4e72b
BLAKE2b-256 dce4cf7108184694b765230b7efca3a724fe1d22e34212e28f522326dc989736

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp311-cp311-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 87fd489d5b82679528fe096084c4e6976199874edc3c126bb41cd668987bd784
MD5 992c1df26bd504b9afc24594b02703e6
BLAKE2b-256 e429c6386686c3b319cd4a80c229be391ccc1693eac7301f0383786d1321ef05

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-2.7.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 31b2855bd566c965ec00ca5629a2637786e0605005826be0f6f192f3756f2aa2
MD5 3882a363c433481a6d528f1e19127bd6
BLAKE2b-256 20da30d7d50c36e1037cdccc6dc4fa730cbcaf9d7cceb1537a5a2912a90f8fce

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-2.7.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c6a13db2090c16a8753a6b6fb0e5ac0c7ece1930d4fa85c20e885aec550bceb3
MD5 45c49f2bfaed4d248f4e2069e04836cf
BLAKE2b-256 55a59a5498f421535be23b4ab945ebd138708538e912cc87841396ec00c8789b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 98959be5e864bed9c4fcd90d47d96cf5250d86a2a22b39ec41514c54c80f29bd
MD5 3ad3468c28df56fde9dc0f126a795cbb
BLAKE2b-256 22b16140492717956cb7a331aa5ec3bc390ed1e7f652d5c7cac7a7e2e74ceab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 e095f92ba7c6424fc4918f28ddc998e1628bbf83bd5b0405c08c5591f74560a3
MD5 88c0061c519bc35e31e6683dc12a22d7
BLAKE2b-256 52eabf13991a6baa311528399abfcd8aca2a0ce1ccfb01d12186353bc00004f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 0f8e85acce0c3434776fc82819dfd09d9003595456f838d50b1009d6ac0be031
MD5 bbf1c8db84b868e6528043052c0d5bdc
BLAKE2b-256 66bf3f3a7140c19880f435b47c7738e7282fa08dd0f65c3e9aec58efc5c7276d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1211d16de1814f910fc7f2de74930ea22b4feb9b699eed5ceaef8ed14736fe50
MD5 785811df7b3ef99cfeaa236dad4e20f0
BLAKE2b-256 3b408540e9a01b9ce2f3eeb7cfdc8b75b2edbdd021a0f3463fae665060e07294

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ab8fc4de49c75ef358fa9a30a367a163f62b92048a3da084500b88283aba47a6
MD5 13e908a591e9533e2e4565f30815afd2
BLAKE2b-256 7f731a658569aced20fb9a56ae416f2516d47c6323231a295ea286b316af3c1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31be9ffbb6dd777233331b2fc08d30957cb01f86e2ee11aa5d7652158fa3b795
MD5 b3533e307f59c7c90f3c9fc820219257
BLAKE2b-256 f7c80428f4026d10e305f3050ab99d8cf380bcbe98da68ea71d62e06eef89756

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3ffcde9d694bfb34f82e6739b33fd267bad25e6b4042b43bfffbe3ba31184318
MD5 44e1aa159077d348347f5dc9988e10d2
BLAKE2b-256 e34587deafc4460feaffe71297c7f2dce8955dcb18d911e06021a1ab3bada811

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 913e767a3d9a50d2213f5e22db4e87b8a29acc38be5001d29b6be42b1361b812
MD5 3634c680425e31bf73af02a883eec77d
BLAKE2b-256 5fdfc315f4d16311681f26319102ff60faac7f31fcaa156900a0f76d13477834

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aafd10decf8940e8f2d21e25b32b21ae9fd1aa58f168ea97f0f82adb0f6aa33a
MD5 6c4a5354b2e06357f6890dd81b684959
BLAKE2b-256 a6a991213fd566ffde46af080e357996afb06181f4e272211240b2eda6eced25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 190d7e018565f0745c76ced5060c2a0a218efb5b3e5df71f8a0da5661decaaf7
MD5 a8bfc01e5a85583d441e366e1438b76d
BLAKE2b-256 4fde5aad2c9c0bd4cddd04e53ffebe330369e7afa0bd633613acc6b4968a009a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5b133a161bb4426e0bdd0e53be979dfdc5f63f14043b8e194d1fba6391e1672
MD5 01e90b330c545a7e5daf13688159efcb
BLAKE2b-256 ed4519e5ec40f2a56e0228d307708738d8f9ed497ab05108a4369abe75ef1290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b798d37fcd8e78e381660a65c434c3f60713c6f076fcecfd22544ec46d7416e6
MD5 d8674644d15ae2881bab265481290d9e
BLAKE2b-256 87b61d9d003b0b8b6f84482aa836c7a06e0e345c80551c02e19cfc105692d10a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp310-cp310-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 82816e361303817ac79d6870d51a3c7f1f343e816a0b1d885b713389d9bba425
MD5 6b0a51b37de42b099f435d315ae97e54
BLAKE2b-256 19d933594d98a0b92ce1fcbc6af7940b7e13451711719c87e5cdf8da5397c67d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-2.7.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 66ebfee12371d9cf7f59eb8964fcb1e711f075df6a2e29880c9aa8b55fa5bce4
MD5 a62f4b8ff4d67067e4f9f50c565e134d
BLAKE2b-256 d54cbbb01477ad2477552ca1055c01dde671428d3c390176aefd2b35dc20cd7c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-2.7.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 17d2df5517ab961b6ce679c050884141439695a931539597fea76933891f04a0
MD5 ba7d99c70cd5dc7e6175736b848e6471
BLAKE2b-256 e735f351e50f28a8694ecf74f0432b266387b63797e4d3f037154c026d0fd999

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 900cc391b38bf098f30ae5847c2df30f413b9311f27f13ced1818cbc28da928c
MD5 10a6a74ce87c5f87d27ce5bcca098985
BLAKE2b-256 bbf311ff4bd889297854ee2f1db2bfffb111783931fd05c29f0d543d8396ed0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 1bc7466820fae5376e2c0c9592e67ffd2a5fb1ab261942357ba23b5252b5eae5
MD5 b09b26f04d09a03581503759edf94d2f
BLAKE2b-256 3e6056c6a790025fead312a21a220858a626ec38e3fc86fa402d1b7592bb1b34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 5ecdb1f22f9aae4405393cf845b1a43bbf786536fa673aae92745508ca8c84ef
MD5 6449d4ae25f8cb03420e81559a2be70b
BLAKE2b-256 6572e38d7b383dee4c93ab227e4e88ce58db893ddd48eb8f9c9dad0490a1a7be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 37429158856fe0548786910ebc16e56606a60f01946f746cb7a6a78acf787711
MD5 f6388fa45fe2df35b353553882846561
BLAKE2b-256 8f7ff87447c28aca36c2db1ef950fb70c520b7dce2d2eaa6be61790b50796595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1eeeb25912fc4832546d328032e345d281720c2c73effd2234feb24045cfb10e
MD5 4ba2126975acaf6121d9afd83db88b9a
BLAKE2b-256 987eb0712f73650c1e3125fc85fa4a429767f0728e4373c0093705dab32e037d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e90774f5453c610a0b62f6d235120c459c1dc0f2c7e8b4871a14f2dcf4d74cc
MD5 6081510f2a682f73a343a148e4562f7b
BLAKE2b-256 6ed756f3510ff168d538653bcb78dcd3680517635c5b78986d05b179fe86f858

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c237144123f1eb563c305d70634a97729716bfcd841f1519c33396e62d8ea3bd
MD5 37ee909a73f566449f13dfa24c1df695
BLAKE2b-256 e7c99c90362865688b01b85b94a11fc56a7304242d02375bc18e94cb593dc45b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9e1da9ebd148389bce250403c02ef1f1495984612db534072b0aa101fd051a0b
MD5 c05af032094af74b4844a11bd84c2a72
BLAKE2b-256 faec084b9e5f5c58f306c73c9e267d95ed215c47be3f2ac67053c46b7cd5c1bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 249e5d52785de2615264e579e25d85038e4bea9797e24e47b577e614c1187a2d
MD5 3e82a0739320c47f8b833f4f763ac437
BLAKE2b-256 0ab01e950e02ca1253f6d80edff012ddbe384c7ac942bad7b06a0fb1615cfd79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 07ac65cae21d79a4642a85109e40da48903c58fd14b7e42f31c48c37b7b8a37a
MD5 84d918eafd7c16f9ba3dd33e5c000720
BLAKE2b-256 559b981045a787112f1c7d4b5ac9f3aba7c0b5f08293b7c583e39b634ad450d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a8d697e201a2f9b16d292d7fa066b9bbc0123abd9058885e408db984a1b4776
MD5 233333ae67aebcaeb6e01fc4070bf0f6
BLAKE2b-256 661a78554f39668ab782662a10389413f7a72200ffe948692aeac999f3f91dfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 97496cca479e2b30a5c5354359f1fb85c4a0678b8d651656cc96a6ba3028bc94
MD5 e40417105468dbe49d8c8a4e19b55bc3
BLAKE2b-256 41fa381e0b2be1e1134b10d1e9ab19c8fba3ce4edd7f1525cc11c7a908ef2819

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 1b8f439bf3939133ca2a12bfdc6fc2408b50099fd8fec88e5829f1eb9d49d636
MD5 285154aa9bd44625b6a3e9eebfde2ed4
BLAKE2b-256 f47b990784244e7f3b89f525779c0092e8136ad027ed7ea7ccbe848d52a1a079

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-2.7.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 732642e9284a7dbaca00d8a4837f997462fc01e8207f2be598e179c3b51e20e2
MD5 9c80635f9b7848224fa5b72967d6d1a3
BLAKE2b-256 40aed63752390b6930674e31499d3d05898450e75c76b5abb861164f252521aa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-2.7.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 17c13936465e4dd2f4b58ce93f4d1fc92a684f1870830581bf950991e1e56eaa
MD5 c8c1cfeb9e55dd441a8c13267ba79a1c
BLAKE2b-256 77de0b66952b6a6167b0430b9d1c00f816818fa2c32a98d92f4aac77b067c7f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e38fe19d4f6ddc669f8a13fa21b482ec72bc32d2def6b97018dba4db53823848
MD5 76abdf35fb029fb013c128c004f32827
BLAKE2b-256 dee35ede2726c0b28b6be47366a069d23630ef0b8b1d4ad3e12771252f68aaf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 da810a6704723bbaae3d9d5a0c552c52e15f2b97aff599c5243464e04a9bc5ac
MD5 99de9f832fc3bffa0b9b4301c6318e5e
BLAKE2b-256 22381f94e37c13a3380515b7fb3732ecce10c914b89a5357f6e995ef986fe429

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 c9778c56a4f9cda3c61941ea95db279b52c38e9b9ad174d52fd7174f9ec44c46
MD5 87a2c6fa007de800510e00e2733999e0
BLAKE2b-256 c22a61dab3c93eb7e41b0f9a058722b9674617ccbc66a806db3fde8559cb5575

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2ad866b82dd457239e2d0de864a09cc6efd4ccd2e0706314368835773e2b6018
MD5 f87bc0aaeaf1ea3f57274cd6a8bd342d
BLAKE2b-256 c799dc3545e3d39bed4f153392f27038dbac68d76409e545185833a8ef3ed097

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 98afc87b14868bb51f478f01c4d1578a190efb60c1b44dd7fc6dea7a61764889
MD5 4e2af6f6f238c907cdf78a47d093253c
BLAKE2b-256 6a21177f22f21601fe45bdd12eca4c1a63309d3e9d05e0065f2f53c9b6db8771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cdcd0b5f6952ed7187f46a7f0ea72436ddbd7111af2263adcbfe2850d0c26e7
MD5 8173d82e9da53fa83e3349630da3642b
BLAKE2b-256 453a4f3a7ff078d27885eecbe211dc6ed0192c0cdea58603996460ab25ee7d42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1802d92ba8b97a758f61f6aef8324c7705fe35a4b32ce9ed1569a8ddb43f0e33
MD5 9411447fb116841a68fd6e011d909d9e
BLAKE2b-256 ed224d7c3e34e620e9cb09e7e6a554d2c6c57943cac949b142e5f282ce7a98e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 72f638b6e56480c588580d10e3185dc9770d66a2bee49735ae6ac4277eb701da
MD5 ea0f5c31236d7a18894ae65eec2ccce4
BLAKE2b-256 67d04a0a68cbc8c32da1514fde7502364335290bf565b8dd727895d8749e1b80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cc2fd90298cb5e4c5882a8d8f4b39db23280a94387ba10ca266c311135ca57a
MD5 4c3378ec767c426bb27e54d04bd36a9f
BLAKE2b-256 146623863fe2673d06282a21e8851c1141b77ddae359e852f2fc4e2a1927aeaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 db83ad25c3ea908f1c983b4b28ab5b9408a18962fa21724a5d1d65887842462d
MD5 dc6b1ba7c134ed84e3d9d0dbd286afc4
BLAKE2b-256 1f2595262c049210af6bff82fad7b1b6650a6ddb60d60d9870857f6579633579

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b803225158bbe17384e0a9f15cffecb5ae019b4d225a21887670ef20acfa4c8
MD5 e1d8052a475943a71972af08709bcbd4
BLAKE2b-256 c306348c0edad27c79e1d3a5e9e078921d3bcf06f10cdb27cb8cde9e2a01a4dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e6f228712a5696f3e13048894fc1f6d70d32421e154476b74595b0309a9d9dcf
MD5 b2efa9bafc3cace557ee16f01e311f5f
BLAKE2b-256 934ccabafdf095405ad7039c578246355859f581b5bdda8f9a0d0fef07dcc651

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 3e9065cbc14ac490e4b1b5520ef33d61e9bdb41d066c7f18b20429c3025ea07e
MD5 1c30649dc806917f9a8616012a7941e6
BLAKE2b-256 52955aaf4ac73ddf95e2d8e201919306857d6c2f46785b7c8ebec6ba61a4b6ae

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-2.7.6-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 79da57026eb2c6b266c55d578b607f71d2eb9c5ae1bb3b32232d7dae059d63ed
MD5 643008f0daeff4a4a7bc1d1774b1bb3e
BLAKE2b-256 0b5e910b81a72e86d386f8378965b266e2c51d06524e5a1d6f616537cd697564

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-2.7.6-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5ebb24415e5838a729484ae698e1a17e27b826d2691d5cc6d4dc44a90f6a89e6
MD5 12ac5c6c08d8eef56c96b3ea1c05de70
BLAKE2b-256 f54377130b626c0809fe65caac5e99b3fe1035d253fbf1b4250eb4c00e1d1d56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 95749278b59247a2a5779f1a0fc216f110eea1aa8af330609b8bdb5f8f55b78f
MD5 8a08233321ad89b22d2eed6d0f96cd34
BLAKE2b-256 0a5fdc7d11829c10d328dd3f45cbe6398ea04b41be1fb12c89c3c7c872771c94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 790aa2272aa6a2b792404a9f672dd136801a3a3860f74298c2542f63a206ed49
MD5 19f1f7956f70b002090fc6a57ece7fc9
BLAKE2b-256 4d24a91a3d40c4e054d7b35d2d052353335f1489004a180d7e2ff42363a1617b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 08abec79d033ee10d6f4cb2fa9aec952d18eb06ce034b9cdf0cd8e6f2d023254
MD5 cf553cb6c23c17544bac7a1a4587b62b
BLAKE2b-256 702ac11b6e2860c483fd848f80b1699aa04721725addfcdfa25da1deda02e6af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 5df77a37750fff8a107fba2e7adb887d171ae923306fa9a6c6c6c1a22c73da7f
MD5 30c60966259d812fe0256954ea932851
BLAKE2b-256 9db8bbb5db0780308f76c683495519a54c42e2c0660c885c7286979743343f65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5f36666371fcf8c1adaa0184b5762a7ce8310fdd33f5c39bf085c6dfe5fb0699
MD5 2a69ed9ae1bf6371b8cd0d99b201c4e9
BLAKE2b-256 8f7c9ad6838cc2ab6e527ee0fcce5630c7c15e3f50802a1a5a783156f34bb1bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f21b59a436ec2f8226c397292e24f9dfb9c3eba904038f50778f2365e68fdea
MD5 4b7a7c5cff4bdc34b1932699e39eb723
BLAKE2b-256 cdb3e7fcb26843d083f9d1bb4ba9aa51956987439f566375054e4aed37cf17bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f57e3e6362d2ca7ab797e423a2d5ed1934b8599d197097458c714cf107f4dc4a
MD5 e0e8e911862be4b6c2a707cfefd66b94
BLAKE2b-256 1af7ab6183ae39cdd6ccddcbee9cc58e01a1c4466bf49b7f963abc244137c232

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6ad4c0e7e20c7384a111ce1883b91e203fc7950a6d4bb3ccdad23422b359ab4a
MD5 3180134ddc15449a5e257b79d6b41d74
BLAKE2b-256 8f6d3aa05d22246f5640751f2adcd605a884daa8da81fea4a5ac91884d4a2c16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4451de47a3b2b378f03bc12d4cf49e64895dc263befee2af38420a91e38d4f9
MD5 3305b7f1d65b2f22c30b917c32cf69bf
BLAKE2b-256 91eaa5b34b32ddfe4061aa467ad1772f902fbef7ddf69bcf1328e70f06999141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae83573d9f30f085755c7ba519f0498ecb773a0f2a7e428ed2a33324975e1cec
MD5 fffefaa81af3515d2ed068591851cf2e
BLAKE2b-256 7eed6de0008b6116c9df0f3b391ee9c70b229f6c5e5394286d50a00919655714

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 216c113c68523b0d3a0f98c5d12236a1998b5c3bf79bfa17324368bf9d20cd26
MD5 68685c5489545719ccb8b7f8c0a56ea3
BLAKE2b-256 9ff5cc234dbf756e21c9608c0824b61e3a3667a387cde75f6606a3296841f17a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-2.7.6-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 31c118dcaaad605c3d8ef953c79554f4822e454e85649dd9fe82e3fcd5017eef
MD5 087222f2d6d112253e568b7b1c6a60dd
BLAKE2b-256 d1cd89258c8fb9cdcc39312d4e12b0adc5fa8e8b14b104a16aafe067e67972b8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for bitarray-2.7.6-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 0efcd03263f70f76298e56b6c5ed454ba89c01777ac25a790725bc063c6170b9
MD5 66a3e41ec17b0f0d4a1c53609436a1f9
BLAKE2b-256 c5c99ff31882aed90ece9a6e2b676bffc32e611eddef292af6b6d0a5b9518281

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bcc8bd9fe25b48cff1702a6ef700f7a7726c8084be8edcae67a1df0d23caa822
MD5 853709475f1df0af8dd42be5e5875314
BLAKE2b-256 faaf1bac6246a9722f9960a641b51d4e5de1a0b2cfafa29f10d38ddfd067ba77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 523de6f222c310a865f4070f79b2ad0e0b35b9f26b34ee9f93a3dc8ad293dbfb
MD5 34f1acb076049735bd172f1f3bb00466
BLAKE2b-256 47cf6b4267ce72c0760ece32cae1b3b215148fc6a531d79933eed0186fc1e224

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 26e4f99f5bdb20c9275dcb5bde44aaae74c52224f328bf1f691be43d6eaccc2b
MD5 69e4f7ef0148b03e152c23ab1b559855
BLAKE2b-256 ed9bf1d6f01bd4c52f6d367631b9c42e762c4d62aa7ee5d857543cb96326524f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4d054a65a9b3848744e49f195ef7399841c545c05ad11854982e271331a4577c
MD5 44de2c855f067fbd9044be8d9bb262cb
BLAKE2b-256 417cf0f6ba9433ffbb0b0a864b7cfb71082a65c7e64124cea44bc91203eb5dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e1ec302eda30e87793bd31c16c18a92118a1072831200247d0a8430e095e9563
MD5 ea0a2d508e0da19348ce91a80cf8b8b1
BLAKE2b-256 244bf9baf5339706e600a8b5639863b53a866d7ff29a491fb144460f370af722

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88bfe996b1adb811690333523e2500d700f6d3dfb282b0b77194e8ff1d168873
MD5 10c305f523202bcc39e8227807aa7487
BLAKE2b-256 7744dee37f7781890564d4f0f3c55b34e7903bc034839306a3b7edaee51ae807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 60acdb34def45f72f50a2277763b2a979e4c42dcb4c183a3a9a75bfe195e0b65
MD5 2de9820c2429ab515a5c882d99b2eb31
BLAKE2b-256 0e7dd7faedc93764b8f219df5fb0560be695563131a4c4694289c9b4a1e09344

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cff6588ec89b276bab617b15778b20aeb5124df1e04b1c0b5364e9cb8dce6a7f
MD5 9b36ceb63bbb610e5d9f9cd07fe7d5d8
BLAKE2b-256 e968543248d371bc2fefbfc00df6ee6e89c56e3cb9234c42c35b6ca13977c84b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94333a9f419ddf2f92ddbdb34a10a4b2c13e346f077511a35de87a0acea4289f
MD5 1a7215b1c875d0d4ebc88ed475e7ac7a
BLAKE2b-256 2de54a3f37588952179e4ec75685bf0405d8d5daa22ef8ce4402188af0bf2918

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a56e6e68d0a508b0a2bd81840e31c41f4858585cd72f192264c4f0f8f48fd0c1
MD5 7491ba433c7c7e4c6cb6a1ed1fb31b4d
BLAKE2b-256 4164e44ee6142fd6730e1e9fc040ad848c066d926376ff3399dc07ed6494415a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-2.7.6-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d15685830b607088f040ec512d045ab762678d33e813e882a260ae3ee3d381db
MD5 57f63a6b361369367beae24e3e5a97b7
BLAKE2b-256 0ff84788169ec4472c2db42edf8b94ab2dbfab4d1c323df7262bba4adc1fb73d

See more details on using hashes here.

Supported by

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