This module 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 contiguous block of memory. The user can select between two representations; little-endian and big-endian. Most of the functionality is implemented in C. Methods for accessing the machine representation are provided. This can be useful when bit level access to binary files is required, such as portable bitmap image files (.pbm). Also, when dealing with compressed data which uses variable bit length encoding, you may find this module useful.
Requires Python 2.5 or greater, see PEP 353.
- Bit level, as well as almost all other, functionality implemented in C.
- On 32bit machines, a bitarray object can contain up to 2^34 elements, that is 16 Gbits (on 64bit machines up to 2*63 elements in theory).
- The bit endianness can be specified for each bitarray object, see below.
- Packing and unpacking to other binary data formates, e.g. numpy.ndarray, is possible.
- Pickling and unpickling is safe.
- Supports, bitwise operations: &, |, ^, &=, |=, ^=, ~
- Behaves like a list object, in particular slicing (including slice assignment and deletion) is supported.
bitarray can be installed from source:
$ tar xzf bitarray-0.2.3.tar.gz $ cd bitarray-0.2.3 $ python setup.py install
On Unix systems, the latter command may have to be executed with root privileges. If you have setuptools installed, you can easy_install bitarray. Once you have installed the package, you may want to test it:
$ python -c 'import bitarray; bitarray.test()' bitarray is installed in: /usr/local/lib/python2.5/site-packages/bitarray bitarray version: 0.2.3 2.5.2 (r252:60911, Jul 17 2008, 10:38:24) [GCC 4.2.1 (SUSE Linux)] .......................................................................... ---------------------------------------------------------------------- Ran 74 tests in 2.388s OK
You can always import the function test, and test().wasSuccessful() will return True when the test went OK.
As mentioned above, bitarray objects behave very much like lists, so there is not too new to learn. The biggest difference to list objects 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(True) >>> a.extend([False, True, True]) >>> a bitarray('1011')
Bitarray objects can be instantiated in different ways:
>>> a = bitarray(2**20) # bitarray of length 1048576 (uninitialized) >>> bitarray('1001011') # from a string bitarray('1001011') >>> lst = [True, False, False, True, False, True, True] >>> bitarray(lst) # from list, tuple, iterable bitarray('1001011')
Bits can be assigned from any Python object, if the value can be interpreted as a truth value. You can think of this as Python's built-in function bool() being applied, whenever casting an object:
>>> a = bitarray([42, '', True, {}, 'foo', None]) >>> a bitarray('101010') >>> a.append(a) # note that bool(a) is True >>> a.count(42) # counts occurrences of True (not 42) 4L >>> a.remove('') # removes first occurrence of False >>> a bitarray('110101')
Like lists, bitarray objects support slice assignment and deletion:
>>> a = bitarray(50) >>> a.setall(False) >>> a[11:37:3] = 9 * bitarray([True]) >>> a bitarray('00000000000100100100100100100100100100000000000000') >>> del a[12::3] >>> a bitarray('0000000000010101010101010101000000000') >>> a[-6:] = bitarray('10011') >>> a bitarray('000000000001010101010101010100010011') >>> a += bitarray('000111') >>> a[9:] bitarray('001010101010101010100010011000111')
Since a bitarray allows addressing of individual bits, where the machine represents 8 bits in one byte, there two obvious choices for this mapping; little- and big-endian. When creating a new bitarray object, the endianness can always be specified explicitly:
>>> a = bitarray(endian='little') >>> a.fromstring('A') >>> a bitarray('10000010') >>> b = bitarray('11000010', endian='little') >>> b.tostring() 'C'
Here the low-bit comes first because little-endian means that increasing numeric significance corresponds to an increasing address (or index). So a[0] is the lowest and least significant bit, and a[7] is the highest and most significant bit.
>>> a = bitarray(endian='big') >>> a.fromstring('A') >>> a bitarray('01000001') >>> a[6] = 1 >>> a.tostring() 'C'
Here the high-bit comes first because big-endian means "most-significant first". So a[0] is now the lowest and most significant bit, and a[7] is the highest and least significant bit.
The bit endianness is a property attached to each bitarray object. When comparing bitarray objects, the endianness (and hence the machine representation) is irrelevant; what matters is the mapping from indices to bits:
>>> bitarray('11001', endian='big') == bitarray('11001', endian='little') True
When converting to and from machine representation, using the tostring, fromstring, tofile and fromfile methods, the endianness matters:
>>> a = bitarray(endian='little') >>> a.fromstring('\x01') >>> a bitarray('10000000') >>> b = bitarray(endian='big') >>> b.fromstring('\x80') >>> b bitarray('10000000') >>> a == b True >>> a.tostring() == b.tostring() False
The endianness can not be changed once an object is created. However, since creating a bitarray from another bitarray just copies the memory representing the data, you can create a new bitarray with different endianness:
>>> a = bitarray('11100000', endian='little') >>> a bitarray('11100000') >>> b = bitarray(a, endian='big') >>> b bitarray('00000111') >>> a == b False >>> a.tostring() == b.tostring() True
The default bit endianness is currently big-endian, however this may change in the future, and when dealing with the machine representation of bitarray objects, it is recommended to always explicitly specify the endianness.
Unless, explicity converting to machine representation, using the tostring, fromstring, tofile and fromfile methods, the bit endianness will have no effect on any computation, and you can safely ignore setting the endianness, and other details of this section.
The bitarray class:
Return a new bitarray object whose items are bits initialized from the optional initial, and endianness. If no object is provided, the bitarray is initialized to have length zero. The initial object may be of the following types:
The optional keyword arguments 'endian' specifies the bit endianness of the created bitarray object. Allowed values are 'big' and 'little' (default is 'big').
Note that setting the bit endianness only has an effect when accessing the machine representation of the bitarray, i.e. when using the methods: tofile, fromfile, tostring, fromstring
A bitarray object supports the following methods:
Functions defined in the module: