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.
@@ -1,10 +1,10 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tacklebox-cli
3
- Version: 0.2.1
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/e7f84520d063e5273054b26ac6056179a83ea77d.tar.gz
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
- # assuming that your zipline token is located in a file at `./zipline-token`
72
- $ tacklebox spectacle --server https://zipline.example.com --token $(cat ./zipline-token) | tacklebox copy --trim
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 --server https://zipline.example.com --token $(cat ./zipline-token) --record | tacklebox copy --trim
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
- # assuming that your zipline token is located in a file at `./zipline-token`
26
- $ tacklebox spectacle --server https://zipline.example.com --token $(cat ./zipline-token) | tacklebox copy --trim
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 --server https://zipline.example.com --token $(cat ./zipline-token) --record | tacklebox copy --trim
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
- "youll get a link to the uploaded file; if --object (or on a TTY),\n"
99
- "youll get the raw Python object."
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
  ],
@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '0.2.1'
21
- __version_tuple__ = version_tuple = (0, 2, 1)
20
+ __version__ = version = '0.2.2'
21
+ __version_tuple__ = version_tuple = (0, 2, 2)
File without changes
File without changes