Question

Code excerpt:

file = open("D:\\DownloadFolder\\test.jpg", "wb")
def callback(data):
    file.write(data)

connect.retrbinary('RETR cover.jpg', callback)
print("completed")

This script downloads the file cover.jpg from my server. The image is returned distorted though (some parts are missing.) Any ideas?

Était-ce utile?

La solution

You are writing files, but not closing them. Consider closing the file with file.close():

file = open("D:\\DownloadFolder\\test.jpg", "wb")
def callback(data):
    file.write(data)

connect.retrbinary('RETR cover.jpg', callback)
file.close()
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top