| Paramiko: | Python SSH module |
|---|---|
| Copyright: | Copyright (c) 2003-2009 Robey Pointer <robeypointer@gmail.com> |
| Copyright: | Copyright (c) 2013-2017 Jeff Forcier <jeff@bitprophet.org> |
| License: | LGPL |
| Homepage: | http://www.paramiko.org/ |
| API docs: | http://docs.paramiko.org |
| Development: | https://github.com/paramiko/paramiko |
"Paramiko" is a combination of the Esperanto words for "paranoid" and "friend". It's a module for Python 2.6+/3.3+ that implements the SSH2 protocol for secure (encrypted and authenticated) connections to remote machines. Unlike SSL (aka TLS), SSH2 protocol does not require hierarchical certificates signed by a powerful central authority. You may know SSH2 as the protocol that replaced Telnet and rsh for secure access to remote shells, but the protocol also includes the ability to open arbitrary channels to remote services across the encrypted tunnel (this is how SFTP works, for example).
It is written entirely in Python (though it depends on third-party C wrappers for low level crypto; these are often available precompiled) and is released under the GNU Lesser General Public License (LGPL).
The package and its API is fairly well documented in the docs folder that
should have come with this repository.
For most users, the recommended method to install is via pip:
pip install paramiko
For more detailed instructions, see the Installing page on the main Paramiko website.
Paramiko primarily supports POSIX platforms with standard OpenSSH implementations, and is most frequently tested on Linux and OS X. Windows is supported as well, though it may not be as straightforward.
| Bug Reports: | Github |
|---|---|
| Mailing List: | paramiko@librelist.com (see the LibreList website for usage details). |
| IRC: | #paramiko on Freenode |
Paramiko ships with optional Kerberos/GSSAPI support; for info on the extra dependencies for this, see the GSS-API section on the main Paramiko website.
Several demo scripts come with Paramiko to demonstrate how to use it. Probably the simplest demo is this:
import base64
import paramiko
key = paramiko.RSAKey(data=base64.b64decode(b'AAA...'))
client = paramiko.SSHClient()
client.get_host_keys().add('ssh.example.com', 'ssh-rsa', key)
client.connect('ssh.example.com', username='strongbad', password='thecheat')
stdin, stdout, stderr = client.exec_command('ls')
for line in stdout:
print('... ' + line.strip('\n'))
client.close()
This prints out the results of executing ls on a remote server. The host
key b'AAA...' should of course be replaced by the actual base64 encoding of the
host key. If you skip host key verification, the connection is not secure!
The following example scripts (in demos/) get progressively more detailed:
The demo scripts are probably the best example of how to use this package. Also a lot of documentation is generated by Sphinx autodoc, in the doc/ folder.
There are also unit tests here:
$ python ./test.py
Which will verify that most of the core components are working correctly.
