tacklebox-cli 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.
- {tacklebox_cli-0.2.1 → tacklebox_cli-0.2.2}/PKG-INFO +10 -5
- {tacklebox_cli-0.2.1 → tacklebox_cli-0.2.2}/README.md +8 -3
- {tacklebox_cli-0.2.1 → tacklebox_cli-0.2.2}/tacklebox/commands/spectacle.py +2 -2
- {tacklebox_cli-0.2.1 → tacklebox_cli-0.2.2}/tacklebox/version.py +2 -2
- {tacklebox_cli-0.2.1 → tacklebox_cli-0.2.2}/.gitignore +0 -0
- {tacklebox_cli-0.2.1 → tacklebox_cli-0.2.2}/LICENSE.md +0 -0
- {tacklebox_cli-0.2.1 → tacklebox_cli-0.2.2}/pyproject.toml +0 -0
- {tacklebox_cli-0.2.1 → tacklebox_cli-0.2.2}/tacklebox/__init__.py +0 -0
- {tacklebox_cli-0.2.1 → tacklebox_cli-0.2.2}/tacklebox/commands/__init__.py +0 -0
- {tacklebox_cli-0.2.1 → tacklebox_cli-0.2.2}/tacklebox/commands/clipboard.py +0 -0
- {tacklebox_cli-0.2.1 → tacklebox_cli-0.2.2}/tacklebox/commands/version.py +0 -0
- {tacklebox_cli-0.2.1 → tacklebox_cli-0.2.2}/tacklebox/entrypoint.py +0 -0
- {tacklebox_cli-0.2.1 → tacklebox_cli-0.2.2}/tacklebox/sync.py +0 -0
- {tacklebox_cli-0.2.1 → tacklebox_cli-0.2.2}/tacklebox/utils.py +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tacklebox-cli
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.2
|
|
4
4
|
Summary: A small collection of CLI utilities.
|
|
5
5
|
Project-URL: Homepage, https://c.csw.im/cswimr/tacklebox
|
|
6
6
|
Project-URL: Issues, https://c.csw.im/cswimr/tacklebox/issues
|
|
7
|
-
Project-URL: source_archive, https://c.csw.im/cswimr/tacklebox/archive/
|
|
7
|
+
Project-URL: source_archive, https://c.csw.im/cswimr/tacklebox/archive/a338ec567b0358a40fa7ca3bd3504309a5046ba1.tar.gz
|
|
8
8
|
Author-email: cswimr <seaswimmerthefsh@gmail.com>
|
|
9
9
|
License: The MIT License (MIT)
|
|
10
10
|
=====================
|
|
@@ -68,11 +68,16 @@ a
|
|
|
68
68
|
Uses the [zipline.py](https://pypi.org/project/zipline-py/) library alongside KDE's [Spectacle](https://invent.kde.org/plasma/spectacle) application to take a screenshot or screen recording and automatically upload it to a [Zipline](https://github.com/diced/zipline) instance. This automatically reads Spectacle's configuration files to determine file formats.
|
|
69
69
|
|
|
70
70
|
```bash
|
|
71
|
-
|
|
72
|
-
|
|
71
|
+
$ tacklebox spectacle \
|
|
72
|
+
--server "https://zipline.example.com" \
|
|
73
|
+
--token "$(cat /file/containing/zipline/token)" \
|
|
74
|
+
| tacklebox copy --trim
|
|
73
75
|
|
|
74
76
|
# or to record a video
|
|
75
|
-
$ tacklebox spectacle --
|
|
77
|
+
$ tacklebox spectacle --record \
|
|
78
|
+
--server "https://zipline.example.com" \
|
|
79
|
+
--token "$(cat /file/containing/zipline/token)" \
|
|
80
|
+
| tacklebox copy --trim
|
|
76
81
|
```
|
|
77
82
|
|
|
78
83
|
### tacklebox zipline
|
|
@@ -22,11 +22,16 @@ a
|
|
|
22
22
|
Uses the [zipline.py](https://pypi.org/project/zipline-py/) library alongside KDE's [Spectacle](https://invent.kde.org/plasma/spectacle) application to take a screenshot or screen recording and automatically upload it to a [Zipline](https://github.com/diced/zipline) instance. This automatically reads Spectacle's configuration files to determine file formats.
|
|
23
23
|
|
|
24
24
|
```bash
|
|
25
|
-
|
|
26
|
-
|
|
25
|
+
$ tacklebox spectacle \
|
|
26
|
+
--server "https://zipline.example.com" \
|
|
27
|
+
--token "$(cat /file/containing/zipline/token)" \
|
|
28
|
+
| tacklebox copy --trim
|
|
27
29
|
|
|
28
30
|
# or to record a video
|
|
29
|
-
$ tacklebox spectacle --
|
|
31
|
+
$ tacklebox spectacle --record \
|
|
32
|
+
--server "https://zipline.example.com" \
|
|
33
|
+
--token "$(cat /file/containing/zipline/token)" \
|
|
34
|
+
| tacklebox copy --trim
|
|
30
35
|
```
|
|
31
36
|
|
|
32
37
|
### tacklebox zipline
|
|
@@ -95,8 +95,8 @@ async def spectacle(
|
|
|
95
95
|
default_factory=sys.stdout.isatty,
|
|
96
96
|
help=(
|
|
97
97
|
"Choose how to format the output. If --text (or piped),\n"
|
|
98
|
-
"you
|
|
99
|
-
"you
|
|
98
|
+
"you'll get a link to the uploaded file; if --object (or on a TTY),\n"
|
|
99
|
+
"you'll get the raw Python object."
|
|
100
100
|
),
|
|
101
101
|
),
|
|
102
102
|
],
|
|
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
|