from ftplib import FTP f = FTP('ftp.python.org') f.login('anonymous', '-h[email protected]') f.dir() f.retrlines('RETR motd') f.quit()