bitarray 0.3.5
bitarray is a Python module that 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.Installation:bitarray can be installed from source:$ tar xzf bitarray-0.3.3.tar.gz$ cd bitarray-0.3.3$ python setup.py installOn 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/bitarraybitarray version: 0.3.32.5.2 (r252:60911, Jul 17 2008, 10:38:24)[GCC 4.
2.1 (SUSE Linux)]...................................................................................----------------------------------------------------------------------Ran 90 tests in 2.420sOKYou can always import the function test, and test().wasSuccessful() will return True when the test went OK. Here are some key features of "bitarray":
· 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).
· All functionality implemented in C.
· Bitarray objects behave very much like a list object, in particular slicing (including slice assignment and deletion) is supported.
· The bit endianness can be specified for each bitarray object, see below.
· Packing and unpacking to other binary data formats, e.g. numpy.ndarray, is possible.
· Fast methods for encoding and decoding variable bit length prefix codes
· Sequential search
· Bitwise operations: &, |, ^, &=, |=, ^=, ~
· Pickling and unpickling of bitarray objects possible.
Requirements:
· Python
Related Downloads:
Today's Top Linux Application
depfinder
1.2.2
depfinder is an utility that scans Slackware packages and outputs a list of their dependencies. The dependency list can be output to stdout, to a comma separated list in a .dep text file or to a slack-required file with or without version information. As of version 1.0.0, depfinder supports x86_64 systems. This can be enabled by passing an extra parameter in the installation scripts (take a look in the INSTALL file in the source tarball...
