Reputation: 6063
How would I convert a file to a HEX string using Python? I have searched all over Google for this, but can't seem to find anything useful.
Upvotes: 34
Views: 70711
Reputation: 879461
import binascii
filename = 'test.dat'
with open(filename, 'rb') as f:
content = f.read()
print(binascii.hexlify(content))
Upvotes: 69