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?
|
|
|
|
|
|
|
You want the struct package. |
||
|
|
|
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. |
||
|
|
|
|
|
||
|
|
|
|
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. |
||
|
|
