Hi,
I'm new to Python and I was given an unknown (supposedly binary) to read. The problem is that I am not sure on how to real the 'actual' data. I have opened the file as:
f = open('/home/mmeclimate/test/test.dat', mode='rb')
f.readline()
The output from readline is:
'MO00\x14\x00\x00\x00\x00\x00\x00\x00\\\x00\x00\x00\xb8\x00\x00\x00\x14\x01\x00\x00p\x01\x00\x00\xcc\x01\x00\x00(\x02\x00\x00\x86\x02\x00\x00\xe4\x02\x00\x00B\x03\x00\x00\xa0\x03\x00\x00\xfe\x03\x00\x00\\\x04\x00\x00\xba\x04\x00\x00\x18\x05\x00\x00v\x05\x00\x00\xd2\x05\x00\x00.\x06\x00\x00\x8a\x06\x00\x00\xf2\x06\x00\x00^\x07\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x05 \x00\x00\x02\x00\x00\x00t\x00\x00\x00\x08\x00\x0e\x00\x00\x004\x00.\x00 \x00S\x00A\x00 \x000\x008\x00.\x001\x000\x00.\x000\x001\x00\n
This is only one line of the file, but how do I decode it? And is there a way to automatize that?
Thanks in advance!
Mike