Simple construction, analysis and modification of binary data.
Project description
bitstring is a Python module to help make the creation and analysis of all types of bit-level binary data as simple and efficient as possible.
It has been actively maintained since 2006.
[!NOTE] To see what been added, improved or fixed, and also to see what's coming in the next version, see the release notes.
Overview
- Efficiently store and manipulate binary data in idiomatic Python.
- Create bitstrings from hex, octal, binary, files, formatted strings, bytes, integers and floats of different endiannesses.
- Powerful binary packing and unpacking functions.
- Bit-level slicing, joining, searching, replacing and more.
- Create and manipulate arrays of fixed-length bitstrings.
- Read from and interpret bitstrings as streams of binary data.
- Rich API - chances are that whatever you want to do there's a simple and elegant way of doing it.
- Open source software, released under the MIT licence.
Documentation
Extensive documentation for the bitstring module is available. Some starting points are given below:
There is also an introductory walkthrough notebook on binder.
Examples
Installation
$ pip install bitstring
Creation
>>> from bitstring import Bits, BitArray, BitStream, pack
>>> a = BitArray(bin='00101')
>>> b = Bits(a_file_object)
>>> c = BitArray('0xff, 0b101, 0o65, uint6=22')
>>> d = pack('intle16, hex=a, 0b1', 100, a='0x34f')
>>> e = pack('<16h', *range(16))
Different interpretations, slicing and concatenation
>>> a = BitArray('0x3348')
>>> a.hex, a.bin, a.uint, a.float, a.bytes
('3348', '0011001101001000', 13128, 0.2275390625, b'3H')
>>> a[10:3:-1].bin
'0101100'
>>> '0b100' + 3*a
BitArray('0x866906690669, 0b000')
Reading data sequentially
>>> b = BitStream('0x160120f')
>>> b.read(12).hex
'160'
>>> b.pos = 0
>>> b.read('uint12')
352
>>> b.readlist('uint12, bin3')
[288, '111']
Searching, inserting and deleting
>>> c = BitArray('0b00010010010010001111') # c.hex == '0x1248f'
>>> c.find('0x48')
(8,)
>>> c.replace('0b001', '0xabc')
>>> c.insert('0b0000', pos=3)
>>> del c[12:16]
Arrays of fixed-length formats
>>> from bitstring import Array
>>> a = Array('uint7', [9, 100, 3, 1])
>>> a.data
BitArray('0x1390181')
>>> a[::2] *= 5
>>> a
Array('uint7', [45, 100, 15, 1])
Copyright (c) 2006 - 2024 Scott Griffiths
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file bitstring-4.2.3.tar.gz
.
File metadata
- Download URL: bitstring-4.2.3.tar.gz
- Upload date:
- Size: 250.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.8.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e0c447af3fda0d114f77b88c2d199f02f97ee7e957e6d719f40f41cf15fbb897 |
|
MD5 | 5edecacd8fa0356601f7035977d0749e |
|
BLAKE2b-256 | d8d0d6f57409bb50f54fe2894ec5a50b5c04cb41aa814c3bdb8a7eeb4a0f7697 |
File details
Details for the file bitstring-4.2.3-py3-none-any.whl
.
File metadata
- Download URL: bitstring-4.2.3-py3-none-any.whl
- Upload date:
- Size: 71.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.8.19
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 20ed0036e2fcf0323acb0f92f0b7b178516a080f3e91061470aa019ac4ede404 |
|
MD5 | e0e98deff2c7a64b1d061a761a7c8860 |
|
BLAKE2b-256 | 675b62278b308e45ba5edb4b6390a69033def7ade220890cafaaba9ef656a302 |