parse binary file in python?

Jeff Epler jepler at unpythonic.net
Sun Jan 18 16:15:59 EST 2004


Python's primary tool for this is the "struct" module.  See the stanard
library documentation for more info.

Also, remember always to open files in binary mode ("rb") so that people
running on windows don't get bizarre failures.

Jeff




More information about the Python-list mailing list