Home | Trees | Indices | Help |
---|
|
Version: 1.14.0
Author: Jeff Forcier <jeff@bitprophet.org>
License: GNU Lesser General Public License (LGPL)
Submodules | |
|
Classes | |
SecurityOptions Simple object containing the security preferences of an ssh transport. |
|
Transport An SSH Transport attaches to a stream (usually a socket), negotiates an encrypted session, authenticates, and then creates stream tunnels, called `channels <.Channel>`, across the session. |
|
SSHClient A high-level representation of a session with an SSH server. |
|
MissingHostKeyPolicy Interface for defining the policy that `.SSHClient` should use when the SSH server's hostname is not in either the system host keys or the application's keys. |
|
AutoAddPolicy Policy for automatically adding the hostname and new host key to the local `.HostKeys` object, and saving it. |
|
RejectPolicy Policy for automatically rejecting the unknown hostname & key. |
|
WarningPolicy Policy for logging a Python-style warning for an unknown host key, but accepting it. |
|
Channel A secure tunnel across an SSH `.Transport`. |
|
SSHException Exception raised by failures in SSH2 protocol negotiation or logic errors. |
|
PasswordRequiredException Exception raised when a password is needed to unlock a private key file. |
|
BadAuthenticationType Exception raised when an authentication type (like password) is used, but the server isn't allowing that type. |
|
ChannelException Exception raised when an attempt to open a new `.Channel` fails. |
|
BadHostKeyException The host key given by the SSH server did not match what we were expecting. |
|
AuthenticationException Exception raised when authentication failed for some reason. |
|
ProxyCommandFailure The "ProxyCommand" found in the .ssh/config file returned an error. |
|
ServerInterface This class defines an interface for controlling the behavior of Paramiko in server mode. |
|
SubsystemHandler Handler for a subsytem in server mode. |
|
RSAKey Representation of an RSA key which can be used to sign and verify SSH2 data. |
|
DSSKey Representation of a DSS key which can be used to sign an verify SSH2 data. |
|
SFTPError | |
SFTP An alias for `.SFTPClient` for backwards compatability. |
|
SFTPClient SFTP client object. |
|
SFTPServer Server-side SFTP subsystem support. |
|
SFTPAttributes Representation of the attributes of a file (or proxied file) for SFTP in client or server mode. |
|
SFTPHandle Abstract object representing a handle to an open file (or folder) in an SFTP server implementation. |
|
SFTPServerInterface This class defines an interface for controlling the behavior of paramiko when using the `.SFTPServer` subsystem to provide an SFTP server. |
|
SFTPFile Proxy object for a file on the remote server, in client mode SFTP. |
|
Message An SSH2 message is a stream of bytes that encodes some combination of strings, integers, bools, and infinite-precision integers (known in Python as longs). |
|
BufferedFile Reusable base class to implement Python-style file buffering around a simpler stream. |
|
Agent Client interface for using private keys from an SSH agent running on the local machine. |
|
AgentKey Private key held in a local SSH agent. |
|
PKey Base class for public keys. |
|
HostKeys Representation of an OpenSSH-style "known hosts" file. |
|
SSHConfig Representation of config information as stored in the format used by OpenSSH. |
|
ProxyCommand Wraps a subprocess running ProxyCommand-driven programs. |
Variables | |
io_sleep = 0.01
|
Home | Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Thu Aug 14 23:09:46 2014 | http://epydoc.sourceforge.net |