Pular para o conteúdo
Menu
Esta pergunta foi sinalizada
3142 Visualizações

Hi, I try to encode a large file but the below method gives me an error:

with open("/tmp/pdf/pdffiles.zip", "rb") as f:

binary_file = f.read()

encoded = base64.b64encode(binary_file)


self.download_zip = encoded


I tried to encode it chunk buy chunk but the downloded file is damaged:


zipfile = open("/tmp/pdf/pdffiles.zip", "rb")

encoded = False

while True:

chunk = zipfile.read(8192) 

if not chunk:

break

if encoded:

encoded += base64.b64encode(chunk)

else:

encoded = base64.b64encode(chunk)

zipfile.close()

self.download_zip = encoded 


Any hint how can I handle with large binary files?

Avatar
Cancelar
Publicações relacionadas Respostas Visualizações Atividade
0
ago. 20
3936
2
dez. 23
14681
0
out. 23
33
3
out. 23
788
1
out. 23
569