github-ssh-key 0.4.2__tar.gz → 1.0.0__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.
- {github_ssh_key-0.4.2 → github_ssh_key-1.0.0}/LICENSE +1 -1
- {github_ssh_key-0.4.2/github_ssh_key.egg-info → github_ssh_key-1.0.0}/PKG-INFO +31 -46
- {github_ssh_key-0.4.2 → github_ssh_key-1.0.0}/README.md +29 -44
- {github_ssh_key-0.4.2 → github_ssh_key-1.0.0}/github_ssh_key/__init__.py +2 -2
- {github_ssh_key-0.4.2 → github_ssh_key-1.0.0}/github_ssh_key/app.py +2 -2
- {github_ssh_key-0.4.2 → github_ssh_key-1.0.0}/github_ssh_key/commander.py +1 -1
- {github_ssh_key-0.4.2 → github_ssh_key-1.0.0}/github_ssh_key/manager.py +2 -2
- {github_ssh_key-0.4.2 → github_ssh_key-1.0.0/github_ssh_key.egg-info}/PKG-INFO +31 -46
- {github_ssh_key-0.4.2 → github_ssh_key-1.0.0}/setup.cfg +1 -1
- {github_ssh_key-0.4.2 → github_ssh_key-1.0.0}/setup.py +1 -1
- {github_ssh_key-0.4.2 → github_ssh_key-1.0.0}/MANIFEST.in +0 -0
- {github_ssh_key-0.4.2 → github_ssh_key-1.0.0}/github_ssh_key.egg-info/SOURCES.txt +0 -0
- {github_ssh_key-0.4.2 → github_ssh_key-1.0.0}/github_ssh_key.egg-info/dependency_links.txt +0 -0
- {github_ssh_key-0.4.2 → github_ssh_key-1.0.0}/github_ssh_key.egg-info/entry_points.txt +0 -0
- {github_ssh_key-0.4.2 → github_ssh_key-1.0.0}/github_ssh_key.egg-info/not-zip-safe +0 -0
- {github_ssh_key-0.4.2 → github_ssh_key-1.0.0}/github_ssh_key.egg-info/requires.txt +0 -0
- {github_ssh_key-0.4.2 → github_ssh_key-1.0.0}/github_ssh_key.egg-info/top_level.txt +0 -0
- {github_ssh_key-0.4.2 → github_ssh_key-1.0.0}/requirements.txt +0 -0
- {github_ssh_key-0.4.2 → github_ssh_key-1.0.0}/tox.ini +0 -0
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: github-ssh-key
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.0
|
|
4
4
|
Summary: GitHub ssh key manager. Console utility for creating, getting, testing, using public ssh keys for GitHub.
|
|
5
5
|
Home-page: https://github.com/smartlegionlab/github-ssh-key/
|
|
6
|
-
Author:
|
|
6
|
+
Author: Alexander Suvorov
|
|
7
7
|
Author-email: smartlegiondev@gmail.com
|
|
8
8
|
License: BSD 3-Clause License
|
|
9
9
|
Project-URL: Documentation, https://github.com/smartlegionlab/github-ssh-keyn/blob/master/README.md
|
|
@@ -28,10 +28,12 @@ Requires-Dist: click~=8.0.1
|
|
|
28
28
|
Requires-Dist: smartcliapp~=0.4.0
|
|
29
29
|
Dynamic: license-file
|
|
30
30
|
|
|
31
|
-
# github-ssh-key <sup>
|
|
32
|
-
|
|
31
|
+
# github-ssh-key <sup>v1.0.0</sup>
|
|
32
|
+
|
|
33
|
+
GitHub ssh key manager. Console utility for creating, getting, testing,
|
|
33
34
|
using public ssh keys for GitHub.
|
|
34
|
-
|
|
35
|
+
|
|
36
|
+
---
|
|
35
37
|
|
|
36
38
|
[](https://pepy.tech/projects/github-ssh-key)
|
|
37
39
|

|
|
@@ -44,33 +46,20 @@ using public ssh keys for GitHub.
|
|
|
44
46
|
[](https://github.com/smartlegionlab/github-ssh-key/)
|
|
45
47
|
[](https://github.com/smartlegionlab/github-ssh-key/)
|
|
46
48
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
Author and developer: ___A.A. Suvorov___
|
|
50
|
-
|
|
51
|
-
***
|
|
49
|
+
---
|
|
52
50
|
|
|
53
51
|
## Supported:
|
|
54
52
|
|
|
55
53
|
- Linux: All.
|
|
56
54
|
- Termux (Android).
|
|
57
55
|
|
|
58
|
-
|
|
56
|
+
---
|
|
59
57
|
|
|
60
58
|
## Images:
|
|
61
59
|
|
|
62
60
|

|
|
63
61
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
## What's new?
|
|
67
|
-
|
|
68
|
-
### ___github-ssh-key v0.3.0___
|
|
69
|
-
|
|
70
|
-
- Improved work with help, added the ability to run commands directly from help.
|
|
71
|
-
- Improved interface.
|
|
72
|
-
|
|
73
|
-
***
|
|
62
|
+
---
|
|
74
63
|
|
|
75
64
|
## Description:
|
|
76
65
|
|
|
@@ -90,7 +79,17 @@ Possibilities:
|
|
|
90
79
|
- Cloning private repositories via ssh.
|
|
91
80
|
- Running individual commands.
|
|
92
81
|
|
|
93
|
-
|
|
82
|
+
---
|
|
83
|
+
|
|
84
|
+
## ⚠️ Disclaimer
|
|
85
|
+
|
|
86
|
+
**By using this software, you agree to the full disclaimer terms.**
|
|
87
|
+
|
|
88
|
+
**Summary:** Software provided "AS IS" without warranty. You assume all risks.
|
|
89
|
+
|
|
90
|
+
**Full legal disclaimer:** See [DISCLAIMER.md](https://github.com/smartlegionlab/github-ssh-key/blob/master/DISCLAIMER.md)
|
|
91
|
+
|
|
92
|
+
---
|
|
94
93
|
|
|
95
94
|
## Help:
|
|
96
95
|
|
|
@@ -172,27 +171,13 @@ To get help with commands, use:
|
|
|
172
171
|
- `pip install -r requirements.txt`
|
|
173
172
|
- `python github-ssh-key.py`
|
|
174
173
|
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
##
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
186
|
-
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
187
|
-
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
188
|
-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
189
|
-
|
|
190
|
-
***
|
|
191
|
-
|
|
192
|
-
## Copyright:
|
|
193
|
-
--------------------------------------------------------
|
|
194
|
-
Licensed under the terms of the BSD 3-Clause License
|
|
195
|
-
(see LICENSE for details).
|
|
196
|
-
Copyright © 2018-2025, A.A. Suvorov
|
|
197
|
-
All rights reserved.
|
|
198
|
-
--------------------------------------------------------
|
|
174
|
+
---
|
|
175
|
+
|
|
176
|
+
## License
|
|
177
|
+
|
|
178
|
+
**[BSD 3-Clause License](https://github.com/smartlegionlab/github-ssh-key/blob/master/LICENSE)**
|
|
179
|
+
|
|
180
|
+
Copyright (©) 2026, [Alexander Suvorov](https://github.com/smartlegionlab)
|
|
181
|
+
|
|
182
|
+
---
|
|
183
|
+
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
# github-ssh-key <sup>
|
|
2
|
-
|
|
1
|
+
# github-ssh-key <sup>v1.0.0</sup>
|
|
2
|
+
|
|
3
|
+
GitHub ssh key manager. Console utility for creating, getting, testing,
|
|
3
4
|
using public ssh keys for GitHub.
|
|
4
|
-
|
|
5
|
+
|
|
6
|
+
---
|
|
5
7
|
|
|
6
8
|
[](https://pepy.tech/projects/github-ssh-key)
|
|
7
9
|

|
|
@@ -14,33 +16,20 @@ using public ssh keys for GitHub.
|
|
|
14
16
|
[](https://github.com/smartlegionlab/github-ssh-key/)
|
|
15
17
|
[](https://github.com/smartlegionlab/github-ssh-key/)
|
|
16
18
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
Author and developer: ___A.A. Suvorov___
|
|
20
|
-
|
|
21
|
-
***
|
|
19
|
+
---
|
|
22
20
|
|
|
23
21
|
## Supported:
|
|
24
22
|
|
|
25
23
|
- Linux: All.
|
|
26
24
|
- Termux (Android).
|
|
27
25
|
|
|
28
|
-
|
|
26
|
+
---
|
|
29
27
|
|
|
30
28
|
## Images:
|
|
31
29
|
|
|
32
30
|

|
|
33
31
|
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
## What's new?
|
|
37
|
-
|
|
38
|
-
### ___github-ssh-key v0.3.0___
|
|
39
|
-
|
|
40
|
-
- Improved work with help, added the ability to run commands directly from help.
|
|
41
|
-
- Improved interface.
|
|
42
|
-
|
|
43
|
-
***
|
|
32
|
+
---
|
|
44
33
|
|
|
45
34
|
## Description:
|
|
46
35
|
|
|
@@ -60,7 +49,17 @@ Possibilities:
|
|
|
60
49
|
- Cloning private repositories via ssh.
|
|
61
50
|
- Running individual commands.
|
|
62
51
|
|
|
63
|
-
|
|
52
|
+
---
|
|
53
|
+
|
|
54
|
+
## ⚠️ Disclaimer
|
|
55
|
+
|
|
56
|
+
**By using this software, you agree to the full disclaimer terms.**
|
|
57
|
+
|
|
58
|
+
**Summary:** Software provided "AS IS" without warranty. You assume all risks.
|
|
59
|
+
|
|
60
|
+
**Full legal disclaimer:** See [DISCLAIMER.md](https://github.com/smartlegionlab/github-ssh-key/blob/master/DISCLAIMER.md)
|
|
61
|
+
|
|
62
|
+
---
|
|
64
63
|
|
|
65
64
|
## Help:
|
|
66
65
|
|
|
@@ -142,27 +141,13 @@ To get help with commands, use:
|
|
|
142
141
|
- `pip install -r requirements.txt`
|
|
143
142
|
- `python github-ssh-key.py`
|
|
144
143
|
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
##
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
156
|
-
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
157
|
-
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
158
|
-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
159
|
-
|
|
160
|
-
***
|
|
161
|
-
|
|
162
|
-
## Copyright:
|
|
163
|
-
--------------------------------------------------------
|
|
164
|
-
Licensed under the terms of the BSD 3-Clause License
|
|
165
|
-
(see LICENSE for details).
|
|
166
|
-
Copyright © 2018-2025, A.A. Suvorov
|
|
167
|
-
All rights reserved.
|
|
168
|
-
--------------------------------------------------------
|
|
144
|
+
---
|
|
145
|
+
|
|
146
|
+
## License
|
|
147
|
+
|
|
148
|
+
**[BSD 3-Clause License](https://github.com/smartlegionlab/github-ssh-key/blob/master/LICENSE)**
|
|
149
|
+
|
|
150
|
+
Copyright (©) 2026, [Alexander Suvorov](https://github.com/smartlegionlab)
|
|
151
|
+
|
|
152
|
+
---
|
|
153
|
+
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
# --------------------------------------------------------
|
|
2
2
|
# Licensed under the terms of the BSD 3-Clause License
|
|
3
3
|
# (see LICENSE for details).
|
|
4
|
-
# Copyright ©
|
|
4
|
+
# Copyright © 2026, Alexander Suvorov
|
|
5
5
|
# All rights reserved.
|
|
6
6
|
# --------------------------------------------------------
|
|
7
7
|
# https://github.com/smartlegionlab
|
|
8
8
|
# --------------------------------------------------------
|
|
9
9
|
"""GitHub ssh key manager."""
|
|
10
|
-
__version__ = '0.
|
|
10
|
+
__version__ = '1.0.0'
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# --------------------------------------------------------
|
|
2
2
|
# Licensed under the terms of the BSD 3-Clause License
|
|
3
3
|
# (see LICENSE for details).
|
|
4
|
-
# Copyright ©
|
|
4
|
+
# Copyright © 2026, Alexander Suvorov
|
|
5
5
|
# All rights reserved.
|
|
6
6
|
# --------------------------------------------------------
|
|
7
7
|
# https://github.com/smartlegionlab
|
|
@@ -21,7 +21,7 @@ def cli(ctx):
|
|
|
21
21
|
"""
|
|
22
22
|
GitHub ssh key manager.
|
|
23
23
|
|
|
24
|
-
Copyright ©
|
|
24
|
+
Copyright © 2026, Alexander Suvorov; All rights reserved.
|
|
25
25
|
|
|
26
26
|
https://github.com/smartlegionlab/
|
|
27
27
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# -------------------------------------------------------
|
|
2
2
|
# Licensed under the terms of the BSD 3-Clause License
|
|
3
3
|
# (see LICENSE for details).
|
|
4
|
-
# Copyright ©
|
|
4
|
+
# Copyright © 2026, Alexander Suvorov
|
|
5
5
|
# All rights reserved.
|
|
6
6
|
# -------------------------------------------------------
|
|
7
7
|
# https://github.com/smartlegionlab
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# --------------------------------------------------------
|
|
2
2
|
# Licensed under the terms of the BSD 3-Clause License
|
|
3
3
|
# (see LICENSE for details).
|
|
4
|
-
# Copyright ©
|
|
4
|
+
# Copyright © 2026, Alexander Suvorov
|
|
5
5
|
# All rights reserved.
|
|
6
6
|
# --------------------------------------------------------
|
|
7
7
|
# https://github.com/smartlegionlab
|
|
@@ -18,5 +18,5 @@ class CliManager(Informer):
|
|
|
18
18
|
title = "Smart Legion Lab"
|
|
19
19
|
description = "Github Ssh Key Manager"
|
|
20
20
|
url = "https://github.com/smartlegionlab"
|
|
21
|
-
copyright = "Copyright ©
|
|
21
|
+
copyright = "Copyright © 2026, Alexander Suvorov"
|
|
22
22
|
version = __version__
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: github-ssh-key
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 1.0.0
|
|
4
4
|
Summary: GitHub ssh key manager. Console utility for creating, getting, testing, using public ssh keys for GitHub.
|
|
5
5
|
Home-page: https://github.com/smartlegionlab/github-ssh-key/
|
|
6
|
-
Author:
|
|
6
|
+
Author: Alexander Suvorov
|
|
7
7
|
Author-email: smartlegiondev@gmail.com
|
|
8
8
|
License: BSD 3-Clause License
|
|
9
9
|
Project-URL: Documentation, https://github.com/smartlegionlab/github-ssh-keyn/blob/master/README.md
|
|
@@ -28,10 +28,12 @@ Requires-Dist: click~=8.0.1
|
|
|
28
28
|
Requires-Dist: smartcliapp~=0.4.0
|
|
29
29
|
Dynamic: license-file
|
|
30
30
|
|
|
31
|
-
# github-ssh-key <sup>
|
|
32
|
-
|
|
31
|
+
# github-ssh-key <sup>v1.0.0</sup>
|
|
32
|
+
|
|
33
|
+
GitHub ssh key manager. Console utility for creating, getting, testing,
|
|
33
34
|
using public ssh keys for GitHub.
|
|
34
|
-
|
|
35
|
+
|
|
36
|
+
---
|
|
35
37
|
|
|
36
38
|
[](https://pepy.tech/projects/github-ssh-key)
|
|
37
39
|

|
|
@@ -44,33 +46,20 @@ using public ssh keys for GitHub.
|
|
|
44
46
|
[](https://github.com/smartlegionlab/github-ssh-key/)
|
|
45
47
|
[](https://github.com/smartlegionlab/github-ssh-key/)
|
|
46
48
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
Author and developer: ___A.A. Suvorov___
|
|
50
|
-
|
|
51
|
-
***
|
|
49
|
+
---
|
|
52
50
|
|
|
53
51
|
## Supported:
|
|
54
52
|
|
|
55
53
|
- Linux: All.
|
|
56
54
|
- Termux (Android).
|
|
57
55
|
|
|
58
|
-
|
|
56
|
+
---
|
|
59
57
|
|
|
60
58
|
## Images:
|
|
61
59
|
|
|
62
60
|

|
|
63
61
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
## What's new?
|
|
67
|
-
|
|
68
|
-
### ___github-ssh-key v0.3.0___
|
|
69
|
-
|
|
70
|
-
- Improved work with help, added the ability to run commands directly from help.
|
|
71
|
-
- Improved interface.
|
|
72
|
-
|
|
73
|
-
***
|
|
62
|
+
---
|
|
74
63
|
|
|
75
64
|
## Description:
|
|
76
65
|
|
|
@@ -90,7 +79,17 @@ Possibilities:
|
|
|
90
79
|
- Cloning private repositories via ssh.
|
|
91
80
|
- Running individual commands.
|
|
92
81
|
|
|
93
|
-
|
|
82
|
+
---
|
|
83
|
+
|
|
84
|
+
## ⚠️ Disclaimer
|
|
85
|
+
|
|
86
|
+
**By using this software, you agree to the full disclaimer terms.**
|
|
87
|
+
|
|
88
|
+
**Summary:** Software provided "AS IS" without warranty. You assume all risks.
|
|
89
|
+
|
|
90
|
+
**Full legal disclaimer:** See [DISCLAIMER.md](https://github.com/smartlegionlab/github-ssh-key/blob/master/DISCLAIMER.md)
|
|
91
|
+
|
|
92
|
+
---
|
|
94
93
|
|
|
95
94
|
## Help:
|
|
96
95
|
|
|
@@ -172,27 +171,13 @@ To get help with commands, use:
|
|
|
172
171
|
- `pip install -r requirements.txt`
|
|
173
172
|
- `python github-ssh-key.py`
|
|
174
173
|
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
##
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
186
|
-
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
187
|
-
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
188
|
-
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
189
|
-
|
|
190
|
-
***
|
|
191
|
-
|
|
192
|
-
## Copyright:
|
|
193
|
-
--------------------------------------------------------
|
|
194
|
-
Licensed under the terms of the BSD 3-Clause License
|
|
195
|
-
(see LICENSE for details).
|
|
196
|
-
Copyright © 2018-2025, A.A. Suvorov
|
|
197
|
-
All rights reserved.
|
|
198
|
-
--------------------------------------------------------
|
|
174
|
+
---
|
|
175
|
+
|
|
176
|
+
## License
|
|
177
|
+
|
|
178
|
+
**[BSD 3-Clause License](https://github.com/smartlegionlab/github-ssh-key/blob/master/LICENSE)**
|
|
179
|
+
|
|
180
|
+
Copyright (©) 2026, [Alexander Suvorov](https://github.com/smartlegionlab)
|
|
181
|
+
|
|
182
|
+
---
|
|
183
|
+
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
[metadata]
|
|
2
2
|
name = github-ssh-key
|
|
3
3
|
version = attr: github_ssh_key.__version__
|
|
4
|
-
author =
|
|
4
|
+
author = Alexander Suvorov
|
|
5
5
|
author_email = smartlegiondev@gmail.com
|
|
6
6
|
description = GitHub ssh key manager. Console utility for creating, getting, testing, using public ssh keys for GitHub.
|
|
7
7
|
long_description = file: README.md
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# --------------------------------------------------------
|
|
2
2
|
# Licensed under the terms of the BSD 3-Clause License
|
|
3
3
|
# (see LICENSE for details).
|
|
4
|
-
# Copyright ©
|
|
4
|
+
# Copyright © 2026, Alexander Suvorov
|
|
5
5
|
# All rights reserved.
|
|
6
6
|
# --------------------------------------------------------
|
|
7
7
|
# https://github.com/smartlegionlab
|
|
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
|