Skip to content
This repository was archived by the owner on Jul 25, 2019. It is now read-only.
/ pysftp Public archive
forked from ryhsiao/pysftp

Managed by terraform

License

Notifications You must be signed in to change notification settings

syapse/pysftp

 
 

Repository files navigation

pysftp

A simple interface to SFTP. The module offers high level abstractions and task based routines to handle your SFTP needs. Checkout the Cook Book, in the docs, to see what pysftp can do for you.

Example

import pysftp

with pysftp.Connection('hostname', username='me', password='secret') as sftp:
    with sftp.cd('public'):             # temporarily chdir to public
        sftp.put('/my/local/filename')  # upload file to public/ on remote

    sftp.get_r('myfiles', '/backup')    # recursively copy myfiles/ to local

Supports

Tested on Python 2.7, 3.2, 3.3, 3.4

Build Status

About

Managed by terraform

Resources

License

Contributing

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • Python 99.0%
  • Shell 1.0%