Hvis du vil læse JSON-filen som bytes, skal du åbne filen i binær tilstand:
with open(filename, 'rb') as file_data:
bytes_content = file_data.read()
Hvis du vil læse JSON-filen som bytes, skal du åbne filen i binær tilstand:
with open(filename, 'rb') as file_data:
bytes_content = file_data.read()