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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: qssh
3
- Version: 0.2.1
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 outcraft
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 outcraft
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 OutCraft VM
83
- qssh add outcraft
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 outcraft
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 outcraft
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 outcraft
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 outcraft
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 OutCraft VM
51
- qssh add outcraft
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 outcraft
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 outcraft
68
+ qssh show myserver
69
69
  ```
70
70
 
71
71
  ## Using SSH Keys
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "qssh"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "Quick SSH session manager - save your VM credentials and connect with a single command"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -1,7 +1,7 @@
1
1
  """qssh - Quick SSH session manager."""
2
2
 
3
- __version__ = "0.2.1"
4
- __author__ = "benne"
3
+ __version__ = "0.2.2"
4
+ __author__ = "bennet"
5
5
 
6
6
  from .session import SessionManager
7
7
  from .connector import SSHConnector
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: qssh
3
- Version: 0.2.1
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 outcraft
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 outcraft
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 OutCraft VM
83
- qssh add outcraft
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 outcraft
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 outcraft
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