hexbytes: Python `bytes`子类,可以解码十六进制,具有可读的控制台输出
项目描述
HexBytes
Python bytes
子类,可解码十六进制,具有可读的终端输出
阅读文档。
查看变更日志。
快速开始
python -m pip install hexbytes
# convert from bytes to a prettier representation at the console
>>> HexBytes(b"\x03\x08wf\xbfh\xe7\x86q\xd1\xeaCj\xe0\x87\xdat\xa1'a\xda\xc0 \x01\x1a\x9e\xdd\xc4\x90\x0b\xf1;")
HexBytes('0x03087766bf68e78671d1ea436ae087da74a12761dac020011a9eddc4900bf13b')
# HexBytes accepts the hex string representation as well, ignoring case and 0x prefixes
>>> hb = HexBytes('03087766BF68E78671D1EA436AE087DA74A12761DAC020011A9EDDC4900BF13B')
HexBytes('0x03087766bf68e78671d1ea436ae087da74a12761dac020011a9eddc4900bf13b')
# get the first byte:
>>> hb[0]
3
# show how many bytes are in the value
>>> len(hb)
32
# cast back to the basic `bytes` type
>>> bytes(hb)
b"\x03\x08wf\xbfh\xe7\x86q\xd1\xeaCj\xe0\x87\xdat\xa1'a\xda\xc0 \x01\x1a\x9e\xdd\xc4\x90\x0b\xf1;"
项目详情
下载文件
下载适合您平台的文件。如果您不确定选择哪个,请了解更多关于安装包的信息。
源代码分发
hexbytes-1.2.1.tar.gz (7.7 kB 查看哈希值)
构建分发
hexbytes-1.2.1-py3-none-any.whl (5.2 kB 查看哈希值)
关闭
hexbytes-1.2.1.tar.gz 的哈希值
算法 | 哈希摘要 | |
---|---|---|
SHA256 | 515f00dddf31053db4d0d7636dd16061c1d896c3109b8e751005db4ca46bcca7 |
|
MD5 | d5967c20e8cc87b6bc43ab5fab20d486 |
|
BLAKE2b-256 | 4e5106836a542b773bfc60ab871fa08d4a7963e7df6754ca57169e2654287cc1 |
关闭
hexbytes-1.2.1-py3-none-any.whl 的哈希值
算法 | 哈希摘要 | |
---|---|---|
SHA256 | e64890b203a31f4a23ef11470ecfcca565beaee9198df623047df322b757471a |
|
MD5 | 6d956758dfb4d48b3893a990add76a40 |
|
BLAKE2b-256 | 39c620f25ea73e4ceffb3eb4e38347f2992cb25e5ff6eb644d52e753a7a72f57 |