PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

File zip in byte Python 3

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()