Python Read Binary Trj Plik

with open(fileName, mode='rb') as file: # b is important -> binary
    fileContent = file.read()
Deefloral