Skip to content

Instantly share code, notes, and snippets.

@studiawan
Created October 19, 2015 22:22
Show Gist options
  • Save studiawan/fc275270a1cbd7f8e255 to your computer and use it in GitHub Desktop.
Save studiawan/fc275270a1cbd7f8e255 to your computer and use it in GitHub Desktop.
Using ftplib to download a file
from ftplib import FTP
f = FTP('localhost')
f.login('hudan')
fd = open('2003.pdf', 'wb')
f.retrbinary('RETR 2003.pdf', fd.write)
fd.close()
f.quit()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment