Skip to content

Instantly share code, notes, and snippets.

@damianesteban
Created August 2, 2013 01:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save damianesteban/6136840 to your computer and use it in GitHub Desktop.
Save damianesteban/6136840 to your computer and use it in GitHub Desktop.
Basic FTP Implementation in Python
from ftplib import FTP
ftp = FTP('ftp.cwi.nl') # connect to host, default port
ftp.login() # user anonymous, passwd anonymous@
ftp.retrlines('LIST') # list directory contents
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment