January 2019
Beginner to intermediate
776 pages
19h 58m
English
This recipe uses a powerful third-party networking library, Paramiko, to show you an example of file copying by SFTP, as shown in the following command. You can grab the latest code of Paramiko from GitHub (https://github.com/paramiko/paramiko) or PyPI:
$ pip install paramiko
Make sure to have the SSH server and client installed on the target host and local host accordingly. In this example, since we are having localhost also as the target, install SSH locally:
$ sudo apt-get install ssh
Read now
Unlock full access