Skip to content
Snippets Groups Projects
Select Git revision
  • wild/4da5affcb442d41be670f300c5a3aa32202ea1f8
  • branch/default default protected
  • wild/0dd0f482a779c0ebf116ebfe7f51f6a9b634a82e
  • wild/457f4131afec8a0ef32259805c1dc33e03ceb516
  • wild/5daea11fc2c0a0abb7607ddde6c57e106d9ad3fb
  • wild/8ececc8e9538b03398711a196ca9e48bd64c0969
  • wild/4df3c07d8edb620b9b7751d0a547a0b13e7960f1
  • wild/a51142bfdf9a6601b9df965ed0851a8f7e282a4f
8 results

paramiko

  • Clone with SSH
  • Clone with HTTPS
  • user avatar
    Jeff Forcier authored
    cf745a9a
    History
    Name Last commit Last update
    .circleci
    .github
    demos
    images
    paramiko
    sites
    tests
    .bzrignore
    .codecov.yml
    .coveragerc
    .flake8
    .gitignore
    .readthedocs.yml
    Dockerfile.i386
    LICENSE
    MANIFEST.in
    NEWS
    NOTES
    README.rst
    TODO
    codecov.yml
    dev-requirements.txt
    pytest.ini
    setup.cfg
    setup.py
    setup_helper.py
    tasks.py

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

    Welcome to Paramiko!

    Paramiko 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.

    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] SSH is defined in RFC 4251, RFC 4252, RFC 4253 and RFC 4254. The primary working implementation of the protocol is the OpenSSH project. Paramiko implements a large portion of the SSH feature set, but there are occasional gaps.