Skip to content

Instantly share code, notes, and snippets.

@damianesteban
Created August 2, 2013 01:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save damianesteban/6136843 to your computer and use it in GitHub Desktop.
Save damianesteban/6136843 to your computer and use it in GitHub Desktop.
More basic implementation of ftp on python
import ftplib
ftp = ftplib.FTP('ftp.sunet.se', 'anonymous', 'anonymous@sunet.se')
print "File List: "
files = ftp.dir()
print files
ftp.cwd("/pub/unix") #changing to /pub/unix
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment