Skip to main content

bitarray: efficient arrays of booleans

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

Key features

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

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

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

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

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

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

  • Pickling and unpickling of bitarray objects.

  • Immutable frozenbitarray objects which are hashable

  • Sequential search

  • Type hinting

  • Extensive test suite with over 400 unittests.

  • Utility module bitarray.util:

    • conversion to and from hexadecimal strings

    • (de-) serialization

    • pretty printing

    • conversion to and from integers

    • creating Huffman codes

    • various count functions

    • other helpful functions

Installation

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

$ pip install bitarray

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

$ conda install bitarray

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

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

OK

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

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

Using the module

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

>>> from bitarray import bitarray
>>> a = bitarray()         # create empty bitarray
>>> a.append(1)
>>> a.extend([1, 0])
>>> a
bitarray('110')
>>> x = bitarray(2 ** 20)  # bitarray of length 1048576 (uninitialized)
>>> len(x)
1048576
>>> bitarray('1001 011')   # initialize from string (whitespace is ignored)
bitarray('1001011')
>>> lst = [1, 0, False, True, True]
>>> a = bitarray(lst)      # initialize from iterable
>>> a
bitarray('10011')
>>> a.count(1)
3
>>> a.remove(0)            # removes first occurrence of 0
>>> a
bitarray('1011')

Like lists, bitarray objects support slice assignment and deletion:

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

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

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

This is easier and faster than:

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

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

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

Bitwise operators

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

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

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

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

  • blanks are filled by 0

  • negative shifts raise ValueError

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

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

Bit endianness

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

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

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

By default, bitarrays use big-endian representation:

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

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

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

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

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

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

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

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

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

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

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

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

Buffer protocol

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

Variable bit length prefix codes

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

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

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

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

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

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

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

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

Frozenbitarrays

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

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

Reference

bitarray version: 2.6.1 – change log

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

The bitarray object:

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

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

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

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

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

Optional keyword arguments:

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

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

New in version 2.3: optional buffer argument.

bitarray methods:

all() -> bool

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

any() -> bool

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

append(item, /)

Append item to the end of the bitarray.

buffer_info() -> tuple

Return a tuple containing:

  1. memory address of buffer

  2. buffer size (in bytes)

  3. bit endianness as a string

  4. number of pad bits

  5. allocated memory for the buffer (in bytes)

  6. memory is read-only

  7. buffer is imported

  8. number of buffer exports

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

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

New in version 2.2.5: optional start and stop arguments.

clear()

Remove all items from the bitarray.

New in version 1.4.

copy() -> bitarray

Return a copy of the bitarray.

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

Count the number of occurrences of value in the bitarray.

New in version 1.1.0: optional start and stop arguments.

New in version 2.3.7: optional step argument.

decode(code, /) -> list

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

encode(code, iterable, /)

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

endian() -> str

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

extend(iterable, /)

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

fill() -> int

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

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

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

New in version 2.1.

frombytes(bytes, /)

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

New in version 2.5.0: allow bytes-like argument.

fromfile(f, n=-1, /)

Extend bitarray with up to n bytes read from the file object f. When n is omitted or negative, reads all data until EOF. When n is provided and positive but exceeds the data available, EOFError is raised (but the available data is still read and appended.

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

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

insert(index, value, /)

Insert value into the bitarray before index.

invert(index=<all bits>, /)

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

New in version 1.5.3: optional index argument.

iterdecode(code, /) -> iterator

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

itersearch(sub_bitarray, /) -> iterator

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

pack(bytes, /)

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

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

New in version 2.5.0: allow bytes-like argument.

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

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

remove(value, /)

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

reverse()

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

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

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

setall(value, /)

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

sort(reverse=False)

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

to01() -> str

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

tobytes() -> bytes

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

tofile(f, /)

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

tolist() -> list

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

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

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

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

bitarray data descriptors:

Data descriptors were added in version 2.6.

nbytes -> int

buffer size in bytes

padbits -> int

number of pad bits

readonly -> bool

bool indicating whether buffer is read only

Other objects:

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

Return a frozenbitarray object, which is initialized the same way a bitarray object is initialized. A frozenbitarray is immutable and hashable, and (unlike a bitarray) may be used as a dictionary key.

New in version 1.1.

decodetree(code, /) -> decodetree

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

New in version 1.6.

Functions defined in the bitarray module:

bits2bytes(n, /) -> int

Return the number of bytes necessary to store n bits.

get_default_endian() -> str

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

New in version 1.3.

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

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

Functions defined in bitarray.util module:

This sub-module was added in version 1.2.

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

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

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

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

New in version 1.7.

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

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

New in version 1.8.

make_endian(bitarray, /, endian) -> bitarray

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

New in version 1.3.

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

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

New in version 2.3.0: optional start and stop arguments.

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

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

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

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

New in version 2.3.6: optional value argument.

parity(a, /) -> int

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

New in version 1.9.

count_and(a, b, /) -> int

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

count_or(a, b, /) -> int

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

count_xor(a, b, /) -> int

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

This is also known as the Hamming distance.

subset(a, b, /) -> bool

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

ba2hex(bitarray, /) -> hexstr

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

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

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

ba2base(n, bitarray, /) -> str

Return a string containing the base n ASCII representation of the bitarray. Allowed values for n are 2, 4, 8, 16, 32 and 64. The bitarray has to be multiple of length 1, 2, 3, 4, 5 or 6 respectively. For n=16 (hexadecimal), ba2hex() will be much faster, as ba2base() does not take advantage of byte level operations. For n=32 the RFC 4648 Base32 alphabet is used, and for n=64 the standard base 64 alphabet is used.

See also: Bitarray representations

New in version 1.9.

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

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

See also: Bitarray representations

New in version 1.9.

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

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

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

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

serialize(bitarray, /) -> bytes

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

See also: Bitarray representations

New in version 1.8.

deserialize(bytes, /) -> bitarray

Return a bitarray given a bytes-like representation such as returned by serialize().

See also: Bitarray representations

New in version 1.8.

New in version 2.5.0: allow bytes-like argument.

vl_encode(bitarray, /) -> bytes

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

See also: Variable length bitarray format

New in version 2.2.

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

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

See also: Variable length bitarray format

New in version 2.2.

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

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

canonical_huffman(dict, /) -> tuple

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

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

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

  3. a list of symbols in canonical order

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

See also: Canonical Huffman Coding

New in version 2.5.

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

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

See also: Canonical Huffman Coding

New in version 2.5.

Release files for bitarray 2.6.1

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for bitarray 2.6.1
File Size Uploaded
bitarray-2.6.1.tar.gz 103.6 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for bitarray 2.6.1
File
bitarray-2.6.1-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
bitarray-2.6.1-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
bitarray-2.6.1-cp311-cp311-musllinux_1_1_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-64 Details
bitarray-2.6.1-cp311-cp311-musllinux_1_1_s390x.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ IBM System/390x Details
bitarray-2.6.1-cp311-cp311-musllinux_1_1_ppc64le.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ PowerPC 64-le Details
bitarray-2.6.1-cp311-cp311-musllinux_1_1_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ x86-32 Details
bitarray-2.6.1-cp311-cp311-musllinux_1_1_aarch64.whl CPython 3.11 CPython 3.11 Linux musl 1.1+ ARM64 Details
bitarray-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
bitarray-2.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ IBM System/390x Details
bitarray-2.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ PowerPC 64-le Details
bitarray-2.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
bitarray-2.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
bitarray-2.6.1-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
bitarray-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
bitarray-2.6.1-cp311-cp311-macosx_10_9_universal2.whl CPython 3.11 CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64) Details
bitarray-2.6.1-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
bitarray-2.6.1-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
bitarray-2.6.1-cp310-cp310-musllinux_1_1_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-64 Details
bitarray-2.6.1-cp310-cp310-musllinux_1_1_s390x.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ IBM System/390x Details
bitarray-2.6.1-cp310-cp310-musllinux_1_1_ppc64le.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ PowerPC 64-le Details
bitarray-2.6.1-cp310-cp310-musllinux_1_1_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ x86-32 Details
bitarray-2.6.1-cp310-cp310-musllinux_1_1_aarch64.whl CPython 3.10 CPython 3.10 Linux musl 1.1+ ARM64 Details
bitarray-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
bitarray-2.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ IBM System/390x Details
bitarray-2.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ PowerPC 64-le Details
bitarray-2.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
bitarray-2.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
bitarray-2.6.1-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
bitarray-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
bitarray-2.6.1-cp310-cp310-macosx_10_9_universal2.whl CPython 3.10 CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64) Details
bitarray-2.6.1-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
bitarray-2.6.1-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
bitarray-2.6.1-cp39-cp39-musllinux_1_1_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-64 Details
bitarray-2.6.1-cp39-cp39-musllinux_1_1_s390x.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ IBM System/390x Details
bitarray-2.6.1-cp39-cp39-musllinux_1_1_ppc64le.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ PowerPC 64-le Details
bitarray-2.6.1-cp39-cp39-musllinux_1_1_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ x86-32 Details
bitarray-2.6.1-cp39-cp39-musllinux_1_1_aarch64.whl CPython 3.9 CPython 3.9 Linux musl 1.1+ ARM64 Details
bitarray-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
bitarray-2.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ IBM System/390x Details
bitarray-2.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ PowerPC 64-le Details
bitarray-2.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
bitarray-2.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
bitarray-2.6.1-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
bitarray-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
bitarray-2.6.1-cp39-cp39-macosx_10_9_universal2.whl CPython 3.9 CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64) Details
bitarray-2.6.1-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
bitarray-2.6.1-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
bitarray-2.6.1-cp38-cp38-musllinux_1_1_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-64 Details
bitarray-2.6.1-cp38-cp38-musllinux_1_1_s390x.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ IBM System/390x Details
bitarray-2.6.1-cp38-cp38-musllinux_1_1_ppc64le.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ PowerPC 64-le Details
bitarray-2.6.1-cp38-cp38-musllinux_1_1_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ x86-32 Details
bitarray-2.6.1-cp38-cp38-musllinux_1_1_aarch64.whl CPython 3.8 CPython 3.8 Linux musl 1.1+ ARM64 Details
bitarray-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
bitarray-2.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ IBM System/390x Details
bitarray-2.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ PowerPC 64-le Details
bitarray-2.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
bitarray-2.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
bitarray-2.6.1-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
bitarray-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details
bitarray-2.6.1-cp38-cp38-macosx_10_9_universal2.whl CPython 3.8 CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64) Details
bitarray-2.6.1-cp37-cp37m-win_amd64.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-64 Details
bitarray-2.6.1-cp37-cp37m-win32.whl CPython 3.7 CPython 3.7 pymalloc Windows x86-32 Details
bitarray-2.6.1-cp37-cp37m-musllinux_1_1_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64 Details
bitarray-2.6.1-cp37-cp37m-musllinux_1_1_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ IBM System/390x Details
bitarray-2.6.1-cp37-cp37m-musllinux_1_1_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ PowerPC 64-le Details
bitarray-2.6.1-cp37-cp37m-musllinux_1_1_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32 Details
bitarray-2.6.1-cp37-cp37m-musllinux_1_1_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64 Details
bitarray-2.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64 Details
bitarray-2.6.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x Details
bitarray-2.6.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
bitarray-2.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64 Details
bitarray-2.6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32, Linux glibc 2.5+ x86-32 Details
bitarray-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64 Details
bitarray-2.6.1-cp36-cp36m-win_amd64.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-64 Details
bitarray-2.6.1-cp36-cp36m-win32.whl CPython 3.6 CPython 3.6 pymalloc Windows x86-32 Details
bitarray-2.6.1-cp36-cp36m-musllinux_1_1_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64 Details
bitarray-2.6.1-cp36-cp36m-musllinux_1_1_s390x.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ IBM System/390x Details
bitarray-2.6.1-cp36-cp36m-musllinux_1_1_ppc64le.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ PowerPC 64-le Details
bitarray-2.6.1-cp36-cp36m-musllinux_1_1_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-32 Details
bitarray-2.6.1-cp36-cp36m-musllinux_1_1_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ ARM64 Details
bitarray-2.6.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64 Details
bitarray-2.6.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x Details
bitarray-2.6.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le Details
bitarray-2.6.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64 Details
bitarray-2.6.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.5+ x86-32, Linux glibc 2.17+ x86-32 Details
bitarray-2.6.1-cp36-cp36m-macosx_10_9_x86_64.whl CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64 Details

Total release size: 18.5 MB

Release files / bitarray-2.6.1.tar.gz

Download URL bitarray-2.6.1.tar.gz
Size 103.6 kB
Tags Source
SHA-256 checksum
How to use checksums
8440a5493221f6ed6c4e0d9cb2ba6e4e600a5fb639f66003eaf15b7150a49230
BLAKE2b-256 checksum
How to use checksums
d5be1c3e8849596abc2ea1714df0e43de14fec22c67b7044abbebf9a1db6d6d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp311-cp311-win_amd64.whl

Download URL bitarray-2.6.1-cp311-cp311-win_amd64.whl
Size 107.5 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
3cdfed3c81035385ae7dd859d1e054a0dda6770e83bc5b112ca0b4bce91a753a
BLAKE2b-256 checksum
How to use checksums
118f539e70fc9381589e75432004f81cb17a2cb959d58d7fae29e01aee110bde
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp311-cp311-win32.whl

Download URL bitarray-2.6.1-cp311-cp311-win32.whl
Size 101.8 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
cd977dce97e0b3d16cf28a21e5d28d4f462dddac7d3c6f4e434ec409c78adeb1
BLAKE2b-256 checksum
How to use checksums
a2e82d20a89553ff82ed951341054e57b0fcf67720e1bcf7041c118a3eea2602
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp311-cp311-musllinux_1_1_x86_64.whl

Download URL bitarray-2.6.1-cp311-cp311-musllinux_1_1_x86_64.whl
Size 280.0 kB
Tags CPython 3.11 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
8909a248227beef7ed222f5031519436a986a36b9f82f63f5c25e1b510728247
BLAKE2b-256 checksum
How to use checksums
3daf8cac73a76856c491e9c925156257905d6f52bd258e6e2acc1ef8f37fcace
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp311-cp311-musllinux_1_1_s390x.whl

Download URL bitarray-2.6.1-cp311-cp311-musllinux_1_1_s390x.whl
Size 295.8 kB
Tags CPython 3.11 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
ffbaad32418e91f7f7916447a3c3f6e2dd3f12abeb71ca43b063c64f3d2beb05
BLAKE2b-256 checksum
How to use checksums
5ce05775a012386eb69887e679e4ef3cdc0c5508c8b9474b590f0e3374a3af76
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp311-cp311-musllinux_1_1_ppc64le.whl

Download URL bitarray-2.6.1-cp311-cp311-musllinux_1_1_ppc64le.whl
Size 291.6 kB
Tags CPython 3.11 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
9df2525c68dea2f8d2700a2307533f5c34854cd0f6455f92e1da1ed3e80dc512
BLAKE2b-256 checksum
How to use checksums
f62866c74835cb3706c1a81884ec735003c40f027bbc629d0bf1f84340133dbb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp311-cp311-musllinux_1_1_i686.whl

Download URL bitarray-2.6.1-cp311-cp311-musllinux_1_1_i686.whl
Size 267.5 kB
Tags CPython 3.11 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
97643c9f755f1754cf17f063688826012e6d70b1b341c4bb22323589ff010288
BLAKE2b-256 checksum
How to use checksums
f50e595eb7fc352cb85e03353fa746cc40620a3667920c48be666375b2770d51
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp311-cp311-musllinux_1_1_aarch64.whl

Download URL bitarray-2.6.1-cp311-cp311-musllinux_1_1_aarch64.whl
Size 280.3 kB
Tags CPython 3.11 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
4e20edff57f3fa26b457311f887e076e773d3b13acbbaf8dfdf18c7019c971f4
BLAKE2b-256 checksum
How to use checksums
26e90d7d4eae106de5222285a261b7b8b264926dce92ddd0dfa34d1d331292d1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bitarray-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 249.8 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
7348712346082ae9f246b92b1b17b6cdd7daab5fda3d7b0604c3d569ad953548
BLAKE2b-256 checksum
How to use checksums
069ecb66d76be7fa13636527b8466d179ba1045aaec02bd12209119078c08b82
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bitarray-2.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 262.7 kB
Tags CPython 3.11 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
af2820fab55a7533133286fedae649e77c9ae8d8a0485afc895268e50dd96eba
BLAKE2b-256 checksum
How to use checksums
232c2525f3c343539a2bf511ad24e1469af755c109e6186dc97c72ce05311b51
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bitarray-2.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 260.8 kB
Tags CPython 3.11 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
2477dec4feeff17202074a2adee37efcb1ecec8dc2f10f35d552d0bfaf2ec7b7
BLAKE2b-256 checksum
How to use checksums
570b2430117bd472f0933caf56156c1fd5e8f5d250881bb56b79ff2c50e4be15
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bitarray-2.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 248.1 kB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
77599b490e42e901f656666bbad50b2e08791a8381275a01a22cf461d95627f2
BLAKE2b-256 checksum
How to use checksums
8874cf8f46641fa1d31f59d51b1135213ec15cc1a261edbfddd641cba729cad9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL bitarray-2.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 237.2 kB
Tags CPython 3.11 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
c539b56b78a54b83a07a371f9db0e35a59fac6a12fe89a2632a2cfefa89197da
BLAKE2b-256 checksum
How to use checksums
cfc6d34559f528e888e6dabf39c7c77132edc66b6598df38125c2e8b78447b09
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp311-cp311-macosx_11_0_arm64.whl

Download URL bitarray-2.6.1-cp311-cp311-macosx_11_0_arm64.whl
Size 104.7 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
096e538a25c2323eb72720c8b8681900b48012f82e4548bb4ec2eda16f634455
BLAKE2b-256 checksum
How to use checksums
0ce78c1e796c14453dd2e9920f3dca0ae0a5833430470cc32ac822e2386a83e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl

Download URL bitarray-2.6.1-cp311-cp311-macosx_10_9_x86_64.whl
Size 105.7 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
49772c92b10b989fd4581f7c354a83f4cc20bbd2c6c48bef57aa73a23f9e3ebc
BLAKE2b-256 checksum
How to use checksums
fb5300c676555911e5c193ae9bd7db824244ca560c99470e2bd1f7d86981b758
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp311-cp311-macosx_10_9_universal2.whl

Download URL bitarray-2.6.1-cp311-cp311-macosx_10_9_universal2.whl
Size 144.6 kB
Tags CPython 3.11 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
7f5a1eb0b9e853631025353b813e5fb05e68a6113708afdfdaff84dde59f9b3a
BLAKE2b-256 checksum
How to use checksums
be311f5c8131ec9e764fa53e8bd34b1af3593c5146e15e4f04034336916a7a78
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp310-cp310-win_amd64.whl

Download URL bitarray-2.6.1-cp310-cp310-win_amd64.whl
Size 107.5 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
e6137124297839bc2dc073d97b9dbdb22e476bf9cae7ca68d64d937a66ff19e4
BLAKE2b-256 checksum
How to use checksums
e121b53f65fe03d7664812364d388f6f3eeeff3a0f9b387856c4ab5a116ef440
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp310-cp310-win32.whl

Download URL bitarray-2.6.1-cp310-cp310-win32.whl
Size 101.8 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
f559a645e50d081bf5ba25550bffe1126cfbd1e2b3d57dd3fb688fb5da66e718
BLAKE2b-256 checksum
How to use checksums
64c64b22d6e4cf4319b1af35640c10a373b1b8540ee53fd0dfd4bca9eae40752
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp310-cp310-musllinux_1_1_x86_64.whl

Download URL bitarray-2.6.1-cp310-cp310-musllinux_1_1_x86_64.whl
Size 274.7 kB
Tags CPython 3.10 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
034712f8843544ba2e9aa574628035e3e8d141e878365623b594c7fbe6440f4b
BLAKE2b-256 checksum
How to use checksums
15af96391fd39ba5b786b116fa6758bf1d70b5fc3f55caef4b2aec73ebcee5d7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp310-cp310-musllinux_1_1_s390x.whl

Download URL bitarray-2.6.1-cp310-cp310-musllinux_1_1_s390x.whl
Size 290.3 kB
Tags CPython 3.10 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
7e6d14e391bac9e53009d16548eed5243e6956752807621715cc5b07f69c55bf
BLAKE2b-256 checksum
How to use checksums
c569d12e0cefe7cc4218ba12d47b325879f95b1f05de15eab6cc4da5d17eb2c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp310-cp310-musllinux_1_1_ppc64le.whl

Download URL bitarray-2.6.1-cp310-cp310-musllinux_1_1_ppc64le.whl
Size 285.1 kB
Tags CPython 3.10 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
404064972413c8e8bec99de20b37f8617f74c73e13a4439bbc8bd7a3801182f8
BLAKE2b-256 checksum
How to use checksums
250ca16ebaac7ab603d6ec1a7190ef21b8d805aebc23b6448f8a07c516226d1b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp310-cp310-musllinux_1_1_i686.whl

Download URL bitarray-2.6.1-cp310-cp310-musllinux_1_1_i686.whl
Size 262.5 kB
Tags CPython 3.10 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
f7b632757a2fa7f19f29c5c750a389a5f4681636936d327c020acd186e2d82bc
BLAKE2b-256 checksum
How to use checksums
5c845cbca72e19d702e0c534b13eb39b1bef9f2cee9ab3387bcb6464735274ec
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp310-cp310-musllinux_1_1_aarch64.whl

Download URL bitarray-2.6.1-cp310-cp310-musllinux_1_1_aarch64.whl
Size 274.8 kB
Tags CPython 3.10 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
db9894527bac35c4740dee96abe37978a8be91f774b69fa033dc1264a8a114ac
BLAKE2b-256 checksum
How to use checksums
24858d183654b7a66a1c84e678875d6fad1498a90e58253782b7adce6e759efd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bitarray-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 243.2 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
2c82c2057e2af71a930983ff51eddfeec1e5169af376975f1716f785cd2aabe6
BLAKE2b-256 checksum
How to use checksums
5efd2d6b350aefdecba77eb491a71a84235bb1e9d8fbf728c13a0dfa3be4b574
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bitarray-2.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 256.3 kB
Tags CPython 3.10 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
a102c90e82b80b88d934794b3506ff3a41a4964b9a1b0895bf480303ca99ef82
BLAKE2b-256 checksum
How to use checksums
814227e2510246767db6291edd1204135e07eda1490f042de2d7d20296e286bf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bitarray-2.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 254.2 kB
Tags CPython 3.10 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
33e50f3af1fad9bc92544017b577ddc0a8be01411a19cf14afb1add1ec809835
BLAKE2b-256 checksum
How to use checksums
b0d7df64eb133ed5f712c4399e9e6b71821d4e21d0ceda960cf4e3cbe05ddc6d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bitarray-2.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 241.5 kB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
7a04654315dbe4d137e2d55234496091d5c6602f886798832b46a1e0bdba3d52
BLAKE2b-256 checksum
How to use checksums
5fa575bbea8fb3b925a6e624481e29fbd5ece3e818cf7fafd60524c86577762f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL bitarray-2.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 231.6 kB
Tags CPython 3.10 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
097a2e6015e1ba663b3235b4c305470717f1a1e9d6dd211212010431e80b91f9
BLAKE2b-256 checksum
How to use checksums
86c53568d0f2b0d238d1e8c5d4ae4ab6707ac0f502dd029d3495e4aa361dbfdf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp310-cp310-macosx_11_0_arm64.whl

Download URL bitarray-2.6.1-cp310-cp310-macosx_11_0_arm64.whl
Size 104.7 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
dc2ecc8d3d49a178a7fc78ddcd8e6126c552c0d905de709eb9d4fe7cfba5f62b
BLAKE2b-256 checksum
How to use checksums
8e7f5cdc7de970f99be87b71c93d05bdef5886a3bd644da33ceedb37c0593e3f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl

Download URL bitarray-2.6.1-cp310-cp310-macosx_10_9_x86_64.whl
Size 105.8 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
391868f7c60993afddb33dd4f6de0fed3583572133c6c1fdb3301c423dcaa1bd
BLAKE2b-256 checksum
How to use checksums
8323c00dc021299e8a2918548d82e0ce2b415346360c25b4bd6347e5df438008
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp310-cp310-macosx_10_9_universal2.whl

Download URL bitarray-2.6.1-cp310-cp310-macosx_10_9_universal2.whl
Size 144.6 kB
Tags CPython 3.10 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
758e078c8b04e32fa2926b00484ba251fd4e580bff45c477a0d97de8d9aca26a
BLAKE2b-256 checksum
How to use checksums
e958d5d50662f1824fc9da552a263171eec86948bfd0a37bc8c257f61b707baa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp39-cp39-win_amd64.whl

Download URL bitarray-2.6.1-cp39-cp39-win_amd64.whl
Size 107.6 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
916f9025c672394a628b6fe1a27193c62f1947bcf075cbbebcf5b7f4869f0be6
BLAKE2b-256 checksum
How to use checksums
10fefc85965b47fef33ebd83a38bc3a296ead3d9d4ce1f0501d3ad5c3a6102c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp39-cp39-win32.whl

Download URL bitarray-2.6.1-cp39-cp39-win32.whl
Size 101.9 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
8aeb90e9ec5555618db564de6a4ec62eab6fd21233d8dee524a09941430ff6d5
BLAKE2b-256 checksum
How to use checksums
cade9882f05d8338712ed8cfbd6224c59d49dcc48825ecb0c87972776b67c9f6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp39-cp39-musllinux_1_1_x86_64.whl

Download URL bitarray-2.6.1-cp39-cp39-musllinux_1_1_x86_64.whl
Size 271.5 kB
Tags CPython 3.9 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
529da137751c0d619871f6886373428df19a268fcf96830c10e213f377947e3e
BLAKE2b-256 checksum
How to use checksums
1e67f324b024e5c7618bd7ec797f182b59d42cf40cf6c22c7c3eb2edcc26752f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp39-cp39-musllinux_1_1_s390x.whl

Download URL bitarray-2.6.1-cp39-cp39-musllinux_1_1_s390x.whl
Size 287.3 kB
Tags CPython 3.9 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
b24a9c8ad7cea786e4bad5780748efa4a3ba32b4457d173d49285cf22e64dc10
BLAKE2b-256 checksum
How to use checksums
c419645e6ca220c15450889e0b12e6b50435586d0648ebe39a5341a6e7f333d6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp39-cp39-musllinux_1_1_ppc64le.whl

Download URL bitarray-2.6.1-cp39-cp39-musllinux_1_1_ppc64le.whl
Size 282.3 kB
Tags CPython 3.9 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
d28f390dee46f7b8eec6378474f16935a9db2eb14b1f8eb7c3a42fc4218fe099
BLAKE2b-256 checksum
How to use checksums
48882eff31319d836f0f69794cc08267232a01805f123476cb912474c45ac0cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp39-cp39-musllinux_1_1_i686.whl

Download URL bitarray-2.6.1-cp39-cp39-musllinux_1_1_i686.whl
Size 260.3 kB
Tags CPython 3.9 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
6d1600401b0d673333f7b11e0a7da665c2502216031399444cf2217a3211d077
BLAKE2b-256 checksum
How to use checksums
0c673f6fe2191ae0fd9eddcfc4c75c1aab17290ee50c13e81c106a2ab2380dab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp39-cp39-musllinux_1_1_aarch64.whl

Download URL bitarray-2.6.1-cp39-cp39-musllinux_1_1_aarch64.whl
Size 271.6 kB
Tags CPython 3.9 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
cbb191a80bf728c2cfd8e06fb9c1ebe5a53cf9d36303e74260a8288317024b15
BLAKE2b-256 checksum
How to use checksums
cc7210e6b782fdc99dd4c6f4cbd6efc2253ef0ac1efe18d5be9c0657ca936789
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bitarray-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 240.1 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
72a68a3c7b134c6947ae4186edde865aae56bfe6a86f22b76fa6d5d53165fe43
BLAKE2b-256 checksum
How to use checksums
cd64a81056e13ccd52a4d5d8adc185790acafbb853ecabbfb7ac44e9b4cf10c3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bitarray-2.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 253.2 kB
Tags CPython 3.9 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
428785f992b774ba5eaf1c9dacca532c03b8db416a61898b21f09c91c9f924a4
BLAKE2b-256 checksum
How to use checksums
3a02363c7447b7cded6b4f5a7f26904fe3cd9c57a7a44291ce53e2cf42dc05a8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bitarray-2.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 251.1 kB
Tags CPython 3.9 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
cf8857f0e745c55d19a0ac2b36b43e70b782c0c29094b3941dfd77f69aae61b9
BLAKE2b-256 checksum
How to use checksums
01a6061b5dcb575ec341ee7d2c9bf57e080c0adfc7adcd4cdec98a768385dc6f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bitarray-2.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 238.7 kB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
411b1c01de6ba6581259cade18676f023447e22744ce1d5b44ff5beb3f7ef824
BLAKE2b-256 checksum
How to use checksums
ff1fe0030b33d84259d3d25d82a6e664bf7b35156abcc32f5618e7892f3a42e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL bitarray-2.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 230.1 kB
Tags CPython 3.9 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
df1b099d1b76c83db15164588b8abecf09fdbad665db7b550d40468e14087515
BLAKE2b-256 checksum
How to use checksums
e8bb80c476e1418e00ba86aa896a1b3ec6c83c8a64658a7d74c01731d1c0b2fe
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp39-cp39-macosx_11_0_arm64.whl

Download URL bitarray-2.6.1-cp39-cp39-macosx_11_0_arm64.whl
Size 104.7 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
61d57f9e4880fdf107ad5c9e84e3742ef8b5f67b5869e5da7b45d30ac8168129
BLAKE2b-256 checksum
How to use checksums
8445b88bcb0d4324464734e553cfc97a09917ad056354f136fa37b2e2a9e8399
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl

Download URL bitarray-2.6.1-cp39-cp39-macosx_10_9_x86_64.whl
Size 105.8 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
85ec485bbc08812594e5971d32dab4acd73ad347b388f8d0f299e4c0e154e29d
BLAKE2b-256 checksum
How to use checksums
fa556637a499cf83a96b3d6eec01028cb2b5626cb343dd302f163ee6b7742be9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp39-cp39-macosx_10_9_universal2.whl

Download URL bitarray-2.6.1-cp39-cp39-macosx_10_9_universal2.whl
Size 144.6 kB
Tags CPython 3.9 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
45d52a5f1b99ffa64cf0ff822d4efec848ccc4c5b62e22157cb5ec86c6cf4940
BLAKE2b-256 checksum
How to use checksums
855840c93b3c8ef524898caff6c634807b3e5c631a80487587083fa80eaee283
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp38-cp38-win_amd64.whl

Download URL bitarray-2.6.1-cp38-cp38-win_amd64.whl
Size 107.6 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
a57acfb28cebb79afde68f9b42c02c8f3e34a808a164e420a2c799035c01f579
BLAKE2b-256 checksum
How to use checksums
bf9658f6a319d6d00515f28ce9cee1a3917f1707bccc7467e8a4db0aad7dfcab
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp38-cp38-win32.whl

Download URL bitarray-2.6.1-cp38-cp38-win32.whl
Size 102.0 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
70ed1fa0141d3c4a17e529c096a8ed46a681ea1b7719f4022c7751e8a7be578a
BLAKE2b-256 checksum
How to use checksums
8d4952449650cafb1db1ca82d769936e5c0960212b77e3f3aa3db08d7977967f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp38-cp38-musllinux_1_1_x86_64.whl

Download URL bitarray-2.6.1-cp38-cp38-musllinux_1_1_x86_64.whl
Size 279.3 kB
Tags CPython 3.8 Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
f44c3c52446ea168466ac86bc215be3be49d8417133a7914f9ac7d83dd891714
BLAKE2b-256 checksum
How to use checksums
f4b540b3318e932f3e437e811ac31c92a4eed5ec7a6838345b03f5a965c2e868
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp38-cp38-musllinux_1_1_s390x.whl

Download URL bitarray-2.6.1-cp38-cp38-musllinux_1_1_s390x.whl
Size 296.1 kB
Tags CPython 3.8 Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
94da059dd7c7415d0857bcf271a5af626593b9b3b478fba2d9a1c03fd6fddf54
BLAKE2b-256 checksum
How to use checksums
e2efc3aa305e2f72dd7cac3cf30fcf294194632b7da18b14095ab738d0466250
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp38-cp38-musllinux_1_1_ppc64le.whl

Download URL bitarray-2.6.1-cp38-cp38-musllinux_1_1_ppc64le.whl
Size 292.0 kB
Tags CPython 3.8 Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
1bec2595891ca421c14f577937d889d164d3cd069a0caa7b3de003a822f0ec59
BLAKE2b-256 checksum
How to use checksums
a2ea8416bab2a3ae287ce25dced2cd54fc222b9657d1904fa8435507197d8246
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp38-cp38-musllinux_1_1_i686.whl

Download URL bitarray-2.6.1-cp38-cp38-musllinux_1_1_i686.whl
Size 267.7 kB
Tags CPython 3.8 Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
6f90dcf9e91ff9a15a5392d79ece61d02482a894d53e95cf26d78c620d3be65c
BLAKE2b-256 checksum
How to use checksums
72af5c6b3f68854171c8b6dd696fb792e179f0a071b045605c8fd26d23421e18
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp38-cp38-musllinux_1_1_aarch64.whl

Download URL bitarray-2.6.1-cp38-cp38-musllinux_1_1_aarch64.whl
Size 280.3 kB
Tags CPython 3.8 Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
98ad08c01b120f64aaea87d65395e8f43c74dedd8cc51d12d834687313c80059
BLAKE2b-256 checksum
How to use checksums
d065b2941acc6e392e5c635cdbb669e296ed53bff32f6bec5d35ae9910a73e45
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bitarray-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 241.8 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b2740880c8664a09ca0044ad251701fad5647b91959c1d036b27387e582e7abd
BLAKE2b-256 checksum
How to use checksums
96d47909e966f8396716e09a9e1d8b758e26a1bfa0ab7439b83805e6361ce325
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bitarray-2.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 255.1 kB
Tags CPython 3.8 Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
0867f4e48884ccf9e3324916122e20193f0f04ef407df58f76b29b0b7c4dde2e
BLAKE2b-256 checksum
How to use checksums
c543346c02cad5edb9c73066981bd1dc4395f0a24ff4be7632b333fa727782a6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bitarray-2.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 252.9 kB
Tags CPython 3.8 Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
2c5e137dd85a0fef71ac3d602dfd1fafadcdc54371e879b312290ec8ab75260d
BLAKE2b-256 checksum
How to use checksums
13b09a7d9bc1ea26a9893dd2a7809d048e469d5ab16626fbf7da63e4af27b049
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bitarray-2.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 241.1 kB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
779779bc7f4924a0e4d9d1ff3222c295571a56b597557faedcdd4f4c1067e8f6
BLAKE2b-256 checksum
How to use checksums
2107338db06c9f6c6dddcfcce6d991d8a905aa8a1b7bf129c22c070849f93746
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL bitarray-2.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 231.5 kB
Tags CPython 3.8 Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
a69cc8ddd15bb129306c8be7b9eb0e2a52b689a99daaa884f09ceba385313781
BLAKE2b-256 checksum
How to use checksums
0afc533f0af4b93ca7b92f9fed581778481649249bc8b2f14ff4bb78be049e6a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp38-cp38-macosx_11_0_arm64.whl

Download URL bitarray-2.6.1-cp38-cp38-macosx_11_0_arm64.whl
Size 104.9 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
0c139c9a89291989b45a09f1bc6911dd97695d31311f9ec466ae09cb56166fcb
BLAKE2b-256 checksum
How to use checksums
5cdbc6681d0eb11f7d2ce86822396efc6837ceff547410969a3a5d77840292f4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl

Download URL bitarray-2.6.1-cp38-cp38-macosx_10_9_x86_64.whl
Size 106.0 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
20fb3e6ea148548d7c2a50bcb4238d1c8c2be21f04e101ba648f5f28636a7cad
BLAKE2b-256 checksum
How to use checksums
821e84ed060a44250760899144c61580d5691b31c6ab18e8059c262db0e42e0a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp38-cp38-macosx_10_9_universal2.whl

Download URL bitarray-2.6.1-cp38-cp38-macosx_10_9_universal2.whl
Size 145.1 kB
Tags CPython 3.8 macOS 10.9+ universal2 (ARM64, x86-64)
SHA-256 checksum
How to use checksums
0abffbb04c6238430ce2ebec4254ed1136557c522f406cefad33aeca6dc15628
BLAKE2b-256 checksum
How to use checksums
65417cb7d64481aaacde3918be064bee09a5e67636dd1aaf235dd48549edd86f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp37-cp37m-win_amd64.whl

Download URL bitarray-2.6.1-cp37-cp37m-win_amd64.whl
Size 107.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
d252f88dd22a9786dbe78451e1776a09ab4fea5dbf151c0d97149b1a91499d5c
BLAKE2b-256 checksum
How to use checksums
150012efbf2f58e16b4f6d83267bc99e9ccb7365e5e3e5dbc8de9d46b5f99840
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp37-cp37m-win32.whl

Download URL bitarray-2.6.1-cp37-cp37m-win32.whl
Size 101.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
7cdf27dc8a20793ef52b1dbecb5aa0d62ce34700410b9681bffc3f3d89337d59
BLAKE2b-256 checksum
How to use checksums
8820d36df8bdf7b876c04cbdc069bfcea4b329e4a282f3b57e2b4842a0800d93
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp37-cp37m-musllinux_1_1_x86_64.whl

Download URL bitarray-2.6.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Size 260.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
d7f65a7d571d201f7cb45e35a6f90465137a4362b7ddc0dca98fe4bcc179af65
BLAKE2b-256 checksum
How to use checksums
3b3870c6e30b33d29bd705aaebc53673f51416ac51eb598e74e982fadb4e2d33
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp37-cp37m-musllinux_1_1_s390x.whl

Download URL bitarray-2.6.1-cp37-cp37m-musllinux_1_1_s390x.whl
Size 275.5 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
6955f750cc6a9d142e3ba323eb093ed8355cfdea648c35499bc45bdfd7da03b2
BLAKE2b-256 checksum
How to use checksums
33f293ead9295d198e92e3f0fcab7d39c6ff368075887a113360fdc5324e5cb2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp37-cp37m-musllinux_1_1_ppc64le.whl

Download URL bitarray-2.6.1-cp37-cp37m-musllinux_1_1_ppc64le.whl
Size 270.9 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
f9e76ba953713ab88da89d9fe811cc74391d422ce2dbc89bfb7b33c92582b104
BLAKE2b-256 checksum
How to use checksums
abd6fd028a6638fe64f4e9f26cb709b4ed837600f699639f50be07c2e2538f77
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp37-cp37m-musllinux_1_1_i686.whl

Download URL bitarray-2.6.1-cp37-cp37m-musllinux_1_1_i686.whl
Size 249.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
8c10449d1960009d8cb1b1c8e863671a092fdc8f952979562a1b60a1fd42172d
BLAKE2b-256 checksum
How to use checksums
c7ac4d71351c325d7d081c30b7ccafb006abe070709cce6431650586fc05501b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp37-cp37m-musllinux_1_1_aarch64.whl

Download URL bitarray-2.6.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Size 260.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
a6af2a375512fa86476412cde0b57a398164792567ebc4ac38bd789bdfb49a2b
BLAKE2b-256 checksum
How to use checksums
f93e133a8a1bde5b56d8f9d260638ea4bd49ee987439b546ab74a8daa8104b86
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bitarray-2.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 235.7 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
4a6af23cb8d3308d2424556f85ea99eb4aa673f279f9b55a3fc0f138df0170aa
BLAKE2b-256 checksum
How to use checksums
4135e90a40b4ce01fe3fe7e8dc4c119ece07391d782b4c8310c98c465012893c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bitarray-2.6.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 248.2 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
b6608473dea7905ef0b1b2a2153a8f6bd9a474c70166ff58e7092a965be2bf76
BLAKE2b-256 checksum
How to use checksums
3bb43f403508dea8779d78f4b562ff0c4f3230d9c7af5a7b4375c9f103d9bcbc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bitarray-2.6.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 245.1 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
ce95811e39e3483bdfd82423593a3c90b6df121010257af3aad28222221b6610
BLAKE2b-256 checksum
How to use checksums
e60b840ec4e15ffb01334eaf1ede61dc163fab939343bb43b49bc9bb6dca2fa0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bitarray-2.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 234.8 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
edb817e2943ba4702f8e0c8cfcec9228fff1379434d8c0ab4ee198bd121a2222
BLAKE2b-256 checksum
How to use checksums
eeb7c18881465398796dc0c64a914f9074ce4644ca04a554d53b63d58c98d6dc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL bitarray-2.6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 225.3 kB
Tags CPython 3.7 CPython 3.7 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
0649effe8f2b905c5160a30eaa56bda03bf322829f7bf9001d209391173b2764
BLAKE2b-256 checksum
How to use checksums
457e065805752cfc403d969e8774ec0bce2fe59c53b7bfc153a4ce23edd7a6cc
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl

Download URL bitarray-2.6.1-cp37-cp37m-macosx_10_9_x86_64.whl
Size 105.6 kB
Tags CPython 3.7 CPython 3.7 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
96a814c8350d97a31d0b7d4174f1ee8e335abc486bd5a4e8c7497314757546d6
BLAKE2b-256 checksum
How to use checksums
c113a093a37839760b4cc241cb66ceb3d86ac867c3fbac9799b54e21cc2b581c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp36-cp36m-win_amd64.whl

Download URL bitarray-2.6.1-cp36-cp36m-win_amd64.whl
Size 110.4 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-64
SHA-256 checksum
How to use checksums
47d6cdcc77e42e5e48ed04e009ec6371a972ca1ffefdfd66545bb7213754fb62
BLAKE2b-256 checksum
How to use checksums
5ed68b23c3ead4a1a4fdf46c471070e40747428afbafebb490167a4462e306e9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp36-cp36m-win32.whl

Download URL bitarray-2.6.1-cp36-cp36m-win32.whl
Size 103.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Windows x86-32
SHA-256 checksum
How to use checksums
2e6a2087ed0fd1e1ecf8729f89998304e22034d7b53baf689c94ddc101c7d6d5
BLAKE2b-256 checksum
How to use checksums
8ce49e9aea55f8042c0a18b627335880f349ec03041b8d958b5df008a4aac4da
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp36-cp36m-musllinux_1_1_x86_64.whl

Download URL bitarray-2.6.1-cp36-cp36m-musllinux_1_1_x86_64.whl
Size 258.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-64
SHA-256 checksum
How to use checksums
3b6d788f72e64d18cbc270e757e32b90ef1dbd1190614d67bb395ad1edc0cf58
BLAKE2b-256 checksum
How to use checksums
60410c8d86e456f58f36fb04bbac61fe958b2edb0d6705aa1a80adf55d7d8274
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp36-cp36m-musllinux_1_1_s390x.whl

Download URL bitarray-2.6.1-cp36-cp36m-musllinux_1_1_s390x.whl
Size 273.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ IBM System/390x
SHA-256 checksum
How to use checksums
1f22552be33cb8b5fa86c68ae21e3d512bb73c304cadfd2912857cd694c70159
BLAKE2b-256 checksum
How to use checksums
46d8bf0c6852647aba477b1b5eefc928c5fedaf08459efcd9e1807b67edde88c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp36-cp36m-musllinux_1_1_ppc64le.whl

Download URL bitarray-2.6.1-cp36-cp36m-musllinux_1_1_ppc64le.whl
Size 269.0 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ PowerPC 64-le
SHA-256 checksum
How to use checksums
db285a317ff423bbe6a7f11ae76de77e6bcf6f3584ce5a79e428f26b25a191b6
BLAKE2b-256 checksum
How to use checksums
b039b761316f505a1395a071e5120980d3f4d16db706c3eead9d061ca7451197
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp36-cp36m-musllinux_1_1_i686.whl

Download URL bitarray-2.6.1-cp36-cp36m-musllinux_1_1_i686.whl
Size 247.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ x86-32
SHA-256 checksum
How to use checksums
491f5360c787eaf9b809b258a43d88ab151770d6d0cb2b64a49516798f322ee2
BLAKE2b-256 checksum
How to use checksums
9ce0ef531a8bacdf77d48d9c100bd7ad902e8575692d936f051430d9526e0189
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp36-cp36m-musllinux_1_1_aarch64.whl

Download URL bitarray-2.6.1-cp36-cp36m-musllinux_1_1_aarch64.whl
Size 258.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux musl 1.1+ ARM64
SHA-256 checksum
How to use checksums
ea19a8a7a53894fc3ecf2f94829a72cf253fc08ea7e7d7d617e4f4f5bd5b7550
BLAKE2b-256 checksum
How to use checksums
b68df0cb38a3f8381a17d007c6c1feede0edc51896e8669256cee0b8bbbd20b7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL bitarray-2.6.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 235.4 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
b754b3e6d2e4699c5989734864492bdd47478c0b3fb225c03e2016fe01a5c109
BLAKE2b-256 checksum
How to use checksums
981d92b9b1b3b88acece94cff05b963f1455cf14fde312b01d87d7c6850a6944
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl

Download URL bitarray-2.6.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Size 247.9 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ IBM System/390x
SHA-256 checksum
How to use checksums
30b9fa3a1f52e9d395049be6c410e435d20ff8f97429896a40788d3b055cceca
BLAKE2b-256 checksum
How to use checksums
e507059c3c0f15121226bb06c07c802a52df7b6cf9a524abc8828f3ca53c10be
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl

Download URL bitarray-2.6.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Size 244.8 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ PowerPC 64-le
SHA-256 checksum
How to use checksums
8118fca0202467f4d6935836d597f43d840238b599c1ee1e3ef3a7ddeb8782c8
BLAKE2b-256 checksum
How to use checksums
2148488f39b8ff298b18446e8e82ab6b054f83d76e23a69736145c30dfab6afa
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL bitarray-2.6.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 234.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
7c3fa5743d1882a1f32f5b908065c7feb374fd43ae6e936442d532b71e7aff3c
BLAKE2b-256 checksum
How to use checksums
cc38876977d5ba0b7c4341bd8c067269edbbc0ac1ac420ba5931fc161cd1fd87
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl

Download URL bitarray-2.6.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Size 225.3 kB
Tags CPython 3.6 CPython 3.6 pymalloc Linux glibc 2.17+ x86-32 Linux glibc 2.5+ x86-32
SHA-256 checksum
How to use checksums
5ac5fb13391507aa33ee4189ed5e640ddbbfd7106fc4290677061f1b3b997fb0
BLAKE2b-256 checksum
How to use checksums
bc190c55ce1f27e58b676b06aed21e195688b2678c4af8e91ff984ff2271f470
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release files / bitarray-2.6.1-cp36-cp36m-macosx_10_9_x86_64.whl

Download URL bitarray-2.6.1-cp36-cp36m-macosx_10_9_x86_64.whl
Size 105.6 kB
Tags CPython 3.6 CPython 3.6 pymalloc macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
5123a30bc921158286f06259517b962e8c42c845572bd0be16de491ee990bede
BLAKE2b-256 checksum
How to use checksums
6a4800f95c46bcb7f747f2b25d324d35bc4d700964ea5f6279988b42037fab3b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/4.0.2 CPython/3.9.16

Release history Release notifications | RSS feed

2.7.4

87 release files

2.7.3

87 release files

2.7.2

87 release files

2.7.1

87 release files

This release

2.6.1 This release

87 release files

2.6.0

72 release files

2.5.1

72 release files

2.4.1

72 release files

2.3.7

1 release file

2.3.6

1 release file

2.3.5

1 release file

2.3.4

1 release file

2.3.3

1 release file

2.3.2

1 release file

2.3.1

1 release file

2.3.0

1 release file

2.2.5

1 release file

2.2.4

1 release file

2.2.3

1 release file

2.2.2

1 release file

2.2.1

1 release file

2.2.0

1 release file

2.1.3

1 release file

2.1.2

1 release file

2.1.1

1 release file

2.1.0

1 release file

2.0.1

1 release file

2.0.0

1 release file

1.9.2

1 release file

1.9.1

1 release file

1.9.0

1 release file

1.8.2

1 release file

1.8.1

1 release file

1.8.0

1 release file

1.7.1

1 release file

1.7.0

1 release file

1.6.3

1 release file

1.6.2

1 release file

1.6.1

1 release file

1.6.0

1 release file

1.5.3

1 release file

1.5.2

1 release file

1.5.1

1 release file

1.5.0

1 release file

1.4.2

1 release file

1.4.1

1 release file

1.4.0

1 release file

1.3.0

1 release file

1.2.2

1 release file

1.2.1

1 release file

1.2.0

1 release file

1.1.0

1 release file

1.0.1

1 release file

1.0.0

1 release file

0.9.3

1 release file

0.9.2

1 release file

0.9.1

1 release file

0.9.0

1 release file

0.8.3

1 release file

0.8.2

1 release file

0.8.1

1 release file

0.8.0

1 release file

0.7.0

1 release file

0.6.0

1 release file

0.5.2

1 release file

0.5.1

1 release file

0.5.0

1 release file

0.4.0

1 release file

0.3.5

6 release files

0.3.4

2 release files

0.3.3

1 release file

0.3.2

1 release file

0.3.1

1 release file

0.3.0

1 release file

0.2.5

1 release file

0.2.4

1 release file

0.2.3

1 release file

0.2.2

1 release file

0.2.1

1 release file

0.2.0

1 release file

0.1.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page