In Python, how do I read a binary file and loop over each byte of that file?
By suggestion of chrispy:
Note that the with statement is not available in versions of Python below 2.5. To use it in v 2.5 you'll need to import it:
In 2.6 this is not needed. In Python 3, it's a bit different. We will no longer get raw characters from the stream in byte mode but byte objects, thus we need to alter the condition:
Or as benhoyt says, skip the not equal and take advantage of the fact that
|
|||||||||||||||||||||
|
|
This generator yields bytes from a file, reading the file in chunks:
|
|||||||||||
|
|
If the file is not too big that holding it in memory is a problem:
where process_byte represents some operation you want to perform on the passed-in byte. If you want to process a chunk at a time:
|
|||
|
|