Metadata-Version: 2.1
Name: paramiko
Version: 3.4.1
Summary: SSH2 protocol library
Home-page: https://paramiko.org
Author: Jeff Forcier
Author-email: jeff@bitprophet.org
License: LGPL
Project-URL: Docs, https://docs.paramiko.org
Project-URL: Source, https://github.com/paramiko/paramiko
Project-URL: Issues, https://github.com/paramiko/paramiko/issues
Project-URL: Changelog, https://www.paramiko.org/changelog.html
Project-URL: CI, https://app.circleci.com/pipelines/github/paramiko/paramiko
Platform: Posix; MacOS X; Windows
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet
Classifier: Topic :: Security :: Cryptography
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.6
Requires-Dist: bcrypt>=3.2
Requires-Dist: cryptography>=3.3
Requires-Dist: pynacl>=1.5
Provides-Extra: all
Requires-Dist: pyasn1>=0.1.7; extra == "all"
Requires-Dist: invoke>=2.0; extra == "all"
Requires-Dist: gssapi>=1.4.1; platform_system != "Windows" and extra == "all"
Requires-Dist: pywin32>=2.1.8; platform_system == "Windows" and extra == "all"
Provides-Extra: ed25519
Provides-Extra: gssapi
Requires-Dist: pyasn1>=0.1.7; extra == "gssapi"
Requires-Dist: gssapi>=1.4.1; platform_system != "Windows" and extra == "gssapi"
Requires-Dist: pywin32>=2.1.8; platform_system == "Windows" and extra == "gssapi"
Provides-Extra: invoke
Requires-Dist: invoke>=2.0; extra == "invoke"
|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: Codecov
Welcome 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