I have a long Hex string that represents a series of values of different types. I wish to convert this Hex String into a byte array so that I can shift each value out and co
You can use the Codecs module in the Python Standard Library, i.e.
import codecs codecs.decode(hexstring, 'hex_codec')