Se vuoi leggere il file JSON come byte dovresti aprire il file in modalità binaria:
with open(filename, 'rb') as file_data:
bytes_content = file_data.read()
Se vuoi leggere il file JSON come byte dovresti aprire il file in modalità binaria:
with open(filename, 'rb') as file_data:
bytes_content = file_data.read()