Skip to content

Instantly share code, notes, and snippets.

@scottshuffler
Created May 26, 2015 15:44
Show Gist options
  • Save scottshuffler/a8ddf7a9884cad64ea79 to your computer and use it in GitHub Desktop.
Save scottshuffler/a8ddf7a9884cad64ea79 to your computer and use it in GitHub Desktop.
ftplib example
from ftplib import FTP as ftp
session = ftp()
session.connect(host,port)
session.login(username,password)
session.cwd(remote_directory)
fp = open(path,'rb')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment