paramiko.file.BufferedFile:
Reusable base class to implement Python-style file buffering around
a simpler stream.
paramiko.buffered_pipe.BufferedPipe:
A buffer that obeys normal read (with timeout) & close
semantics for a file or socket, but is fed data from another
thread.
paramiko.message.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).
paramiko.client.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.
paramiko.primes.ModulusPack:
convenience object for holding the contents of the /etc/ssh/moduli
file, on systems that have such a file.
paramiko.win_pageant.PageantConnection:
Mock "connection" to an agent which roughly approximates
the behavior of a unix local-domain socket (as used by Agent).
paramiko.sftp_handle.SFTPHandle:
Abstract object representing a handle to an open file (or folder)
in an SFTP server implementation.
paramiko.sftp_si.SFTPServerInterface:
This class defines an interface for controlling the behavior of
paramiko when using the `.SFTPServer` subsystem to provide an SFTP
server.