Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paramiko/paramiko
The leading native Python SSHv2 protocol library.
https://github.com/paramiko/paramiko
Last synced: 3 days ago
JSON representation
The leading native Python SSHv2 protocol library.
- Host: GitHub
- URL: https://github.com/paramiko/paramiko
- Owner: paramiko
- License: lgpl-2.1
- Created: 2009-02-02T03:41:08.000Z (almost 16 years ago)
- Default Branch: main
- Last Pushed: 2024-10-02T14:24:28.000Z (2 months ago)
- Last Synced: 2024-10-29T15:52:23.056Z (about 1 month ago)
- Language: Python
- Homepage: http://paramiko.org
- Size: 7.87 MB
- Stars: 9,108
- Watchers: 318
- Forks: 2,008
- Open Issues: 1,093
-
Metadata Files:
- Readme: README.rst
- Funding: .github/FUNDING.yml
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
- fintech-awesome-libraries - paramiko - The leading native Python SSHv2 protocol library. (Cryptography)
- stars - paramiko/paramiko
- awesomeLibrary - paramiko - The leading native Python SSHv2 protocol library. (语言资源库 / python)
- best-of-python - GitHub - 56% open · ⏱️ 11.02.2024): (Infrastructure & DevOps)
- awesome-trevor - Paramiko - leading native Python SSHv2 protocol library (Programming / Python <img src="https://raw.github.com/pcgeek86/awesome-trevor/main/assets/Python.svg?sanitize=true" height=18>)
- awesome-python-resources - GitHub - 51% open · ⏱️ 10.06.2022): (密码学)
- awesome-starts - paramiko/paramiko - The leading native Python SSHv2 protocol library. (Python)
- awesome-list - Paramiko - The leading native Python SSHv2 protocol library. (Web Development / C++/C Toolkit)
- jimsghstars - paramiko/paramiko - The leading native Python SSHv2 protocol library. (Python)
README
|version| |python| |license| |ci| |coverage|
.. |version| image:: https://img.shields.io/pypi/v/paramiko
:target: https://pypi.org/project/paramiko/
:alt: PyPI - Package Version
.. |python| image:: https://img.shields.io/pypi/pyversions/paramiko
:target: https://pypi.org/project/paramiko/
:alt: PyPI - Python Version
.. |license| image:: https://img.shields.io/pypi/l/paramiko
:target: https://github.com/paramiko/paramiko/blob/main/LICENSE
:alt: PyPI - License
.. |ci| image:: https://img.shields.io/circleci/build/github/paramiko/paramiko/main
:target: https://app.circleci.com/pipelines/github/paramiko/paramiko
:alt: CircleCI
.. |coverage| image:: https://img.shields.io/codecov/c/gh/paramiko/paramiko
:target: https://app.codecov.io/gh/paramiko/paramiko
:alt: CodecovWelcome to Paramiko!
====================Paramiko is a pure-Python [#]_ (3.6+) implementation of the SSHv2 protocol
[#]_, 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... [#]
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... [#]
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.htmlOpenSSH 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.