创建和简化二进制数据分析 python-bitstring 2.2.0 发布

bitstring 是一个 Python 模块用来简化创建和分析二进制数据的操作,BitString 的对象可直接从包括整数、浮点数、十六进制、十进制和二进制、字节数据中构造。

这是一个小的升级版本,包含了一些小的新特性:

Changes: This is a minor upgrade with a few new features. There are new interleaved exponential-Golomb code interpretations. A problem running under Python 3.2 has been fixed. The usual efficiency improvements were made, including an interning strategy for bitstrings

示例代码:

>>> h = BitArray('0x000001b3')
>>> o = BitArray('0o755')
>>> b = BitArray('0b001001111')

下载地址请点这里 http://code.google.com/p/python-bitstring/downloads/list

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。