Does Python have a bitfield type? - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T23:02:25Zhttp://stackoverflow.com/feeds/question/142812http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/142812/does-python-have-a-bitfield-type14Does Python have a bitfield type?tolomea2008-09-27T02:47:40Z2009-10-15T20:43:54Z
<p>I need a compact representation of an array of booleans, does Python have a builtin bitfield type or will I need to find an alternate solution?</p>
http://stackoverflow.com/questions/142812/does-python-have-a-bitfield-type/142821#1428214Answer by Jason Baker for Does Python have a bitfield type?Jason Baker2008-09-27T02:52:13Z2008-09-27T02:52:13Z<p>NumPy has a <a href="http://numpy.scipy.org/array_interface.shtml" rel="nofollow">array interface</a> module that you can use to make a bitfield.</p>
http://stackoverflow.com/questions/142812/does-python-have-a-bitfield-type/142846#1428464Answer by JasonTrue for Does Python have a bitfield type?JasonTrue2008-09-27T03:03:16Z2008-09-27T03:03:16Z<p>The BitVector package may be what you need. It's not built in to my python installation, but easy to track down on the python site.</p>
<p><a href="http://pypi.python.org/pypi/BitVector/1.5.1" rel="nofollow">http://pypi.python.org/pypi/BitVector/1.5.1</a> is the current version as of today.</p>
http://stackoverflow.com/questions/142812/does-python-have-a-bitfield-type/143221#1432218Answer by fivebells for Does Python have a bitfield type?fivebells2008-09-27T08:20:43Z2008-09-27T08:20:43Z<p><a href="http://pypi.python.org/pypi/bitarray/" rel="nofollow">Bitarray</a> was the best answer I found, when I recently had a similar need. It's a C extension (so much faster than BitVector, which is pure python) and stores its data in an actual bitfield (so it's eight times more memory efficient than a numpy boolean array, which appears to use a byte per element.)</p>
http://stackoverflow.com/questions/142812/does-python-have-a-bitfield-type/143247#1432472Answer by Antti Rasinen for Does Python have a bitfield type?Antti Rasinen2008-09-27T08:41:05Z2008-09-27T08:41:05Z<p>If your bitfield is short, you can probably use <a href="http://docs.python.org/lib/module-struct.html" rel="nofollow">the struct module</a>. Otherwise I'd recommend some sort of a wrapper around <a href="http://docs.python.org/lib/module-array.html" rel="nofollow">the array module</a>.</p>
<p>Also, the ctypes module does contain <a href="http://docs.python.org/lib/ctypes-bit-fields-in-structures-unions.html" rel="nofollow">bitfields</a>, but I've never used it myself. <em>Caveat emptor</em>.</p>
http://stackoverflow.com/questions/142812/does-python-have-a-bitfield-type/143643#1436431Answer by S.Lott for Does Python have a bitfield type?S.Lott2008-09-27T13:26:06Z2008-09-27T13:26:06Z<p>I use the binary bit-wise operators !, &, |, ^, >>, and <<. They work really well and are implemented directly in the underlying C, which is usually directly on the underlying hardware.</p>
http://stackoverflow.com/questions/142812/does-python-have-a-bitfield-type/265491#2654911Answer by MattG for Does Python have a bitfield type?MattG2008-11-05T15:30:33Z2008-11-05T15:30:33Z<p>Represent each of your values as a power of two:</p>
<pre><code>testA = 2**0
testB = 2**1
testC = 2**3
</code></pre>
<p>Then to set a value true:</p>
<pre><code>table = table | testB
</code></pre>
<p>To set a value false:</p>
<pre><code>table = table & (~testC)
</code></pre>
<p>To test for a value:</p>
<pre><code>bitfield_length = 0xff
if ((table & testB & bitfield_length) != 0):
print "Field B set"
</code></pre>
<p>Dig a little deeper into hexadecimal representation if this doesn't make sense to you. This is basically how you keep track of your boolean flags in an embedded C application as well (if you have limitted memory).</p>
http://stackoverflow.com/questions/142812/does-python-have-a-bitfield-type/1574928#15749281Answer by Scott Griffiths for Does Python have a bitfield type?Scott Griffiths2009-10-15T20:43:54Z2009-10-15T20:43:54Z<p>You should take a look at the <a href="http://python-bitstring.googlecode.com" rel="nofollow">bitstring</a> module, which has recently reached version 1.0.
The binary data is compactly stored as a byte array and can be easily created, modified and analysed (sorry if this reads like an advert - I'm the module's author).</p>
<p>You can create <code>BitString</code> objects from binary, octal, hex, integers (big or little endian), string, files and more.</p>
<pre><code>a = BitString('0xed44')
b = BitString('0b11010010')
c = BitString(int=100, length=14)
d = BitString('uintle:16=55, 0b110, 0o34')
e = BitString(bytes='hello')
f = pack('<2H, bin:3', 5, 17, '001')
</code></pre>
<p>You can then analyse and modify them with simple functions or slice notation - no need to worry about bit masks etc.</p>
<pre><code>a.prepend('0b110')
if '0b11' in b:
c.reverse()
g = a.join([b, d, e])
g.replace('0b101', '0x3400ee1')
if g[14]:
del g[14:17]
else:
g[55:58] = 'uint:11=33, int:9=-1'
</code></pre>
<p>There is also a concept of a bit position, so that you can treat it like a file or stream if that's useful to you. Properties are used to give different interpretations of the bit data.</p>
<pre><code>w = g.readbits(10).uint
x, y, z = g.readlist('int:4, int:4, hex:32')
if g.peekbyte() == '0x00':
g.pos += 10
</code></pre>
<p>Plus there's support for the standard bit-wise binary operators, packing, unpacking and more. It's pure Python for all versions from 2.4 to 3.1, but is reasonably well optimised in terms of memory and speed (more to come in terms of speed later).</p>