qssh 0.2.1__tar.gz → 0.2.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {qssh-0.2.1/src/qssh.egg-info → qssh-0.2.2}/PKG-INFO +7 -7
- {qssh-0.2.1 → qssh-0.2.2}/README.md +6 -6
- {qssh-0.2.1 → qssh-0.2.2}/pyproject.toml +1 -1
- {qssh-0.2.1 → qssh-0.2.2}/src/qssh/__init__.py +2 -2
- {qssh-0.2.1 → qssh-0.2.2/src/qssh.egg-info}/PKG-INFO +7 -7
- {qssh-0.2.1 → qssh-0.2.2}/LICENSE +0 -0
- {qssh-0.2.1 → qssh-0.2.2}/setup.cfg +0 -0
- {qssh-0.2.1 → qssh-0.2.2}/src/qssh/cli.py +0 -0
- {qssh-0.2.1 → qssh-0.2.2}/src/qssh/connector.py +0 -0
- {qssh-0.2.1 → qssh-0.2.2}/src/qssh/py.typed +0 -0
- {qssh-0.2.1 → qssh-0.2.2}/src/qssh/session.py +0 -0
- {qssh-0.2.1 → qssh-0.2.2}/src/qssh.egg-info/SOURCES.txt +0 -0
- {qssh-0.2.1 → qssh-0.2.2}/src/qssh.egg-info/dependency_links.txt +0 -0
- {qssh-0.2.1 → qssh-0.2.2}/src/qssh.egg-info/entry_points.txt +0 -0
- {qssh-0.2.1 → qssh-0.2.2}/src/qssh.egg-info/requires.txt +0 -0
- {qssh-0.2.1 → qssh-0.2.2}/src/qssh.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: qssh
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Quick SSH session manager - save your VM credentials and connect with a single command
|
|
5
5
|
Author: joan-code6
|
|
6
6
|
License-Expression: MIT
|
|
@@ -47,7 +47,7 @@ pip install qssh
|
|
|
47
47
|
### 1. Add a new session
|
|
48
48
|
|
|
49
49
|
```bash
|
|
50
|
-
qssh add
|
|
50
|
+
qssh add myserver
|
|
51
51
|
```
|
|
52
52
|
|
|
53
53
|
You'll be prompted for:
|
|
@@ -59,7 +59,7 @@ You'll be prompted for:
|
|
|
59
59
|
### 2. Connect to your VM
|
|
60
60
|
|
|
61
61
|
```bash
|
|
62
|
-
qssh
|
|
62
|
+
qssh myserver
|
|
63
63
|
```
|
|
64
64
|
|
|
65
65
|
That's it! You're connected.
|
|
@@ -79,8 +79,8 @@ That's it! You're connected.
|
|
|
79
79
|
## Examples
|
|
80
80
|
|
|
81
81
|
```bash
|
|
82
|
-
# Add a session for your
|
|
83
|
-
qssh add
|
|
82
|
+
# Add a session for your myserver VM
|
|
83
|
+
qssh add myserver
|
|
84
84
|
# Host: 192.168.1.100
|
|
85
85
|
# Username: admin
|
|
86
86
|
# Port [22]: 22
|
|
@@ -88,7 +88,7 @@ qssh add outcraft
|
|
|
88
88
|
# Password: ********
|
|
89
89
|
|
|
90
90
|
# Now just connect with:
|
|
91
|
-
qssh
|
|
91
|
+
qssh myserver
|
|
92
92
|
|
|
93
93
|
# List all your sessions
|
|
94
94
|
qssh list
|
|
@@ -97,7 +97,7 @@ qssh list
|
|
|
97
97
|
qssh remove old-server
|
|
98
98
|
|
|
99
99
|
# Show details of a session
|
|
100
|
-
qssh show
|
|
100
|
+
qssh show myserver
|
|
101
101
|
```
|
|
102
102
|
|
|
103
103
|
## Using SSH Keys
|
|
@@ -15,7 +15,7 @@ pip install qssh
|
|
|
15
15
|
### 1. Add a new session
|
|
16
16
|
|
|
17
17
|
```bash
|
|
18
|
-
qssh add
|
|
18
|
+
qssh add myserver
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
You'll be prompted for:
|
|
@@ -27,7 +27,7 @@ You'll be prompted for:
|
|
|
27
27
|
### 2. Connect to your VM
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
|
-
qssh
|
|
30
|
+
qssh myserver
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
That's it! You're connected.
|
|
@@ -47,8 +47,8 @@ That's it! You're connected.
|
|
|
47
47
|
## Examples
|
|
48
48
|
|
|
49
49
|
```bash
|
|
50
|
-
# Add a session for your
|
|
51
|
-
qssh add
|
|
50
|
+
# Add a session for your myserver VM
|
|
51
|
+
qssh add myserver
|
|
52
52
|
# Host: 192.168.1.100
|
|
53
53
|
# Username: admin
|
|
54
54
|
# Port [22]: 22
|
|
@@ -56,7 +56,7 @@ qssh add outcraft
|
|
|
56
56
|
# Password: ********
|
|
57
57
|
|
|
58
58
|
# Now just connect with:
|
|
59
|
-
qssh
|
|
59
|
+
qssh myserver
|
|
60
60
|
|
|
61
61
|
# List all your sessions
|
|
62
62
|
qssh list
|
|
@@ -65,7 +65,7 @@ qssh list
|
|
|
65
65
|
qssh remove old-server
|
|
66
66
|
|
|
67
67
|
# Show details of a session
|
|
68
|
-
qssh show
|
|
68
|
+
qssh show myserver
|
|
69
69
|
```
|
|
70
70
|
|
|
71
71
|
## Using SSH Keys
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: qssh
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: Quick SSH session manager - save your VM credentials and connect with a single command
|
|
5
5
|
Author: joan-code6
|
|
6
6
|
License-Expression: MIT
|
|
@@ -47,7 +47,7 @@ pip install qssh
|
|
|
47
47
|
### 1. Add a new session
|
|
48
48
|
|
|
49
49
|
```bash
|
|
50
|
-
qssh add
|
|
50
|
+
qssh add myserver
|
|
51
51
|
```
|
|
52
52
|
|
|
53
53
|
You'll be prompted for:
|
|
@@ -59,7 +59,7 @@ You'll be prompted for:
|
|
|
59
59
|
### 2. Connect to your VM
|
|
60
60
|
|
|
61
61
|
```bash
|
|
62
|
-
qssh
|
|
62
|
+
qssh myserver
|
|
63
63
|
```
|
|
64
64
|
|
|
65
65
|
That's it! You're connected.
|
|
@@ -79,8 +79,8 @@ That's it! You're connected.
|
|
|
79
79
|
## Examples
|
|
80
80
|
|
|
81
81
|
```bash
|
|
82
|
-
# Add a session for your
|
|
83
|
-
qssh add
|
|
82
|
+
# Add a session for your myserver VM
|
|
83
|
+
qssh add myserver
|
|
84
84
|
# Host: 192.168.1.100
|
|
85
85
|
# Username: admin
|
|
86
86
|
# Port [22]: 22
|
|
@@ -88,7 +88,7 @@ qssh add outcraft
|
|
|
88
88
|
# Password: ********
|
|
89
89
|
|
|
90
90
|
# Now just connect with:
|
|
91
|
-
qssh
|
|
91
|
+
qssh myserver
|
|
92
92
|
|
|
93
93
|
# List all your sessions
|
|
94
94
|
qssh list
|
|
@@ -97,7 +97,7 @@ qssh list
|
|
|
97
97
|
qssh remove old-server
|
|
98
98
|
|
|
99
99
|
# Show details of a session
|
|
100
|
-
qssh show
|
|
100
|
+
qssh show myserver
|
|
101
101
|
```
|
|
102
102
|
|
|
103
103
|
## Using SSH Keys
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|