My favorites | Sign in
Project Logo
                
Code license: New BSD License
Labels: python, sftp, ssh, paramiko, ftp, pycrypto
Show all Featured downloads:
pysftp-0.2.2.tar.gz
Feeds:
People details
Project owners:
  dundeemt

pysftp

pysftp is an easy to use sftp module that utilizes paramiko and pycrypto.

support/user list

http://groups.google.com/group/pysftp

changes

0.2.2 The following methods were added:

quick start

import pysftp

srv = pysftp.Connect('www.yoursever.com')
srv.execute('ls -al')
srv.get('thefile.txt')
srv.put('anotherfile.txt')
srv.close()

features

Connection parameters

Arguments that are not given are guessed from the environment.

parameter description
host The Hostname of the remote machine.
username Your username at the remote machine.(None)
private_key Your private key file.(None)
password Your password at the remote machine.(None)
port The SSH port of the remote machine.(22)
private_key_pass password to use if your private_key is encrypted(None)
log log connection/handshake details (False)









Hosted by Google Code