vote up 4 vote down star

I have a binary file that I have to parse and I'm using Python. Is there a way to take 4 bytes and convert it to a single precision floating point number?

flag

63% accept rate

4 Answers

vote up 9 vote down check

You want the struct package.

link|flag
Add a bit of demonstration code and I'll upvote. – John Mulder Jan 9 at 5:44
vote up 1 vote down

You should definitely give Construct a try. Like struct it allows to translate binary data to Python object and vice versa, but offers a lot more features.

Really great for parsing protocol data, legacy binary file formats and such.

link|flag
vote up 5 vote down
>>> import struct
>>> struct.pack('f', 3.141592654)
'\xdb\x0fI@'
>>> struct.unpack('f', '\xdb\x0fI@')
(3.1415927410125732,)
>>> struct.pack('4f', 1.0, 2.0, 3.0, 4.0)
'\x00\x00\x80?\x00\x00\x00@\x00\x00@@\x00\x00\x80@'
link|flag
vote up -2 vote down

Edit: Forget what I said. But it looks like GotAPI has what you are looking for.

GotAPI is a great resource for finding out all those built in functions that you may not already know about.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.