from ftplib import FTPf = FTP('ftp.ibiblio.org')print "Welcome:", f.getwelcome()f.login()print "CWD:", f.pwd()f.quit()