Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In Python, how do I read a binary file and loop over each byte of that file?

share|improve this question

3 Answers

up vote 65 down vote accepted
f = open("myfile", "rb")
try:
    byte = f.read(1)
    while byte != "":
        # Do stuff with byte.
        byte = f.read(1)
finally:
    f.close()

By suggestion of chrispy:

with open("myfile", "rb") as f:
    byte = f.read(1)
    while byte != "":
        # Do stuff with byte.
        byte = f.read(1)

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:

from __future__ import with_statement

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:

with open("myfile", "rb") as f:
    byte = f.read(1)
    while byte != b"":
        # Do stuff with byte.
        byte = f.read(1)

Or as benhoyt says, skip the not equal and take advantage of the fact that b"" evaluates to false. This makes the code compatible between 2.6 and 3.x without any changes. It would also save you from changing the condition if you go from byte mode to text or the reverse.

with open("myfile", "rb") as f:
    byte = f.read(1)
    while byte:
        # Do stuff with byte.
        byte = f.read(1)
share|improve this answer
4  
EOF? In Python? I think you meant "while len(byte) > 0:" or similar. – RichieHindle Jun 23 '09 at 21:35
2  
The with statement would tidy up this code. – chrispy Jun 23 '09 at 21:41
6  
Just a couple of nit-pickish Python style things: it's common (and PEP8 style) to use the fact that empty strings evaluate to false, so just "while byte: ..." would do. It's also common to use the "while True" idiom in Python so you don't have to repeat the f.read(1). Like "while True: byte = f.read(1); if not byte: break ...". – Ben Hoyt Jun 23 '09 at 23:15
4  
@John Montgomery, "it'll quite when you read a zero": no it won't. You're reading characters, not integers, and no character value from '\x00' to '\xff' is ever False in Python. Only no character, as in '', will be False, and you'll get that only after exhausting your input. – Peter Hansen Dec 18 '09 at 1:01
1  
Reading a file byte-wise is a performance nightmare. This cannot be the best solution available in python. This code should be used with care. – usr Jul 6 '12 at 18:26
show 8 more comments

This generator yields bytes from a file, reading the file in chunks:

def bytes_from_file(filename, chunksize=8192):
    with open(filename, "rb") as f:
        while True:
            chunk = f.read(chunksize)
            if chunk:
                for b in chunk:
                    yield b
            else:
                break

# example:
for b in bytes_from_file('filename'):
    do_stuff_with(b)
share|improve this answer
1  
+1. This is a useful solution if this is something you commonly do I guess. I would probably change it so that bytes_from_file took a file-like object though, so I could use it with all kinds of "streams". – Skurmedel Jun 23 '09 at 21:53
+1 I like this solution more than all other because you are doing your f.read(...) call once in your code. I like to follow DRY principle. – Ztyx Jun 9 '12 at 9:03
So you'll do open/close file for filesize/chunksize times? I'd suggest to pass filehandle to the generator. – Sergey Romanovsky Mar 15 at 4:07
The file is opened (and closed) once. And yes, f could just as well be passed to the function. – codeape Mar 15 at 8:59

If the file is not too big that holding it in memory is a problem:

bytes_read = open("filename", "rb").read()
for b in bytes_read:
    process_byte(b)

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:

file = open("filename", "rb")
try:
    bytes_read = file.read(CHUNKSIZE)
    while bytes_read:
        for b in bytes_read:
            process_byte(b)
        bytes_read = file.read(CHUNKSIZE)
finally:
    file.close()
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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