How to create python bytes object from long hex string?

PythonHexByte

Python Problem Overview


I have a long sequence of hex digits in a string, such as

> 000000000000484240FA063DE5D0B744ADBED63A81FAEA390000C8428640A43D5005BD44

only much longer, several kilobytes. Is there a builtin way to convert this to a bytes object in python 2.6/3?

Python Solutions


Solution 1 - Python

Works in Python 2.7 and higher including python3:

result = bytearray.fromhex('deadbeef')

Note: There seems to be a bug with the bytearray.fromhex() function in Python 2.6. The python.org documentation states that the function accepts a string as an argument, but when applied, the following error is thrown:

>>> bytearray.fromhex('B9 01EF')
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: fromhex() argument 1 must be unicode, not str`

Solution 2 - Python

result = bytes.fromhex(some_hex_string)

Solution 3 - Python

You can do this with the hex codec. ie:

>>> s='000000000000484240FA063DE5D0B744ADBED63A81FAEA390000C8428640A43D5005BD44'
>>> s.decode('hex')
'\x00\x00\x00\x00\x00\x00HB@\xfa\x06=\xe5\xd0\xb7D\xad\xbe\xd6:\x81\xfa\xea9\x00\x00\xc8B\x86@\xa4=P\x05\xbdD'

Solution 4 - Python

Try the binascii module

from binascii import unhexlify
b = unhexlify(myhexstr)

Solution 5 - Python

import binascii

binascii.a2b_hex(hex_string)

Thats the way I did it.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionrecursiveView Question on Stackoverflow
Solution 1 - PythonJim GarrisonView Answer on Stackoverflow
Solution 2 - PythonviliView Answer on Stackoverflow
Solution 3 - PythonBrianView Answer on Stackoverflow
Solution 4 - PythonCrescent FreshView Answer on Stackoverflow
Solution 5 - PythonJustPlayinView Answer on Stackoverflow