skilleter-thingy 0.0.22__py3-none-any.whl → 0.0.24__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.

Potentially problematic release.


This version of skilleter-thingy might be problematic. Click here for more details.

@@ -217,7 +217,7 @@ def show_cpu_load(scr, first, w, h, x, y):
217
217
  yo += 1
218
218
 
219
219
  if yo > h-2:
220
- xo += w/3
220
+ xo += w//3
221
221
  yo = 0
222
222
 
223
223
  x += w//2
@@ -0,0 +1,190 @@
1
+ Metadata-Version: 2.1
2
+ Name: skilleter_thingy
3
+ Version: 0.0.24
4
+ Summary: A collection of useful utilities, mainly aimed at making Git more friendly
5
+ Author-email: John Skilleter <john@skilleter.org.uk>
6
+ Project-URL: Home, https://skilleter.org.uk
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.6
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Requires-Dist: boto3
14
+ Requires-Dist: imagehash
15
+ Requires-Dist: inotify
16
+ Requires-Dist: pillow
17
+ Requires-Dist: psutil
18
+ Requires-Dist: pyaml
19
+ Requires-Dist: pygit2
20
+ Requires-Dist: python-dateutil
21
+ Requires-Dist: requests
22
+
23
+ # Thingy
24
+
25
+ Licence: GPL v3
26
+
27
+ Author: John Skilleter v0.99
28
+
29
+ Collection of shell utilities and configuration stuff for Linux and MacOS. Untested on other operating systems.
30
+
31
+ Permanently (for the forseeable future!) in a beta stage - usable, with a few rough edges, and probably with bugs when used in way I'm not expecting!
32
+
33
+ The following commands are documented in detail in the help output that can be displayed by running the command with the '--help' option.
34
+
35
+ This README just contains a summary of the functionality of each command.
36
+
37
+ # General Commands
38
+
39
+ ## addpath
40
+
41
+ Update a $PATH-type variable by adding or removing entries.
42
+
43
+ ## borger
44
+
45
+ Wrapper for the borg backup utility to make it easier to use with a fixed set of options.
46
+
47
+ ## console-colours
48
+
49
+ Display all available colours in the console.
50
+
51
+ ## diskspacecheck
52
+
53
+ Check how much free space is available on all filesystems, ignoring read-only filesystems, /dev and tmpfs.
54
+
55
+ Issue a warning if any are above 90% used.
56
+
57
+ ## docker-purge
58
+
59
+ Stop or kill docker instances and/or remove docker images.
60
+
61
+ ## ffind
62
+
63
+ Simple file find utility
64
+
65
+ Implements the functionality of the find command that is regularly used in a simpler fashion and ignores all the options that nobody ever uses.
66
+
67
+ ## gl
68
+
69
+ ### gphotosync
70
+
71
+ Utility for syncing photos from Google Photos to local storage
72
+
73
+ ## linecount
74
+
75
+ Count lines of code in a directory tree organised by file type.
76
+
77
+ ## moviemover
78
+
79
+ Search for files matching a wildcard in a directory tree and move them to an equivalent location in a different tree
80
+
81
+ ## phototidier
82
+
83
+ Perform various tidying operations on a directory full of photos:
84
+
85
+ * Remove leading '$' and '_' from filenames
86
+ * Move files in hidden directories up 1 level
87
+ * If the EXIF data in a photo indicates that it was taken on date that doesn't match the name of the directory it is stored in (in YYYY-MM-DD format) then it is moved to the correct directory, creating it if necessary.
88
+
89
+ All move/rename operations are carried out safely with the file being moved having
90
+ a numeric suffix added to the name if it conflicts with an existing file.
91
+
92
+ ## photodupe
93
+
94
+ ## py-audit
95
+
96
+ Query api.osv.dev to determine whether a specified version of a particular Python package is subject to known security vulnerabilities
97
+
98
+ ## readable
99
+
100
+ Pipe for converting colour combinations to make them readable on a light background
101
+
102
+ ## remdir
103
+
104
+ Recursively delete empty directories
105
+
106
+ ## rmdupe
107
+
108
+ Search for duplicate files
109
+
110
+ ## rpylint
111
+
112
+ Run pylint on all the Python source files in the current tree
113
+
114
+ ## s3-sync
115
+
116
+ Synchronise files from S3 to local storage.
117
+
118
+ ## splitpics
119
+
120
+ Copy a directory full of pictures to a destination, creating subdiretories with a fixed number of pictures in each in the destination directory for use with FAT filesystems and digital photo frames.
121
+
122
+ ## strreplace
123
+
124
+ Simple search and replace utility for those times when trying to escape characters in a regexp to use sed is more hassle than it is worth.
125
+
126
+ ## sysmon
127
+
128
+ ## tfm
129
+
130
+ Console-based file-manager, similar to Midnight Commander but better.
131
+
132
+ ## tfparse
133
+
134
+ Read JSON Terraform output and convert back to human-readable text
135
+ This allows multiple errors and warnings to be reported as there's
136
+ no way of doing this directly from Terraform
137
+
138
+ ## trimpath
139
+
140
+ Intelligently trim a path to fit a given width (used by gitprompt)
141
+
142
+ ## window-rename
143
+
144
+ ## xchmod
145
+
146
+ WIP: Command to run chmod only on files that need it (only modifies files that don't have the required permissions already).
147
+
148
+ Currently implements a *very* restricted set of functionality.
149
+
150
+ ## yamlcheck
151
+
152
+ YAML validator - checks that a file is valid YAML (use yamllint to verify that it is nicely-formatted YAML).
153
+
154
+ # Git Utilities
155
+
156
+ ## ggit
157
+
158
+ Run a git command in all repos under the current directory
159
+
160
+ ## ggrep
161
+
162
+ Run 'git grep' in all repos under the current directory
163
+
164
+ ## gitprompt
165
+
166
+ Output a string containing colour-coded shell nesting level, current directory and git working tree status (used in the shell prompt).
167
+
168
+ ## git ca
169
+
170
+ Improved version of 'git commit --amend'. Updates files that are already in the commit and, optionally, adds and commits additional files.
171
+
172
+ ## git cleanup
173
+
174
+ List or delete branches that have already been merged and delete tracking branches that are no longer on ther remote.
175
+
176
+ ## git co
177
+
178
+ ## git mr
179
+
180
+ ## git parent
181
+
182
+ ## git update
183
+
184
+ Update the repo from the remote, rebase branches against their parents, optionally run git cleanup
185
+
186
+ ## git wt
187
+
188
+ Output the top level directory of the git working tree or return an error if we are not in a git working tree.
189
+
190
+ ## git review
@@ -50,7 +50,7 @@ skilleter_thingy/run.py,sha256=EGYJSuMcOmUca6dpfVUFE41vG9C6ZNK8hzZlJCJE6Rs,12619
50
50
  skilleter_thingy/s3_sync.py,sha256=TITptjua_B-iwPlgTniuoxPvuEnQjyTKfs6l9CKHbXc,13849
51
51
  skilleter_thingy/splitpics.py,sha256=qRlJrqet7TEI6SodS4bkuKXQUpOdMaqmjE4c1CR7ouo,3266
52
52
  skilleter_thingy/strreplace.py,sha256=xsIWw0hc452rYEBtNEQFKIzmV03xjm_Taz-eDTmFFKI,2539
53
- skilleter_thingy/sysmon.py,sha256=zSnR9oqGr1TwOhwn7Mcofq2fcnoVjlg5gRH56l2w1N0,11347
53
+ skilleter_thingy/sysmon.py,sha256=XRZG6EVSzoVYan_N16qVB1l1RaU51uvLWlRA0CDjC54,11348
54
54
  skilleter_thingy/tfm.py,sha256=wG4oNhn1pBcLwPPzZc19x_HyPYsM1pl8E0skvj03IH8,33712
55
55
  skilleter_thingy/tfm_pane.py,sha256=BmyRDKZyr0mS89MbudbOUA4uBh4E6X3tGct6JX87vI8,19829
56
56
  skilleter_thingy/tfparse.py,sha256=y4MSipVPO-P12QXMSXAT92qy9YMqNDl_1Thum9j7S2g,2993
@@ -59,9 +59,9 @@ skilleter_thingy/trimpath.py,sha256=SAfOB75_dTldQHjam4kQy1J42209NYPYi8vVAaNn1e8,
59
59
  skilleter_thingy/window_rename.py,sha256=dCBgZqih_3YKHt35hsOAhARFp3QxOi8w8huC63sqJK8,3128
60
60
  skilleter_thingy/xchmod.py,sha256=F9_lxKuLqVlHHr3oBI3dkMoFOuwRzYDlpQMTmDcjpBI,4590
61
61
  skilleter_thingy/yamlcheck.py,sha256=FXylZ5NtHirDlPVhVEUZUZkTugVR-g51BbjaN06akAc,2868
62
- skilleter_thingy-0.0.22.dist-info/LICENSE,sha256=ljOS4DjXvqEo5VzGfdaRwgRZPbNScGBmfwyC8PChvmQ,32422
63
- skilleter_thingy-0.0.22.dist-info/METADATA,sha256=OCI_xvTyeee6TeRaujWdIhtCXmTMlFqTIex2ardtl0I,721
64
- skilleter_thingy-0.0.22.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
65
- skilleter_thingy-0.0.22.dist-info/entry_points.txt,sha256=jf7hVfH0dojLxk0D4TjIazKoqdToditCGdCfyhIotME,1971
66
- skilleter_thingy-0.0.22.dist-info/top_level.txt,sha256=8-JhgToBBiWURunmvfpSxEvNkDHQQ7r25-aBXtZv61g,17
67
- skilleter_thingy-0.0.22.dist-info/RECORD,,
62
+ skilleter_thingy-0.0.24.dist-info/LICENSE,sha256=ljOS4DjXvqEo5VzGfdaRwgRZPbNScGBmfwyC8PChvmQ,32422
63
+ skilleter_thingy-0.0.24.dist-info/METADATA,sha256=bdAQ2Q7iW4Y0-Otcl_StalppVtk2pCtP26dtAxzaNWA,5231
64
+ skilleter_thingy-0.0.24.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
65
+ skilleter_thingy-0.0.24.dist-info/entry_points.txt,sha256=jf7hVfH0dojLxk0D4TjIazKoqdToditCGdCfyhIotME,1971
66
+ skilleter_thingy-0.0.24.dist-info/top_level.txt,sha256=8-JhgToBBiWURunmvfpSxEvNkDHQQ7r25-aBXtZv61g,17
67
+ skilleter_thingy-0.0.24.dist-info/RECORD,,
@@ -1,22 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: skilleter_thingy
3
- Version: 0.0.22
4
- Summary: A collection of useful utilities, mainly aimed at making Git more friendly
5
- Author-email: John Skilleter <john@skilleter.org.uk>
6
- Project-URL: Home, https://skilleter.org.uk
7
- Classifier: Programming Language :: Python :: 3
8
- Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
9
- Classifier: Operating System :: OS Independent
10
- Requires-Python: >=3.6
11
- Description-Content-Type: text/markdown
12
- License-File: LICENSE
13
- Requires-Dist: boto3
14
- Requires-Dist: imagehash
15
- Requires-Dist: inotify
16
- Requires-Dist: pillow
17
- Requires-Dist: psutil
18
- Requires-Dist: pyaml
19
- Requires-Dist: pygit2
20
- Requires-Dist: python-dateutil
21
- Requires-Dist: requests
22
-