Skip to content

paramiko/paramiko

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
July 28, 2023 16:15
September 23, 2023 20:00
October 1, 2021 22:04
May 24, 2023 16:12
January 12, 2023 16:18
October 1, 2021 22:04
September 23, 2012 16:16
September 23, 2012 14:34
May 22, 2023 15:25
January 16, 2023 19:38
May 25, 2023 14:12

PyPI - Package Version PyPI - Python Version PyPI - License CircleCI Codecov

Welcome to Paramiko!

Paramiko is a pure-Python [1] (3.6+) 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.

Direct use of Paramiko itself is only intended for users who need advanced/low-level primitives or want to run an in-Python sshd.

For installation information, changelogs, FAQs and similar, please visit our main project website; for API details, see the versioned docs. Additionally, the project maintainer keeps a roadmap on his personal site.

[1]Paramiko relies on cryptography for crypto functionality, which makes use of C and Rust extensions but has many precompiled options available. See our installation page for details.
[2]

OpenSSH's RFC specification page is a fantastic resource and collection of links that we won't bother replicating here: https://www.openssh.com/specs.html

OpenSSH itself also happens to be our primary reference implementation: when in doubt, we consult how they do things, unless there are good reasons not to. There are always some gaps, but we do our best to reconcile them when possible.