with open("myfile", "rb") as f: byte = f.read(1) while byte: # Do stuff with byte. byte = f.read(1)
def read_file_bytes(filename): with open(filename, 'rb') as f: return f.read()