File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 11# python-sshcontroller
22
3- This package implements a simple interface to communicate and exchange data
4- with remote hosts via SSH. At its core, it is a wrapper around the extensive
5- SSH library [ paramiko] ( https://github.com/paramiko/paramiko/ ) .
3+ This small package implements a simple interface to communicate and exchange
4+ data with remote hosts via SSH. It is essentially a wrapper around the
5+ extensive SSH library [ paramiko] ( https://github.com/paramiko/paramiko/ ) .
66
77## Installation
88Run:
@@ -14,7 +14,8 @@ Note that the package has been exclusively tested on Python 3.6+.
1414
1515## Usage
1616
17- All code snippets can also be found at [ demo.py] ( ./examples/demo.py ) .
17+ All code snippets can also be found at
18+ [ demo.py] ( https://github.com/ojroques/python-sshcontroller/blob/main/examples/demo.py ) .
1819
1920#### 1. Create a new SSH controller from a SSH key
2021``` python
@@ -156,4 +157,4 @@ ssh_controller.disconnect()
156157```
157158
158159## License
159- [ GNU Lesser General Public License v2.1] ( LICENSE )
160+ [ GNU Lesser General Public License v2.1] ( https://github.com/ojroques/python-sshcontroller/blob/main/ LICENSE)
Original file line number Diff line number Diff line change 1515 packages = setuptools .find_packages (),
1616 classifiers = [
1717 "Programming Language :: Python :: 3" ,
18- "Intended Audience :: Developers" ,
19- "License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)" ,
18+ "Intended Audience :: Developers" ,
19+ "License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)" ,
2020 "Operating System :: OS Independent" ,
21- "Topic :: Internet" ,
22- "Topic :: Security :: Cryptography" ,
23- "Topic :: Software Development" ,
21+ "Topic :: Internet" ,
22+ "Topic :: Security :: Cryptography" ,
23+ "Topic :: Software Development" ,
2424 ],
2525 python_requires = '>=3.6' ,
2626)
Original file line number Diff line number Diff line change 1- #!/usr/bin/python3
21import errno
32import logging
43import paramiko
You can’t perform that action at this time.
0 commit comments