Explicit binary reading of files for python3 compatibility
In python3 files are opened in text mode by default and it is critical to specify 'b' for raw bytes reading.
In python3 files are opened in text mode by default and it is critical to specify 'b' for raw bytes reading.