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 1
1
# python-sshcontroller
2
2
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/ ) .
6
6
7
7
## Installation
8
8
Run:
@@ -14,7 +14,8 @@ Note that the package has been exclusively tested on Python 3.6+.
14
14
15
15
## Usage
16
16
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 ) .
18
19
19
20
#### 1. Create a new SSH controller from a SSH key
20
21
``` python
@@ -156,4 +157,4 @@ ssh_controller.disconnect()
156
157
```
157
158
158
159
## 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 15
15
packages = setuptools .find_packages (),
16
16
classifiers = [
17
17
"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+)" ,
20
20
"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" ,
24
24
],
25
25
python_requires = '>=3.6' ,
26
26
)
Original file line number Diff line number Diff line change 1
- #!/usr/bin/python3
2
1
import errno
3
2
import logging
4
3
import paramiko
You can’t perform that action at this time.
0 commit comments