tacklebox-cli 0.1.0__py3-none-any.whl
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/version.py
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# file generated by setuptools-scm
|
|
2
|
+
# don't change, don't track in version control
|
|
3
|
+
|
|
4
|
+
__all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
|
|
5
|
+
|
|
6
|
+
TYPE_CHECKING = False
|
|
7
|
+
if TYPE_CHECKING:
|
|
8
|
+
from typing import Tuple
|
|
9
|
+
from typing import Union
|
|
10
|
+
|
|
11
|
+
VERSION_TUPLE = Tuple[Union[int, str], ...]
|
|
12
|
+
else:
|
|
13
|
+
VERSION_TUPLE = object
|
|
14
|
+
|
|
15
|
+
version: str
|
|
16
|
+
__version__: str
|
|
17
|
+
__version_tuple__: VERSION_TUPLE
|
|
18
|
+
version_tuple: VERSION_TUPLE
|
|
19
|
+
|
|
20
|
+
__version__ = version = '0.1.0'
|
|
21
|
+
__version_tuple__ = version_tuple = (0, 1, 0)
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tacklebox-cli
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A small colection of CLI utilities.
|
|
5
|
+
Project-URL: Homepage, https://c.csw.im/cswimr/Tacklebox
|
|
6
|
+
Project-URL: Issues, https://c.csw.im/cswimr/Tacklebox/issues
|
|
7
|
+
Project-URL: source_archive, https://c.csw.im/cswimr/Tacklebox/archive/0149870cfcd91418709412936f4866ca195b88f2.tar.gz
|
|
8
|
+
Author-email: cswimr <seaswimmerthefsh@gmail.com>
|
|
9
|
+
License-File: LICENSE.md
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.12
|
|
14
|
+
Requires-Dist: desktop-notifier==6.1.1
|
|
15
|
+
Requires-Dist: platformdirs==4.3.8
|
|
16
|
+
Requires-Dist: zipline-py[cli]==0.27.0
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# tacklebox-cli
|
|
20
|
+
|
|
21
|
+
tacklebox-cli offers a suite of useful CLI tools.
|
|
22
|
+
|
|
23
|
+
## Usage
|
|
24
|
+
|
|
25
|
+
### tacklebox clip
|
|
26
|
+
|
|
27
|
+
Cross-platform clipboard copying tool. Uses `wl-copy`, `xclip`, or `xsel` on Linux, `pbcopy` on MacOS, `clip` on Windows, and [OSC 52](https://www.reddit.com/r/vim/comments/k1ydpn/a_guide_on_how_to_copy_text_from_anywhere/) escape codes when operating over SSH or when no other tools are available.
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
echo "a" | tr -d '\n' | tacklebox clip
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### tacklebox spectacle (Linux only)
|
|
34
|
+
|
|
35
|
+
Uses the [zipline.py](https://pypi.org/project/zipline-py/) CLI 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.
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
tacklebox spectacle | tr -d '\n' | tacklebox clip
|
|
39
|
+
|
|
40
|
+
# or to record a video
|
|
41
|
+
tacklebox spectacle --record | tr -d '\n' | tacklebox clip
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
### tacklebox zipline
|
|
45
|
+
|
|
46
|
+
Wraps the [zipline.py](https://pypi.org/project/zipline-py/) CLI. See that project for documentation.
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
tacklebox/version.py,sha256=-LyU5F1uZDjn6Q8_Z6-_FJt_8RE4Kq9zcKdg1abSSps,511
|
|
2
|
+
tacklebox_cli-0.1.0.dist-info/METADATA,sha256=w7uXr9k7tjo_wLrp1ONH9ivDvuet2gBFf3gabSHDXQs,1852
|
|
3
|
+
tacklebox_cli-0.1.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
4
|
+
tacklebox_cli-0.1.0.dist-info/entry_points.txt,sha256=HQyzq_T0SjSLFLfuMZsI-U4-3t9fMxQEqN9Oc7NaYKg,55
|
|
5
|
+
tacklebox_cli-0.1.0.dist-info/licenses/LICENSE.md,sha256=RfxNNipZebgTYGJknwvBeY8C-9NwPGs2atBa5dm3Tyc,1102
|
|
6
|
+
tacklebox_cli-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
The MIT License (MIT)
|
|
2
|
+
=====================
|
|
3
|
+
|
|
4
|
+
Copyright © 2025 cswimr
|
|
5
|
+
|
|
6
|
+
Permission is hereby granted, free of charge, to any person
|
|
7
|
+
obtaining a copy of this software and associated documentation
|
|
8
|
+
files (the “Software”), to deal in the Software without
|
|
9
|
+
restriction, including without limitation the rights to use,
|
|
10
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
11
|
+
copies of the Software, and to permit persons to whom the
|
|
12
|
+
Software is furnished to do so, subject to the following
|
|
13
|
+
conditions:
|
|
14
|
+
|
|
15
|
+
The above copyright notice and this permission notice shall be
|
|
16
|
+
included in all copies or substantial portions of the Software.
|
|
17
|
+
|
|
18
|
+
THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND,
|
|
19
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
20
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
21
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
22
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
23
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
24
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
25
|
+
OTHER DEALINGS IN THE SOFTWARE.
|