SSH2 Module for Python
Paramiko is a module for python 2.2 (or higher) that implements the
SSH2 protocol for secure (encrypted and authenticated) connections to
remote machines.
Unlike SSL (aka TLS), the 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 (no C or platform-dependent code) and
is released under the GNU LGPL (lesser GPL).
- Developed at devel:languages:python
-
8
derived packages
- Download package
-
Checkout Package
osc -A https://api.opensuse.org checkout openSUSE:Factory/python-paramiko && cd $_
- Create Badge
Refresh
Refresh
Source Files
Filename | Size | Changed |
---|---|---|
paramiko-1.10.1.tar.gz | 0000822839 804 KB | |
python-paramiko.changes | 0000006258 6.11 KB | |
python-paramiko.spec | 0000002108 2.06 KB |
Revision 18 (latest revision is 64)
Stephan Kulow (coolo)
accepted
request 175245
from
Sascha Peilicke (saschpe)
(revision 18)
- update to 1.10.1: * SFTP put of empty file will still return the attributes of the put file. Thanks to Jason R. Coombs for the patch. * Forwarded SSH agent connections left stale local pipes lying around, which could cause local (and sometimes remote or network resource starvation when running many agent-using remote commands. Thanks to * Batch SFTP writes to help speed up file transfers * Fix handling of window-change events to be on-spec * Overhaul SSH config parsing to be in line with `man ssh_config` * Forego random padding for packets when running under `*-ctr` ciphers * Add `SFTPClient.putfo` and `.getfo` methods to allow direct uploading/downloading of file-like objects * Add `timeout` parameter to `SSHClient.exec_command` for easier setting of the command's internal channel object's timeout * Expose the internal "is closed" property of the file transfer class BufferedFile` as `.closed`, better conforming to Python's file interface (forwarded request 175235 from dirkmueller)
Comments 0