I have hex data in a string. I need to be able parse the string byte by byte, but through reading the docs, the only way to get data bytewise is through the f.read(1) function.
How do I parse a string of hex characters, either into a list, or into an array, or some structure where I can access byte by byte.