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 &=, |=, ^=, <<=, >>=).

  • Free-threading support (for GIL-disabled CPython 3.14 and later)

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

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

  • Efficient packing and unpacking for interoperability with byte-oriented objects such as NumPy arrays.

  • Pickling and unpickling of bitarray objects.

  • Immutable frozenbitarray objects which are hashable

  • Fast searching for bits and bit patterns

  • Type hinting

  • Extensive test suite with over 600 unit tests

  • Utility module bitarray.util:

    • conversion to and from hexadecimal strings

    • generating random bitarrays

    • pretty printing

    • conversion to and from integers

    • creating Huffman codes

    • compression of sparse bitarrays

    • run-length encoding

    • serialization and deserialization

    • various count functions

    • other helpful functions

Installation

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

$ pip 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
sys.prefix: /Users/ilan/miniforge
bitarray version: 3.11.0
sys.version: 3.14.5 (main, May 20 2026) [Clang 20.1.8]
sys.abiflags: ''
sys._is_gil_enabled(): True
pointer size: 64 bit
sizeof(size_t): 8
sizeof(bitarrayobject): 80
HAVE_BUILTIN_BSWAP64: 1
default bit-endianness: big
machine byte-order: little
Py_GIL_DISABLED: 0
Py_DEBUG: 0
DEBUG: 0
.....................................s...................................
..........s.....................................s........................
......s.........................................................
----------------------------------------------------------------------
Ran 654 tests in 0.192s

OK (skipped=4)

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

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

Usage

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

>>> from bitarray import bitarray
>>> a = bitarray()         # create empty bitarray
>>> a.append(1)
>>> a.extend([1, 0])
>>> a
bitarray('110')
>>> x = bitarray(2 ** 20)  # bitarray of length 1048576 (initialized to 0)
>>> len(x)
1048576
>>> bitarray('1001 011')   # initialize from string (whitespace is ignored)
bitarray('1001011')
>>> lst = [1, 0, False, True, True]
>>> a = bitarray(lst)      # initialize from iterable
>>> a
bitarray('10011')
>>> a[2]    # indexing a single item will always return an integer
0
>>> a[2:4]  # whereas indexing a slice will always return a bitarray
bitarray('01')
>>> a[2:3]  # even when the slice length is just one
bitarray('0')
>>> a.count(1)
3
>>> a.remove(0)            # removes first occurrence of 0
>>> a
bitarray('1011')

Like lists, bitarray objects support slice assignment and deletion:

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

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

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

This is easier and faster than:

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

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

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

As of bitarray version 2.8, indices may also be lists of arbitrary indices (like in NumPy), or bitarrays that are treated as masks, see Bitarray indexing.

Bitwise operators

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

>>> a = bitarray('101110001')
>>> ~a  # invert
bitarray('010001110')
>>> b = bitarray('111001011')
>>> a ^ b  # bitwise XOR
bitarray('010111010')
>>> a &= b  # inplace AND
>>> a
bitarray('101000001')
>>> a <<= 2  # in-place left-shift by 2
>>> a
bitarray('100000100')
>>> b >> 1  # return b right-shifted by 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

For many purposes the bit-endianness is not of any relevance to the end user and can be regarded as an implementation detail of bitarray objects. However, there are use cases when the bit-endianness becomes important. These use cases involve explicitly reading and writing the bitarray buffer using .tobytes(), .frombytes(), .tofile() or .fromfile(), importing and exporting buffers. Also, a number of utility functions in bitarray.util will return different results depending on bit-endianness, such as ba2hex() or ba2int. To better understand this topic, please read bit-endianness.

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-length prefix codes

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

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

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

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

Symbols are not limited to being characters. The above dictionary d can be efficiently constructed using the function bitarray.util.huffman_code(). I also wrote Huffman coding in Python using bitarray for more background information.

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

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

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

Frozenbitarrays

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

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

Reference

bitarray version: 3.11.0 – change log

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

Also, sub_bitarray refers to either a bitarray, or an item.

The bitarray object:

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

Return a new bitarray object whose items are bits initialized from the optional initializer, and bit-endianness. The initializer may be one of the following types: a.) int bitarray, initialized to zeros, of given length b.) bytes or bytearray to initialize buffer directly c.) str of 0s and 1s, ignoring whitespace and “_” d.) iterable of integers 0 or 1.

Optional keyword arguments:

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

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

New in version 2.3: optional buffer argument

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

bitarray methods:

all() -> bool

Return True when all bits in bitarray are 1. a.all() is a faster version of all(a).

any() -> bool

Return True when any bit in bitarray is 1. a.any() is a faster version of any(a).

append(item, /)

Append item to the end of the bitarray.

buffer_info() -> BufferInfo

Return named tuple with following fields:

  1. address: memory address of buffer

  2. nbytes: buffer size (in bytes)

  3. endian: bit-endianness as a string

  4. padbits: number of pad bits

  5. alloc: allocated memory for buffer (in bytes)

  6. readonly: memory is read-only (bool)

  7. imported: buffer is imported (bool)

  8. exports: number of buffer exports

New in version 3.7: return named tuple

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

For each byte in byte-range(start, stop) reverse bits in-place. The start and stop indices are given in terms of bytes (not bits) and are interpreted like slice bounds and clipped to the buffer size. Also note that this method only changes the buffer; it does not change the bit-endianness of the bitarray object. Pad bits are left unchanged such that two consecutive calls will always leave the bitarray unchanged.

New in version 2.2.5: optional start and stop arguments

New in version 3.9.1: clip arguments instead of raising IndexError

clear()

Remove all items from bitarray.

New in version 1.4

copy() -> bitarray

Return copy of bitarray (with same bit-endianness).

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

Number of occurrences of value bitarray within [start:stop:step]. Optional arguments start, stop and step are interpreted in slice notation, meaning a.count(value, start, stop, step) equals a[start:stop:step].count(value). The value may also be a sub-bitarray. In this case non-overlapping occurrences are counted within [start:stop] (step must be 1).

New in version 1.1.0: optional start and stop arguments

New in version 2.3.7: optional step argument

New in version 2.9: add non-overlapping sub-bitarray count

decode(code, /) -> decodeiterator

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

See also: Bitarray 3 transition

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

New in version 3.9: returns public decodeiterator object

encode(code, iterable, /)

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

extend(iterable, /)

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

New in version 3.4: allow bytes object

fill() -> int

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

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

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

New in version 2.1

New in version 2.9: add optional keyword argument right

frombytes(bytes, /)

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

New in version 2.5.0: allow bytes-like argument

fromfile(f, n=-1, /)

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

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

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

New in version 2.9: add optional keyword argument right

insert(index, value, /)

Insert value into bitarray before index.

invert(index=<all bits>, /)

Invert bits in-place. When index is omitted, invert all bits. When index is an integer, invert the single bit at index. When index is a slice, invert the selected bits.

New in version 1.5.3: optional index argument

pack(bytes, /)

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

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

New in version 2.5.0: allow bytes-like argument

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

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

remove(value, /)

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

reverse()

Reverse all bits in bitarray (in-place).

rotate(k=1, /)

Rotate bitarray in-place by k positions. Positive k rotates right, negative k rotates left.

When bitarray a is not empty, rotating one step to the right is equivalent to a.insert(0, a.pop()), and rotating one step to the left is equivalent to a.append(a.pop(0)). The same convention is used by the .rotate() method of the collections.deque object.

New in version 3.9

search(sub_bitarray, start=0, stop=<end>, /, right=False) -> iterator

Return iterator over indices where sub_bitarray is found, such that sub_bitarray is contained within [start:stop]. The indices are iterated in ascending order (from lowest to highest), unless right=True, which will iterate in descending order (starting with rightmost match).

For example, a.search(1) is the easiest (and most efficient) way to create an iterator over all active indices in a.

See also: Bitarray 3 transition

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

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

setall(value, /)

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

sort(reverse=False)

Sort all bits in bitarray (in-place).

to01(group=0, sep=' ') -> str

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

New in version 3.3: optional group and sep arguments

tobytes() -> bytes

Return the bitarray buffer (pad bits are set to zero). a.tobytes() is equivalent to bytes(a)

tofile(f, /)

Write bitarray buffer to file object f.

tolist() -> list

Return bitarray as list of integers. a.tolist() equals list(a).

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

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

Return bytes that contain one byte for each bit in the bitarray, using the specified mapping.

bitarray data descriptors:

Data descriptors were added in version 2.6.

endian -> str

bit-endianness as Unicode string

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

nbytes -> int

buffer size in bytes

padbits -> int

number of pad bits

readonly -> bool

bool indicating whether buffer is read-only

decodeiterator methods:

skipbits(n, /) -> bitarray

Skip over the next n bits and return them. Raises ValueError if count is out of range.

New in version 3.9

decodeiterator data descriptors:

index -> int

current bit position to be decoded by subsequent next

New in version 3.9

decodetree methods:

nodes() -> tuple

Return tuple with number of:

  1. incomplete nodes (pointing to a single child node)

  2. complete nodes (pointing to two child nodes)

  3. leaf nodes (pointing to a symbol)

New in version 3.10

todict() -> dict

Return a dict mapping the symbols to frozenbitarrays. This dict is a reconstruction of the code dict which the object was created with.

New in version 3.10

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(). The prefix code length cannot exceed 256 bits.

New in version 1.6

Functions defined in the bitarray module:

bits2bytes(n, /) -> int

Return the number of bytes necessary to store n bits.

get_default_endian() -> str

Return the default bit-endianness for new bitarray objects being created.

New in version 1.3

test(verbosity=1) -> TextTestResult

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

Functions defined in bitarray.util module:

This sub-module was added in version 1.2.

any_and(a, b, /) -> bool

Efficient implementation of any(a & b).

New in version 2.7

ba2base(n, bitarray, /, group=0, sep=' ') -> str

Return a string containing the base n ASCII representation of the bitarray. Allowed values for n are 2, 4, 8, 16, 32 and 64. The bitarray has to have a length divisible by 1, 2, 3, 4, 5 or 6 respectively. For n=32 the RFC 4648 Base32 alphabet is used, and for n=64 the standard base 64 alphabet is used. When grouped, the string sep is inserted between groups of group characters, default is a space.

See also: Bitarray representations

New in version 1.9

New in version 3.3: optional group and sep arguments

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

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

New in version 3.3: optional group and sep arguments

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

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

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

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

See also: Bitarray representations

New in version 1.9

New in version 3.3: ignore whitespace

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

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

We should mention that Python’s array.array object has a method .byteswap() with similar functionality. However, unlike bitarray’s util.byteswap() function, this method is limited to swapping 2, 4, or 8 consecutive bytes.

New in version 3.4

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

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

See also: Canonical Huffman Coding

New in version 2.5

canonical_huffman(dict, /) -> tuple

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

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

  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

New in version 3.10: return a codedict mapping to frozenbitarrays

correspond_all(a, b, /) -> tuple

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

New in version 3.4

count_and(a, b, /) -> int

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

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

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

New in version 2.3.6: optional value argument

count_or(a, b, /) -> int

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

count_xor(a, b, /) -> int

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

This is also known as the Hamming distance.

deserialize(bytes, /) -> bitarray

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

See also: Bitarray representations

New in version 1.8

New in version 2.5.0: allow bytes-like argument

gen_primes(n, /, endian=None, odd=False) -> bitarray

Generate a bitarray of length n in which active indices are prime numbers. By default (odd=False), active indices correspond to prime numbers directly. When odd=True, only odd prime numbers are represented in the resulting bitarray a, and a[i] corresponds to 2*i+1 being prime or not.

Apart from working with prime numbers, this function is useful for testing, as it provides a simple way to create a well-defined bitarray of any length.

New in version 3.7

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

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

New in version 3.3: ignore whitespace

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

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

New in version 3.10: return a codedict mapping to frozenbitarrays

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

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

intervals(bitarray, /) -> iterator

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

New in version 2.7

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

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

New in version 2.9

parity(a, /) -> int

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

New in version 1.9

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

Pretty-print bitarray object to stream, defaults to sys.stdout. By default, bits are grouped in bytes (8 bits), and 64 bits per line. Non-bitarray objects are printed using pprint.pprint().

New in version 1.8

random_k(n, /, k, endian=None) -> bitarray

Return (pseudo-) random bitarray of length n with k elements set to one. Mathematically equivalent to setting (in a bitarray of length n) all bits at indices random.sample(range(n), k) to one. The random bitarrays are reproducible when calling Python’s random.seed() with a specific seed value.

New in version 3.6

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

Return (pseudo-) random bitarray of length n, where each bit has probability p of being one (independent of any other bits). Mathematically equivalent to bitarray((random() < p for _ in range(n)), endian), but much faster for large n. The random bitarrays are reproducible when calling Python’s random.seed() with a specific seed value.

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

See also: Random Bitarrays

New in version 3.5

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

Decode a run-length encoded bitarray from a 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 rl_encode() for encoding.

See also: Comparison of bitarray codecs

New in version 3.11

rl_encode(bitarray, /) -> bytes

Return the run-length encoded binary representation of a bitarray. This representation may be useful for bitarrays with long runs of identical bits. Use rl_decode() for decoding.

See also: Comparison of bitarray codecs

New in version 3.11

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, Comparison of bitarray codecs

New in version 2.7

sc_encode(bitarray, /) -> bytes

Compress a bitarray using sparse encoding 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, Comparison of bitarray codecs

New in version 2.7

sc_stat(stream) -> dict

Scan a stream produced by sc_encode() and return a dictionary containing its bit-endianness (endian), length (nbits), and the number of blocks of each type (blocks). blocks is a list such that blocks[i] is the number of blocks of type i.

Like sc_decode(), it consumes one encoded bitarray and leaves remaining input untouched.

See also: Compression of sparse bitarrays

New in version 3.11

serialize(bitarray, /) -> bytes

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

See also: Bitarray representations

New in version 1.8

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

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

subset(a, b, /) -> bool

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

sum_indices(a, /, mode=1) -> int

Return sum of indices of all active bits in bitarray a. Equivalent to sum(i for i, v in enumerate(a) if v). mode=2 sums square of indices.

New in version 3.6

New in version 3.7: add optional mode argument

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

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

New in version 1.7

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

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

See also: Variable length bitarray format, Comparison of bitarray codecs

New in version 2.2

vl_encode(bitarray, /) -> bytes

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

See also: Variable length bitarray format, Comparison of bitarray codecs

New in version 2.2

xor_indices(a, /) -> int

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

New in version 3.2

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

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

Download files

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

Source Distribution

bitarray-3.11.0.tar.gz (174.9 kB view details)

Uploaded Source

Built Distributions

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

bitarray-3.11.0-cp314-cp314t-win_arm64.whl (169.1 kB view details)

Uploaded CPython 3.14tWindows ARM64

bitarray-3.11.0-cp314-cp314t-win_amd64.whl (173.9 kB view details)

Uploaded CPython 3.14tWindows x86-64

bitarray-3.11.0-cp314-cp314t-win32.whl (162.9 kB view details)

Uploaded CPython 3.14tWindows x86

bitarray-3.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl (397.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

bitarray-3.11.0-cp314-cp314t-musllinux_1_2_s390x.whl (416.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ s390x

bitarray-3.11.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (418.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

bitarray-3.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl (395.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

bitarray-3.11.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (401.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

bitarray-3.11.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (435.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

bitarray-3.11.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (421.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

bitarray-3.11.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (399.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bitarray-3.11.0-cp314-cp314t-macosx_11_0_arm64.whl (170.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

bitarray-3.11.0-cp314-cp314t-macosx_10_13_x86_64.whl (173.5 kB view details)

Uploaded CPython 3.14tmacOS 10.13+ x86-64

bitarray-3.11.0-cp314-cp314-win_arm64.whl (165.8 kB view details)

Uploaded CPython 3.14Windows ARM64

bitarray-3.11.0-cp314-cp314-win_amd64.whl (170.3 kB view details)

Uploaded CPython 3.14Windows x86-64

bitarray-3.11.0-cp314-cp314-win32.whl (159.6 kB view details)

Uploaded CPython 3.14Windows x86

bitarray-3.11.0-cp314-cp314-musllinux_1_2_x86_64.whl (382.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

bitarray-3.11.0-cp314-cp314-musllinux_1_2_s390x.whl (400.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ s390x

bitarray-3.11.0-cp314-cp314-musllinux_1_2_ppc64le.whl (402.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

bitarray-3.11.0-cp314-cp314-musllinux_1_2_aarch64.whl (379.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

bitarray-3.11.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (385.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

bitarray-3.11.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (419.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

bitarray-3.11.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (405.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

bitarray-3.11.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (381.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bitarray-3.11.0-cp314-cp314-macosx_11_0_arm64.whl (166.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

bitarray-3.11.0-cp314-cp314-macosx_10_13_x86_64.whl (170.4 kB view details)

Uploaded CPython 3.14macOS 10.13+ x86-64

bitarray-3.11.0-cp313-cp313-win_arm64.whl (166.4 kB view details)

Uploaded CPython 3.13Windows ARM64

bitarray-3.11.0-cp313-cp313-win_amd64.whl (171.3 kB view details)

Uploaded CPython 3.13Windows x86-64

bitarray-3.11.0-cp313-cp313-win32.whl (160.8 kB view details)

Uploaded CPython 3.13Windows x86

bitarray-3.11.0-cp313-cp313-musllinux_1_2_x86_64.whl (382.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

bitarray-3.11.0-cp313-cp313-musllinux_1_2_s390x.whl (401.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ s390x

bitarray-3.11.0-cp313-cp313-musllinux_1_2_ppc64le.whl (402.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

bitarray-3.11.0-cp313-cp313-musllinux_1_2_aarch64.whl (379.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

bitarray-3.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (385.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

bitarray-3.11.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (420.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

bitarray-3.11.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (405.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

bitarray-3.11.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (381.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bitarray-3.11.0-cp313-cp313-macosx_11_0_arm64.whl (166.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

bitarray-3.11.0-cp313-cp313-macosx_10_13_x86_64.whl (170.4 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

bitarray-3.11.0-cp312-cp312-win_arm64.whl (166.6 kB view details)

Uploaded CPython 3.12Windows ARM64

bitarray-3.11.0-cp312-cp312-win_amd64.whl (171.5 kB view details)

Uploaded CPython 3.12Windows x86-64

bitarray-3.11.0-cp312-cp312-win32.whl (160.9 kB view details)

Uploaded CPython 3.12Windows x86

bitarray-3.11.0-cp312-cp312-musllinux_1_2_x86_64.whl (384.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

bitarray-3.11.0-cp312-cp312-musllinux_1_2_s390x.whl (402.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ s390x

bitarray-3.11.0-cp312-cp312-musllinux_1_2_ppc64le.whl (404.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

bitarray-3.11.0-cp312-cp312-musllinux_1_2_aarch64.whl (381.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

bitarray-3.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (387.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

bitarray-3.11.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (422.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

bitarray-3.11.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (406.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

bitarray-3.11.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (383.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bitarray-3.11.0-cp312-cp312-macosx_11_0_arm64.whl (166.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

bitarray-3.11.0-cp312-cp312-macosx_10_13_x86_64.whl (170.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

bitarray-3.11.0-cp311-cp311-win_arm64.whl (166.4 kB view details)

Uploaded CPython 3.11Windows ARM64

bitarray-3.11.0-cp311-cp311-win_amd64.whl (171.2 kB view details)

Uploaded CPython 3.11Windows x86-64

bitarray-3.11.0-cp311-cp311-win32.whl (160.6 kB view details)

Uploaded CPython 3.11Windows x86

bitarray-3.11.0-cp311-cp311-musllinux_1_2_x86_64.whl (380.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

bitarray-3.11.0-cp311-cp311-musllinux_1_2_s390x.whl (399.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ s390x

bitarray-3.11.0-cp311-cp311-musllinux_1_2_ppc64le.whl (402.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

bitarray-3.11.0-cp311-cp311-musllinux_1_2_aarch64.whl (378.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

bitarray-3.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (383.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

bitarray-3.11.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (418.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

bitarray-3.11.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (404.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

bitarray-3.11.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (380.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bitarray-3.11.0-cp311-cp311-macosx_11_0_arm64.whl (166.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

bitarray-3.11.0-cp311-cp311-macosx_10_9_x86_64.whl (170.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

bitarray-3.11.0-cp310-cp310-win_arm64.whl (166.1 kB view details)

Uploaded CPython 3.10Windows ARM64

bitarray-3.11.0-cp310-cp310-win_amd64.whl (170.7 kB view details)

Uploaded CPython 3.10Windows x86-64

bitarray-3.11.0-cp310-cp310-win32.whl (160.5 kB view details)

Uploaded CPython 3.10Windows x86

bitarray-3.11.0-cp310-cp310-musllinux_1_2_x86_64.whl (371.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

bitarray-3.11.0-cp310-cp310-musllinux_1_2_s390x.whl (390.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ s390x

bitarray-3.11.0-cp310-cp310-musllinux_1_2_ppc64le.whl (393.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

bitarray-3.11.0-cp310-cp310-musllinux_1_2_aarch64.whl (369.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

bitarray-3.11.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (374.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

bitarray-3.11.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (409.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

bitarray-3.11.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (395.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

bitarray-3.11.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (371.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bitarray-3.11.0-cp310-cp310-macosx_11_0_arm64.whl (166.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

bitarray-3.11.0-cp310-cp310-macosx_10_9_x86_64.whl (170.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

bitarray-3.11.0-cp39-cp39-win_arm64.whl (166.0 kB view details)

Uploaded CPython 3.9Windows ARM64

bitarray-3.11.0-cp39-cp39-win_amd64.whl (170.5 kB view details)

Uploaded CPython 3.9Windows x86-64

bitarray-3.11.0-cp39-cp39-win32.whl (160.5 kB view details)

Uploaded CPython 3.9Windows x86

bitarray-3.11.0-cp39-cp39-musllinux_1_2_x86_64.whl (369.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

bitarray-3.11.0-cp39-cp39-musllinux_1_2_s390x.whl (386.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ s390x

bitarray-3.11.0-cp39-cp39-musllinux_1_2_ppc64le.whl (390.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ppc64le

bitarray-3.11.0-cp39-cp39-musllinux_1_2_aarch64.whl (367.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

bitarray-3.11.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (372.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

bitarray-3.11.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (405.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

bitarray-3.11.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (392.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

bitarray-3.11.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (369.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bitarray-3.11.0-cp39-cp39-macosx_11_0_arm64.whl (166.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

bitarray-3.11.0-cp39-cp39-macosx_10_9_x86_64.whl (170.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

bitarray-3.11.0-cp38-cp38-win_amd64.whl (170.3 kB view details)

Uploaded CPython 3.8Windows x86-64

bitarray-3.11.0-cp38-cp38-win32.whl (160.5 kB view details)

Uploaded CPython 3.8Windows x86

bitarray-3.11.0-cp38-cp38-musllinux_1_2_x86_64.whl (370.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

bitarray-3.11.0-cp38-cp38-musllinux_1_2_s390x.whl (386.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ s390x

bitarray-3.11.0-cp38-cp38-musllinux_1_2_ppc64le.whl (390.9 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ppc64le

bitarray-3.11.0-cp38-cp38-musllinux_1_2_aarch64.whl (367.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

bitarray-3.11.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (374.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

bitarray-3.11.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl (407.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390xmanylinux: glibc 2.28+ s390x

bitarray-3.11.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl (394.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64lemanylinux: glibc 2.28+ ppc64le

bitarray-3.11.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (371.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

bitarray-3.11.0-cp38-cp38-macosx_11_0_arm64.whl (166.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

bitarray-3.11.0-cp38-cp38-macosx_10_9_x86_64.whl (170.4 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: bitarray-3.11.0.tar.gz
  • Upload date:
  • Size: 174.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0.tar.gz
Algorithm Hash digest
SHA256 bf19437ec00ec3d40aef82eaeedc14cf4000be9b635c4f5049796506e6630dd8
MD5 07b44aa7a18fa6f800bf30cbe4a6e978
BLAKE2b-256 04f76765577df59e2345036e435f7e983e1c291d67b7d76a51918eff04ad1494

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: bitarray-3.11.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 169.1 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 b1fb6d974e70eb5d4b5845fb890024154a85017f2101d11681c3836332cc0cbb
MD5 099111144f460721fa3b5d3eec38ff91
BLAKE2b-256 8138dee63b46edc4b55e8b84dfdb014f57c3683808575727f725eff30402526a

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: bitarray-3.11.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 173.9 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7d1c46e15d426d88420877a8a56aeb70fa5487c53c42185937254bbc076d3af8
MD5 4072bdfe6950ab1748900aff240f7d83
BLAKE2b-256 9ee12b196b35a23940927f356cf3fa05940fcba80375004428196cea78e54777

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: bitarray-3.11.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 162.9 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 22befa4557bddcc4bbb9e565ae73635b6d7abdefc35a3fa784b9d534f86e6605
MD5 5c9fc327cd252a66ea19aa2430ed3453
BLAKE2b-256 a121c4a80e51de940e92cd6c495ba8721689528a2ed341214e3315b98936b1b6

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b2e67fb3527d15b32b641dd2c3bd15eceb3407877d717e06ef98b60792606e1d
MD5 94f1cfd712db14f2440d9c56806b027b
BLAKE2b-256 e96458dc0380dc1e2251d317866795eff06b66411be93bff0e6c515ee9940764

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314t-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314t-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c1019995c19fdfbf53226d8c8af95523fbd9c74f5c375ccc0673ccf39eb14c31
MD5 41faf17896676541482103242264eee1
BLAKE2b-256 71c48bc1d4773811bee5ea2a90ab5c0a9ff5136b92e8c709bd44843fedf180c6

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 769d93669a90e33282eaccb33537a4a80b314e476ed16fc986e0148bcc72ceb3
MD5 de10d676078a5c87f312debd32b39ccd
BLAKE2b-256 7604ee178b856b464bee6ce440ef3bba650d353b8f61739dac9c515b4db763d3

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 24122b069859bf99d50ae785f56deb0e97dd53d60bf2b47db5954d48cce84e97
MD5 00f2c137d8d3ed4c17b1a0bb509cad18
BLAKE2b-256 cc20dff72ab5b0d4ca0e0e17f1d8a7eeca1056694530d8ee1c07786608a0fd03

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 386503399eec57cbfa73d63509315e557460ac20e2e12efb29c4163f171bdae6
MD5 7dfe243dffd19f359a581f0d01603c89
BLAKE2b-256 196449c3a00cdc50f493c6602412d55c8d23f45456c24ce396ce98c9afdeeea2

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314t-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 bca7decc355277a7bc4fb315e90d557341c1e0558488f6dcd2101fd410db6307
MD5 c82593a1cb959e9793920274023e192c
BLAKE2b-256 da0ac0ddb4f07c6ce3d1d291e70764726579014cb053947baef4f25f29847073

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314t-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ff7cd750397eb61cb43bd368a4e1f7ce8897ab3bd26e7e5b90a60ec339588df0
MD5 a54a2feb4bd79397639a96ce1a51795a
BLAKE2b-256 a79ba1ae98f605f70986e657337f794ba55c951b716a1258994b2fcb239aeaf7

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb7ad4e6ee69cf53f12bdb7b306964dcdf8d58c20180c8d841eba029fc7b4847
MD5 ad4e7a92a7e6138e8c0f437fe364c933
BLAKE2b-256 a21d94a2b18c630c2c7c584628a3a6a5a553105685053b4cf42b35be61f59e4f

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12249fecc687925e29a7879d8705a0af49305e5e3c7d5fe694586a2e6704ec0c
MD5 88a512e55772339f4660f5cc995452f4
BLAKE2b-256 8ab4f48ad58cdb839a4671ad3b7047c87e644373116d1783a53b980df58bda8a

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314t-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314t-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 fbd3da71fcc23143f901a2c7698f3a10017ec8f1d0f7740b6854e907f860cb04
MD5 14648ac8490e65f6c7957796654cd9ba
BLAKE2b-256 b4ced59d334f75828a23d63fd6683ecac7586acf54c451a805f165c1e03f67e3

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: bitarray-3.11.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 165.8 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 04eb0d6c554e8769c492da71ef503fa955c1b078676b6a44d7e8d5e0808e53a8
MD5 ca0bedfada649a79325545a4680eb5f0
BLAKE2b-256 cb3b9ccbe425391b45b9be6c9fbbf47e6282d4c4a493fb54cd3d9173325ceef8

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: bitarray-3.11.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 170.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e5efe99e2525d288eeeb5f71a026a2d5280702f73c835a2bac58f2932adf6af9
MD5 2d119356b3ceed691b76d6943232b33f
BLAKE2b-256 0c6cb3ba8c2a16b27e15fa1cacfef5fe26c9fe46009d87ffe8ff5fb2ff2bade5

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: bitarray-3.11.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 159.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cccc658d26c464409c46b9c41028a1c3c5da90bec6e7330c69a646f34199451a
MD5 517cc2f6d20521575aa27fc1d77ac6c0
BLAKE2b-256 815beeddc9f25f87089e1130736ce76cdb83472ee5b7ec661ce3699a90a7dfd8

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d3763f5061d890c522ee7a16c42c7fedbd114d8a031f6121471504704a70253
MD5 4914f9b66b0bc33fe17249fa93a0ff4b
BLAKE2b-256 c2a35660a10d58e26684b3fa146c6d13738b43531d31c53a15e7fb15cf0f15e3

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314-musllinux_1_2_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 db35aa7cc2f236d8bef09da1a67fe145e376b7ca5f95195dd6fc9dcd82cc4ce2
MD5 a5d6bbf993b092e2d195f5a0f0647d3c
BLAKE2b-256 cdb6e0901fa042acb68660f5e8c7878c2a224edf3b302c285b407b0c0d2cb279

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 18e93f9822deca48eaa584b2bd3b165bb6e217f7e9b9538a3fb048ac1ae13ba2
MD5 719390381273a4cb21592d9820c47db5
BLAKE2b-256 1b4b687726f642f99838c6ee73274f92cd4e1b6c1c54ab0d3a6f22f39c5d00de

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d66597cdffaffe106f057874c9e95e4f84c4ee701a271b6213325ebd423ce13b
MD5 db75df705b3751974cd41e501a2c377b
BLAKE2b-256 bac1db6aacd25012850f9bfc5c7d75795f422dfe64402b51e2060e234dbda311

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f5c5f9b79689a6826a4d4dd912506028538b672fc93533d0b2b6247406751e54
MD5 5b12f5e5ed11d52d791d1fc01d8b63ca
BLAKE2b-256 c80c41be0d828047ad1eb4eac6fb797de530e0fbcf7a063f2cf28736b55b1616

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4b38439576ba0074ee454f1289396f51ffe1713b8a1077820be555bd5de0b737
MD5 0f3c5aea6bc0584db221b62173e51bad
BLAKE2b-256 6d375db8074f92eab2adeeb79f7199c84ee0cb147091351f16cbe0c36c6b1e55

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3f87ce5c81d7f4a54b360731f8816c0106e9dc64ef4a2c4b9821840cf3e90791
MD5 3b62493cc2f89e870c5cc64d10e32177
BLAKE2b-256 502f4ec1602a2360d28b12c886b26d65551e412ff883733536897aea16f33051

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 403800cb9108b215b409c41b1c29be75c291813f40ba5db9099ca10294cc7648
MD5 3fe540ca6add638d64541b5ffa35a5d2
BLAKE2b-256 cc4cd4c6bf15064163365faeacf94b562f117d44eaed84699933da8b0548aec9

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52e3cfb4fb883a81c80b14e9286030e9417627223d30e81e1397cd39f338aaf4
MD5 59dc582a4922fca1e5f871a0d9520453
BLAKE2b-256 a55e2f9068db6f9efd4ac473e836d23392c4f94417908b2fbaa28acb2b9332a5

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp314-cp314-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp314-cp314-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c231217ef0ec0352d9327eaa61c0ab26252ad6b9a90002365f603470869a48d2
MD5 c4c7cf2f6ac8a96de492488869d2c5e7
BLAKE2b-256 450d304537f7d1c70a64ee862f6f64ffb94a8869a6214c9d7fc2eca17b72c1c3

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: bitarray-3.11.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 166.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 36da946f64e10e28b23f345fde90f4d14e9c2e9013364fe04d9b2013e7291285
MD5 9794ec6dad70b408e6c9aae04b164941
BLAKE2b-256 163ab0a29fc2379c567eb49730022c5913ad85b2f9ccda1b841737f756e1fb87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.11.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 171.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b4afbb464a1db2d37858bd3b87bd59a76b4aae5e29ec007a9fd00bf5a911e1da
MD5 1f36f03f9ac3f00df3a0a937fbed80a0
BLAKE2b-256 d29bb10ebf5e9a479815d2d54908617c0c55b255965389d3132927c9cd9ccf86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.11.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 160.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 387b64dc54be3732a0988bf3731fc06d7d4f52dc9470d1a5479e8ce2b67d368b
MD5 777611e2ae4d8896417ab7c47249ca4b
BLAKE2b-256 4d8b8d95483688bcf297654c87b65ef1847fad794adb083d294da65ac275d4fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d084fa59c94d3fec7eac6793e08162fa697aa4e70b9f519618c29d3e54eda752
MD5 05d7aafc6ed8aeda31ea6b0e20064af5
BLAKE2b-256 e8152d5dd4107e49b2c0040bc9cc48ee5af7f45772fedae3bc54fa987aeeedf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp313-cp313-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 8b77aa18131418b869be882df1c5e229fb02f90861783bbe638d9ebe296e9209
MD5 aa9836622455b9cc3478421f09e22d49
BLAKE2b-256 93a74ffc5984f3f4a12458adbceff60def49752f74807945771428f97694aec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9808734d1e5fd2839660a9db1abfe93e9d64b2aa9ed59aa480193ad93e8d620e
MD5 4c13e5821266c5db08cb1515c7587aea
BLAKE2b-256 0666b67544886466ede3d26e58c43d9841cc427d4fdcd81ded4087313687241a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d62e73fcdd273d07b1e9699de0e66e4d367b28c554c86bfe7c92029337c2a414
MD5 e6d075eb4a9345fb407d1ba53c57dcf4
BLAKE2b-256 365853845d1ddbe6077b61e7f39f586f7f35f18ce7dc47f178331e4fd64f59e1

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5605c8e74f95f77dd1b93c8c83d6fefe0d41d2704683d4a72152ca5284e2546d
MD5 50182a64f1c87ae50e0db4399f54942d
BLAKE2b-256 8f1f2c7b1a995af9814b6ec5ee69333a0a6131924ed0f3f10ffbd73c22c0a6ad

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 86dfaab663a2ad16ed2f6252116cf034cfc84282aa744f19a9a66542e85c9ca9
MD5 4482ae06855da34b6b7a7e2a2a5a5b86
BLAKE2b-256 564ccce77df63010304704eb802d884d9b11c84f63a02d7c4081a41225e25343

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 de25b8c76fe9fe7d9c6bce2832096f020133e1d21e2841abd7280937bf90e56e
MD5 b444086fa7d42bc850b2c5b01a870cbd
BLAKE2b-256 0dcee9ba5d080302c4d6fa269bccc7ad6ed4a5ad36a1dc75baae334714bbc183

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 962dc3e5622a08bb1c1ad429a9f7dace7efadd7fef1fcdf1628a6db142333256
MD5 d76ca733b8254456aa2f470981dc4f9d
BLAKE2b-256 78adf94c267873f0c80705dcef602af0a8d3f42838197e8fff01033f2a8084c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ece8caff2fb31d6c69430d3dfc0efff70083e66b012f7f5de60cfe5dca98ba87
MD5 a357c9d84334a33ddadd5855d9560969
BLAKE2b-256 9a303f982be25cf0c858351490b6d0cf6168e8668bb81e3daac25d8a3b2b8e44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 ac322a81c3c938c13093d8d77c419093f50118c29fbfa9eb80813d93af1a2d95
MD5 bf92855f556aa64b823bf9210e7599b3
BLAKE2b-256 2d3d578c4b63b3c1f206dfe7f7f60e941ca2d0aafd9da43943c076c01e976ec0

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: bitarray-3.11.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 166.6 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 9aafe7dc6d568470f5c297d0b15acddd3afc1677c983f0460b28f8cac4e9360c
MD5 cf9a371fd4f67987368e5151b100ff72
BLAKE2b-256 a859f21b457eb6ab683ccf755093550ec1408e8ec8a66b980653c99740b85552

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.11.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 171.5 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5db38c0a36d07190c3629c65dab2504233a56b1c35d8b1cc3d7369943d028711
MD5 5b2bc72f8b3b1c0955ea02de0bea596c
BLAKE2b-256 f1c40a1608187e6d21b30c341ebcce6f75efbc8fe289f87ad58aa4149ce59828

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.11.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 160.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 97cd5913000e4e56d211f7db053284d1f753aed34838368769bf084474a76f0a
MD5 7d4d427428265656e30da860cf077fd1
BLAKE2b-256 2913824648ef8f3fc14f56c4f9903e6c06979385f0c3a4d76371f6ccd8e9d1b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9db61968efb834dacda6bcd7ef1f8a033253a53ac31426a684a28a7e4c9f2f29
MD5 f505fb84d19c77fd7ecd271e11b8a921
BLAKE2b-256 79b8c3937572587a0503ea0a05ae61543916d6d93ffe48c26532cad9c4bfd9e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp312-cp312-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 c4cabc2439ab3ce76881037741bf41e9fafda217ff721fdee92701e5fe3c8b9c
MD5 41cf0877a98eeefec01b72d7a82f624a
BLAKE2b-256 54cfa64cab1bb0f48101ac45fb45a7f0d000af76e26ed0ab26b52573140a9a64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 ab0988829e4ed10fa971842e9fbf77595b8a4557a078a3589b0754f06417ddff
MD5 4a5e9bb79061f7b79f5c73c9cef317c7
BLAKE2b-256 fe48cdf80b633f326451de801504f8718dd71ce63f534d29348822896d9c5bd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3a1093eb1a756f08c7bdeb22969fb463aa62f036dc191ad371af5e292108c611
MD5 a707323c9ea283d286c7fdad3e8335e8
BLAKE2b-256 7aa97ebe3e04548cee84fba250425935a500ff02e7fef1b020ed182a3f5227c4

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 52741a1d24a3723a8151259906cf1befeaf3d4ccf7d3e27e8be4334590b59bcd
MD5 54d160352fdae515966a1564538d2e4d
BLAKE2b-256 9a1c35b3f34fee6f91f708eb81af03438afc137b2e5fc0e27ec11d948287f64c

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 664f02e6e2c63fcc1c02718d2daa21b04f77a18ef3850a9b348597c0c8a0f222
MD5 755cfa4391625f8a0568da6c002da4c6
BLAKE2b-256 8d71414853d582267d8e397ea5bf894503236d81660c5d7a34b2a0d0ec6e9f2d

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 301763ffde9d288c5a58dda51c5290bc1081c2bc0faf266c4aef227ca59004d5
MD5 8850ee34a577c823d3267aba2c37d628
BLAKE2b-256 831d8fba2e884d5e5e7fa6828b4ca461e819259bac0f6f99073388157ea1c6d6

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 823638d0a900cea53c173fb31f5f1f4b913065a92fa3406d9b20eb7b7ebf189d
MD5 78a9d5bf67e5cc437321d7f7e40a8eeb
BLAKE2b-256 0330edaec4a0fffd04ee98b1425a597dc1d350c4def690b0a34815a75e5c2c33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3889cf12ae0c04076772c8be66655bfe5925003b44dec056b569a68a121f7e93
MD5 eb454052de79de7671903ddee422ca40
BLAKE2b-256 cef84463653a8c909796c8f8931d0fd64344c6745a144e432d0310435197b0ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 93a7f9f9f848ec79f19fdd39f3b8f750d9abf8e65cd6fb3a045df192de23855d
MD5 a971778bfb5e3b4cbc5267aaad0525a9
BLAKE2b-256 2674c878e209fd15fdf0460763199892fc4e74c6a7345f5161ad673af586f2fe

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: bitarray-3.11.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 166.4 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ec3d8b99a92220bdba382acf4eff370d6a6cda34a5ce936726cb9e8cf2427c47
MD5 f021b87c0efeff8e2ab44d2217260220
BLAKE2b-256 5420c8cb10050d1afed77e0511861ba49d56724fd846b4a0b596f52e7ebe5711

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.11.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 171.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7b16df7ddef03e30622d894cce86a560b7888415ddcac470eb99940a5adf1a35
MD5 bbf2533d99e16bae6be732c44b910292
BLAKE2b-256 9f2c3d3f3f7846432bc1f630c99fa5cd595674b5318c77c774b6c028bdbf05ad

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.11.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 160.6 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 30597fa6f4116eb6e374568d4f4de7e220462368ec7ce37d93403871bdf27a8c
MD5 dfcc125c3ce41f7e4651ec34fe1ba16d
BLAKE2b-256 b28afcb7bef53c2aacdbc2ca07f498e5249ab7d87dbfed666f184bb8d16fec0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 116a23f655f394f80f41fdc03368862485ac05534a56991eefb9f18f72e17f17
MD5 10e68b5d6c32a86b1f0d170b49c29f73
BLAKE2b-256 6e80c758fa566da3180e43fba1a9bc2c84b29fc5e25ce0149155378e89ee4172

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp311-cp311-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 027766e71da6063cb51fcd4c51f031ac14d5088ecb55e4500ffd692d78630dd3
MD5 ee8880fe3370801ee7ee310545b467e9
BLAKE2b-256 87aaadd67250e559e24fdc585921062e388395e0b47f40c6aa13e1ee493a13d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 4bddbc76e619a36d2abad14713c4dd970a8fa46a75a85ebbb626a2f26f1821d8
MD5 ae086e89f6a76c2f244dd490344d5021
BLAKE2b-256 23c839a1e59453b99a67ee449d9d0c378f5e282ec4c00645127a9aaa4a5adba7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 afe8ee837c085eeeaead62429f260a2de3a0602d1a34bcdead8b9f0388ef6114
MD5 2ba94fdce9ab5d7cc670102bcff18120
BLAKE2b-256 75fc5fafae3bee337c31372293fcc6259960e9bcaf89825f07798514213c5686

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 41545b21384fd91767d294a5b3526c6306f7db577cf59ba72b51498e90bd52a7
MD5 49fc80f5da328049faaed4e632984e4e
BLAKE2b-256 2a3a859196ab78c6fa0aa8f04155308dd314265c8c27e09350bcd3894fc333d8

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1c49fc5f57eea2e859a3f2936a1fed84510af6f7464572b641485de2d22148cb
MD5 4d4e3ead85360e72491756f193910c13
BLAKE2b-256 248de94bfa36a7cadcd16415afe531e0a01c6e2dc2bb11095c6c52fca384c642

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 155205159f3c38180a705253341b8200414c0198e86a9b9e2db49010236ff785
MD5 450a6168c716f8be8b119a135631653c
BLAKE2b-256 90851ebb39e36b7102358942609583aa5a027b7e1eb83e140ad3fba86e53adba

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 55370f00c52b5e46800fee0218a27a1b99db6e09113c1b804190c039e4350ea1
MD5 1cc652d246473785b5c261ddad5da362
BLAKE2b-256 eb28d1e0493106911b08d3d328e463aa140ca76fcab6cdcda06912ffb59d53cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56a2aa49e900aa927c147328e571da8a38a50ae99277ed093290845498dedefc
MD5 56c66850297ce90d71a7afa9896c737c
BLAKE2b-256 fbb438b6131ecd500f8f853367339b9e95ad4644d47729bcbf0fa2c5e4c06a91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 470940879d8553fecddc3cf306b7d4b69fa0f5b7a6e3790b238fe553578061c1
MD5 8a15d0362e8811c139d7388ba2eeafbc
BLAKE2b-256 8655aeb2eb3870a31257a29d3830f7d5804253d2070727ef6475629455491d33

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: bitarray-3.11.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 166.1 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4809eac58bcbef01915bc29e214f86ea70b52fab1a436af2c2f862709bd68b11
MD5 837fb719e1e29678c89b490432f45db5
BLAKE2b-256 bb54740a46f37563a4a249d17241789d24d274979078e287c20086dc3df6ee58

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.11.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 170.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 819341386eb8a031eba8471ca72723e1bcdc56e35e79f9faa04e265cf64368a3
MD5 95d3ca44c284aec2a8ff1095ba7e7530
BLAKE2b-256 214acb6c16161bdf24af545b0f04ff3308866fc88915a13b9d55c725a98cfe46

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.11.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 160.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e9beee2047addf3e404eaeeb0da785b43fe91b942a0e5416dc821de5bb9349ef
MD5 c65521eb929b2b2f39963f4d4dc49082
BLAKE2b-256 29865ed4e3b68b35fe2c6ce0f96e1416254488cee50b2942757644c96cd15496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0d868d83f34ee084ef18187e1ccfcff309550cf997a0c35ec2a13a4ec1d9b537
MD5 f13263dfc9f39bb5b1f7ca00c240b85b
BLAKE2b-256 725962f532a2c6aade9aeb0d11a9cdcb2c9e120638210f18cb730d0a69f2c2d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp310-cp310-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 051e0868e0b5ca53f2365b8840fe2ff54a68ae54ed2ff4e1e521db68c3d3f1df
MD5 47d4eef56d691253e355b9fabcb96ae3
BLAKE2b-256 a4601af7596fcd49cd15c47a3cbaa076ed498316b07340a00dd0f88f0260684a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 260e31096fd8c833d3f39b6134fe9f87954f2482964e0aa377457d5649028906
MD5 b3999db8c235f890157cd7816f3b8580
BLAKE2b-256 caf9a0c9cde757107cbccab4dbc77c77497194f67e07ff03a860a1461ebb72dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9ba6f68d39a160b9175ba3710e45ba560731805f10bfcd716184c9bfd3d60cf4
MD5 566ea95cf546365fa6ae52f4d69fd5db
BLAKE2b-256 83208086244c3b6e0be5935847c277523c160573fa8d5570d33a43b3f0f514fd

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 32e9fcd8fdeb1ca4e12a538a3e3a8ea50581bb1fcb3262cc67fe110bdb765580
MD5 b70c03c34fbf90915d7b39ac69960ebc
BLAKE2b-256 5a6c79b75bacdf0d4fd36017d43c37f111938edddf0a998a6ef7d7a85a214484

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f0df7eadda7086bf8ebf0a9bc7b5b8386ba5061d3f888f1f088ab8d877c33144
MD5 044e68aedaf18cef0769de8cfb9500f0
BLAKE2b-256 c7f8f9f3649e40f619c24a766cc9640a699261ed8c91284c8667cce4287ed391

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c143d28bee6473186f8a76c18937ec84bdc3cd4cb8d5350766481143aa7706a3
MD5 e18214aece01a01abb5ead1d90901ce7
BLAKE2b-256 7f9afb2e6cd3f7ae9da0fe19fe3bdab6c1bf971315ae514c1034ae0137282140

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 52b3101ea72ffe0433487dad46cc12b796c2c0546558682fc309a2828903afae
MD5 ac19b11a86b2c2ff711cfd30cc00fbb0
BLAKE2b-256 57469c6fb5d578f7be4ab11860cdccc4fe12768f5d6fe1c488900a6dba9a7de9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1de25e4714402ccb461a66ea5cee2229818b6cf6aaed420690dae32979ed7b3d
MD5 fb3aee22a9ab7c932af96d358451abd6
BLAKE2b-256 5534d7c3ba0d7332bbb30f2c2ad90040affe188af62561c5514633a4c3abaabe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7ad6b6cd9558529a9e51ef981cef5b3439acd0a913d25562dc56220078bd4968
MD5 dd5fbd26aabab826c147ac1beb916a61
BLAKE2b-256 2b7e7c6e02615a833f8886051bd52ab0c4fdd378f959edf05bd45bcfd589f873

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: bitarray-3.11.0-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 166.0 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 37f387c0cc9c63ab566551a819f2fbbc552a1d215f8d933ee285624eb3af6c83
MD5 1ed0ee654977a7c157621724aa66d632
BLAKE2b-256 5dcce2613a8ef614de4f7fb948bfcd828f6d5a2ba25035dfd3539924eb79d714

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.11.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 170.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f23601f400323c7a8b57d271f6b841c40630afe24ddffd0c5be99ce3dec486e9
MD5 b4a37d6ecfbd102b323b482e7e1769f1
BLAKE2b-256 8f19204007d6c594ec482fda6e685c00cd48285434af2aad6e6727e0e36153d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.11.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 160.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b1f90eb79230a2d2407b7c08857634f0868c67fd5ab849eb812c75c496fa7e40
MD5 86ad54ab35c5c86ddc0f3729ae58ff71
BLAKE2b-256 c94aeb2c4436580a1389de6b688607e28402236dfc710e15e2128c9ac180d47a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f2578852b9280291a1b3484930587be9604af6495feb218b86aeee995f4d6ff
MD5 06484b7b240c7aa58288302e6fac42b2
BLAKE2b-256 4911aec443fdfc63fbd4d9b9da345a5e42ee3362feaef8abcfef421f635553c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp39-cp39-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 ae83b41711788b7c2b0ea2230176e1caf3349119c1dd62c8e35e62809e0f7893
MD5 613b11cc7a115ba4051d5893bce0b87c
BLAKE2b-256 b02632aeff9b5c8203d3da20802037a7c184863a1943d9e7e59bbfa4c8960fe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp39-cp39-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3d7a61fe396f14bc5435521ebbbcc7971ab4ae0b3523df5341d6dc9693f29f2d
MD5 3f51f1e6360f256a5566fc8d9ac14045
BLAKE2b-256 e462571a09da52f2a45cec1d9aa02f0263f5d26bc5b10d862af636c92bc0a129

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed14ff0c75ca56b6bcb51443f3dfb7743414159538c1bbaa3b73b8228372b096
MD5 63a33dabea1172d3df28f8158ddad1c3
BLAKE2b-256 87785d073ddaa69098399367684e6d49e3d22547b69bdcc1f1e134ef8ea2fb3d

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aac6b951d9f50280728a61e5edadb0d109930dff9b42c6ad45aad7a4f2df1503
MD5 2cc9c48be0350ef520f381ec78ac9889
BLAKE2b-256 669b29dc8b25c49e3fb74441b6647a0302cee05d42fc7df732dc0c20618697d1

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 903a9a62521fe84b4126ecfefbb2755ce50a6dbd8be96a021c5e8990883b234a
MD5 b587ec2b2dd7e0708250cea08d31ecc5
BLAKE2b-256 da7f647e0aa663801f265318f71fa919da697e0a4694638a52da49be72bbfe9a

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 fcc8d9723956af19afb215ffb82a39ab810bc8bca2000640b3fd8c884307a6f3
MD5 71cee0ed3828fcad4809da5725f2dcbe
BLAKE2b-256 a50e78c177e2719345f515548159a62657ec2c74d01c227d757738184df3fab2

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8e799c9eaa4f10b14fa34430e5bd0d8668bbbe5c4eb0f59697ecde902304842f
MD5 7300cf0f8691d19ed33e72c9b34294bb
BLAKE2b-256 0edb818fc8a3cb041788d1e3e9ec4e96e347a91cb71e4d08b8e830fc3c27f050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c56b9a61235fae422c670835ac36eb70e20582d1956401b38fd25c3291af9378
MD5 cbfe4318e854715d31036a21ec4eeeba
BLAKE2b-256 92dbb4e96f948dd6d627c6449b118ecd21d61de56d269cac49eec88241b80455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be64657bf842bea37790ef304f88a6465e566355a42c04f3767635b92b35beb2
MD5 256088aace5fb80e432315ce8053113b
BLAKE2b-256 aa593b64ca6c2f6250fdbdb2371ed108477b57be524dcd93ab502c6e417ba466

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.11.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 170.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fc08c36ac282866d44325aaa778892394087ce88a64475d48abe52b564da85b1
MD5 984898f8b5ca904dd7df3897126c2327
BLAKE2b-256 e4d4f313072ce4292b94ea163600ac1b7bed489c99f9788603c30edd9ca01f07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: bitarray-3.11.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 160.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for bitarray-3.11.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 1382beba2a8c190c242f4251460c40348f5b1a7d125d93cd89f4e502fc6d4a72
MD5 1eeadc2f2876e5fd848fcc3ebf660bf7
BLAKE2b-256 7d0ffbc3e198271273739e6b2c49f1071819f31d0069ab70056f10a365c03192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 31c06680231d37da8f4222c1d924d60f7c6809aa83797312b9697a127979fa7f
MD5 30fcec01aad543128b174b63cf4f5bcb
BLAKE2b-256 2723a37b621ca706e1735fc32d92159987b18cad2cae132f3efd5a408651d270

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp38-cp38-musllinux_1_2_s390x.whl
Algorithm Hash digest
SHA256 b0d57b41cd5d91d9ebe4cbf88c58455f235b119fa7c43cd3b87d79d161a4c731
MD5 5065884f0335242eb34d606aad0a8a61
BLAKE2b-256 286325e85e1176d10ed97f0069f017d6559a15ebc62def1acdce762669a2af86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp38-cp38-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 23ff70ee2f2a36ae089f769baeabe05753e02dd42b25aec20c78cd237af968ce
MD5 5d5b91cbdc699f46e3b6c4d32c99e361
BLAKE2b-256 0b242a9e290d4f05741e97ad60629d8b5816c4d737d136e264403fa6b6703fb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5bdd4531df12676d19bdfcce4d773c1f790448a7e1db3a2710fb674428987ef
MD5 54d78562ee8eeb056d2283d495651aae
BLAKE2b-256 3d73ec03757d04df8bbb127eb90bb0d50a7bb20f18e596336bf7c968c00db86e

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cfbbb23d8db2abe2cd098157ea35e1e9860d1c26e2487422b5a39ef6eb85c549
MD5 74f734d1e27a4c165bdd56a25bc6bc7c
BLAKE2b-256 f454456b1b5d485eed255d174b6611256fc05025463bca079ff8fdc7c131344c

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9767500d7c180eac5f6bb08819fcfa6630b609d52d51b3396a3c9f9809f78743
MD5 3f523c8a6282188299f09a666f22bf23
BLAKE2b-256 82e62332a72900b02f581938f84163c0b557dda659c0019c816607c4a4765932

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b22b4df5f5e76e4c9b033570ce13b750d8209e198bc8e1c7bf012a4688e42bee
MD5 ccefc7349800f762955aa7b9faa4ed40
BLAKE2b-256 fd778eb7eb0e3a72173739a683bb40e163cef7840b7ac53343b140f7cf1ca6e4

See more details on using hashes here.

File details

Details for the file bitarray-3.11.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for bitarray-3.11.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b313dec833e8ca77068d8bcc983d2ce09a97304dd715a80a4d7e50b5b030fd1e
MD5 0478a03733d00499f0de160d3c43569b
BLAKE2b-256 82783a917bbd37523af4a7713964caf1c588f03e8be51b51a4bfffc3f7ea6973

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c54a7b5fa924f016d725b6056d9e4a97ab2ef6ad8c049e916c532d723187a5d5
MD5 482035893ba5de2cb5ea606570b9c383
BLAKE2b-256 aa9e4341d3ab80bbfbf1c16eedaea45bba9e2fd99130f08268334a8ac5b5d18d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for bitarray-3.11.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 00430df302dd0367e0aeae7dc71c0d250166e67514f828c853050560ebbaa782
MD5 a0386c97b68f74414d80b0b052ff84b1
BLAKE2b-256 d433d75fc68137e6ad45fe25d0a1d0c0e5ac7fc7adb8bb8d001bd8abb518de90

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

3.11.0 This release

104 files

3.10.1

104 files

3.10.0

104 files

3.9.2

104 files

3.9.1

104 files

3.9.0

104 files

3.8.2

104 files

3.8.1

104 files

3.8.0

104 files

3.7.2

91 files

3.7.1

134 files

3.7.0

134 files

3.6.1

134 files

3.6.0

134 files

3.5.2

134 files

3.5.1

134 files

3.5.0

134 files

3.4.3

134 files

3.4.2

134 files

3.4.1

134 files

3.4.0

134 files

3.3.2

134 files

3.3.1

134 files

3.3.0

134 files

3.2.0

134 files

3.1.1

134 files

3.1.0

134 files

3.0.0

137 files

2.9.3

137 files

2.9.2

122 files

2.9.1

122 files

2.9.0

122 files

2.8.5

122 files

2.8.4

122 files

2.8.3

122 files

2.8.2

122 files

2.8.1

102 files

2.8.0

102 files

2.7.6

102 files

2.7.5

102 files

2.7.4

87 files

2.7.3

87 files

2.7.2

87 files

2.7.1

87 files

2.7.0

87 files

2.6.2

87 files

2.6.1

87 files

2.6.0

72 files

2.5.1

72 files

2.5.0

72 files

2.4.1

72 files

2.4.0

72 files

2.3.7

1 file

2.3.6

1 file

2.3.5

1 file

2.3.4

1 file

2.3.3

1 file

2.3.2

1 file

2.3.1

1 file

2.3.0

1 file

2.2.5

1 file

2.2.4

1 file

2.2.3

1 file

2.2.2

1 file

2.2.1

1 file

2.2.0

1 file

2.1.3

1 file

2.1.2

1 file

2.1.1

1 file

2.1.0

1 file

2.0.1

1 file

2.0.0

1 file

1.9.2

1 file

1.9.1

1 file

1.9.0

1 file

1.8.2

1 file

1.8.1

1 file

1.8.0

1 file

1.7.1

1 file

1.7.0

1 file

1.6.3

1 file

1.6.2

1 file

1.6.1

1 file

1.6.0

1 file

1.5.3

1 file

1.5.2

1 file

1.5.1

1 file

1.5.0

1 file

1.4.2

1 file

1.4.1

1 file

1.4.0

1 file

1.3.0

1 file

1.2.2

1 file

1.2.1

1 file

1.2.0

1 file

1.1.0

1 file

1.0.1

1 file

1.0.0

1 file

0.9.3

1 file

0.9.2

1 file

0.9.1

1 file

0.9.0

1 file

0.8.3

1 file

0.8.2

1 file

0.8.1

1 file

0.8.0

1 file

0.7.0

1 file

0.6.0

1 file

0.5.2

1 file

0.5.1

1 file

0.5.0

1 file

0.4.0

1 file

0.3.5

6 files

0.3.4

2 files

0.3.3

1 file

0.3.2

1 file

0.3.1

1 file

0.3.0

1 file

0.2.5

1 file

0.2.4

1 file

0.2.3

1 file

0.2.2

1 file

0.2.1

1 file

0.2.0

1 file

0.1.0

1 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