Installing — Paramiko documentation
www.paramiko.org › installingThe recommended way to get Paramiko is to install the latest stable release via pip: We currently support Python 2.7, 3.4+, and PyPy. Users on Python 2.6 or older (or 3.3 or older) are urged to upgrade. Paramiko has only a few direct dependencies: The big one, with its own sub-dependencies, is Cryptography; see its specific note below for more ...
SFTP — Paramiko documentation
https://docs.paramiko.org/en/stable/api/sftp.htmlSFTP — Paramiko documentation SFTP ¶ class paramiko.sftp_client.SFTP (sock) ¶ An alias for SFTPClient for backwards compatibility. class paramiko.sftp_client.SFTPClient (sock) ¶ SFTP client object. Used to open an SFTP session across an open SSH Transport and perform remote file operations. Instances of this class may be used as context managers.
Welcome to Paramiko! — Paramiko documentation
www.paramiko.orgParamiko is a pure-Python [1] (2.7, 3.4+) implementation of the SSHv2 protocol [2], providing both client and server functionality. It provides the foundation for the high-level SSH library Fabric , which is what we recommend you use for common client use-cases such as running remote shell commands or transferring files.
SSH agents — Paramiko documentation
https://docs.paramiko.org/en/stable/api/agent.htmlSSH agents¶. SSH Agent interface. class paramiko.agent.Agent¶. Client interface for using private keys from an SSH agent running on the local machine. If an SSH agent is running, this class can be used to connect to it and retrieve PKey objects which can be used when attempting to authenticate to remote SSH servers.. Upon initialization, a session with the local machine’s …
Welcome to Paramiko’s documentation! — Paramiko documentation
docs.paramiko.orgWelcome to Paramiko’s documentation! ¶ This site covers Paramiko’s usage & API documentation. For basic info on what Paramiko is, including its public changelog & how the project is maintained, please see the main project website. API documentation ¶ The high-level client API starts with creation of an SSHClient object.