PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Zip arquivo para bytes Python 3


Se você quiser ler o arquivo JSON como bytes, abra o arquivo no modo binário:
with open(filename, 'rb') as file_data:
    bytes_content = file_data.read()