I'm trying to unapck a list from hex to integers in python.
So for example:
hexValues = '\x90\x82|uj\x82ix'
decodedHex = struct.unpack_from('B', hexValues,0)
print decodedHex
Which would print (144,) and nothing else. Is there any way I can loop through this string to get all values? (bear in mind the length of hex values is much longer than the example given.)