Python читать бинарный TRJ -файл
with open(fileName, mode='rb') as file: # b is important -> binary
fileContent = file.read()
Deefloral
with open(fileName, mode='rb') as file: # b is important -> binary
fileContent = file.read()