skilleter-thingy 0.0.22__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.
- skilleter_thingy/__init__.py +0 -0
- skilleter_thingy/addpath.py +107 -0
- skilleter_thingy/aws.py +548 -0
- skilleter_thingy/borger.py +269 -0
- skilleter_thingy/colour.py +213 -0
- skilleter_thingy/console_colours.py +63 -0
- skilleter_thingy/dc_curses.py +278 -0
- skilleter_thingy/dc_defaults.py +221 -0
- skilleter_thingy/dc_util.py +50 -0
- skilleter_thingy/dircolors.py +308 -0
- skilleter_thingy/diskspacecheck.py +67 -0
- skilleter_thingy/docker.py +95 -0
- skilleter_thingy/docker_purge.py +113 -0
- skilleter_thingy/ffind.py +536 -0
- skilleter_thingy/files.py +142 -0
- skilleter_thingy/ggit.py +90 -0
- skilleter_thingy/ggrep.py +154 -0
- skilleter_thingy/git.py +1368 -0
- skilleter_thingy/git2.py +1307 -0
- skilleter_thingy/git_br.py +180 -0
- skilleter_thingy/git_ca.py +142 -0
- skilleter_thingy/git_cleanup.py +287 -0
- skilleter_thingy/git_co.py +220 -0
- skilleter_thingy/git_common.py +61 -0
- skilleter_thingy/git_hold.py +154 -0
- skilleter_thingy/git_mr.py +92 -0
- skilleter_thingy/git_parent.py +77 -0
- skilleter_thingy/git_review.py +1416 -0
- skilleter_thingy/git_update.py +385 -0
- skilleter_thingy/git_wt.py +96 -0
- skilleter_thingy/gitcmp_helper.py +322 -0
- skilleter_thingy/gitlab.py +193 -0
- skilleter_thingy/gitprompt.py +274 -0
- skilleter_thingy/gl.py +174 -0
- skilleter_thingy/gphotosync.py +610 -0
- skilleter_thingy/linecount.py +155 -0
- skilleter_thingy/logger.py +112 -0
- skilleter_thingy/moviemover.py +133 -0
- skilleter_thingy/path.py +156 -0
- skilleter_thingy/photodupe.py +110 -0
- skilleter_thingy/phototidier.py +248 -0
- skilleter_thingy/popup.py +87 -0
- skilleter_thingy/process.py +112 -0
- skilleter_thingy/py_audit.py +131 -0
- skilleter_thingy/readable.py +270 -0
- skilleter_thingy/remdir.py +126 -0
- skilleter_thingy/rmdupe.py +550 -0
- skilleter_thingy/rpylint.py +91 -0
- skilleter_thingy/run.py +334 -0
- skilleter_thingy/s3_sync.py +383 -0
- skilleter_thingy/splitpics.py +99 -0
- skilleter_thingy/strreplace.py +82 -0
- skilleter_thingy/sysmon.py +435 -0
- skilleter_thingy/tfm.py +920 -0
- skilleter_thingy/tfm_pane.py +595 -0
- skilleter_thingy/tfparse.py +101 -0
- skilleter_thingy/tidy.py +160 -0
- skilleter_thingy/trimpath.py +84 -0
- skilleter_thingy/window_rename.py +92 -0
- skilleter_thingy/xchmod.py +125 -0
- skilleter_thingy/yamlcheck.py +89 -0
- skilleter_thingy-0.0.22.dist-info/LICENSE +619 -0
- skilleter_thingy-0.0.22.dist-info/METADATA +22 -0
- skilleter_thingy-0.0.22.dist-info/RECORD +67 -0
- skilleter_thingy-0.0.22.dist-info/WHEEL +5 -0
- skilleter_thingy-0.0.22.dist-info/entry_points.txt +43 -0
- skilleter_thingy-0.0.22.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
skilleter_thingy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2
|
+
skilleter_thingy/addpath.py,sha256=4Yhhgjjz1XDI98j0dAiQpNA2ejLefeWUTeSg3nIXQq0,3842
|
|
3
|
+
skilleter_thingy/aws.py,sha256=k08MT1866KuMjgG7ECr7LCuqcgWx78iPDcS9CmemIoA,18614
|
|
4
|
+
skilleter_thingy/borger.py,sha256=AQX7OHeGXcUjkgyXEWE2h_oOey9eczZBbKjrreXvRAs,7832
|
|
5
|
+
skilleter_thingy/colour.py,sha256=D-RTYsND6Xm6m3xl0mOe9QSrTNYsyY0K_a8x3id2gvg,7031
|
|
6
|
+
skilleter_thingy/console_colours.py,sha256=dT5qc_B62VJaWs92yrFt1izoB7hs3a22t3lfrZFybG4,1786
|
|
7
|
+
skilleter_thingy/dc_curses.py,sha256=fuuQPR11zV_akAhygL_cAhVLC5YAgKgowzlITVbETE8,8539
|
|
8
|
+
skilleter_thingy/dc_defaults.py,sha256=ahcteQvoWZrO5iTU68zkIY1Zex6iX5uR5ubwI4CCYBk,6170
|
|
9
|
+
skilleter_thingy/dc_util.py,sha256=Df73imXhHx3HzcPHiRcHAoea0e3HURdLcrolUsMhOFs,1783
|
|
10
|
+
skilleter_thingy/dircolors.py,sha256=xXyk1Bd40NTePGlQr0ejrrB33njLPkqZvw8YTwqS9Og,12268
|
|
11
|
+
skilleter_thingy/diskspacecheck.py,sha256=7xsj4egXXV6jPhXZTe2b5rS03XAmm5uLC5TeiO1NJoE,2072
|
|
12
|
+
skilleter_thingy/docker.py,sha256=ZGz26NS07JOOi5nzOXRq0CMpV_lsfsz1b-tznJI6IOQ,2453
|
|
13
|
+
skilleter_thingy/docker_purge.py,sha256=BD346aZ5eRf1XIgiNrjrfcx2XIPbgqi5bFWqLMfv2MU,3359
|
|
14
|
+
skilleter_thingy/ffind.py,sha256=jiTPjsIvFaQHdiC9xosQGUs-8PDZ9wks0aX9yDv8Sy8,19373
|
|
15
|
+
skilleter_thingy/files.py,sha256=jGFITALK6OPqxJWw3q1vY7mvcxD_JtwMYUMNYnAWqhw,4261
|
|
16
|
+
skilleter_thingy/ggit.py,sha256=LpXtis78r46MpSizbFh_9YWsrL6tn94tRQYoXJi0M-4,2493
|
|
17
|
+
skilleter_thingy/ggrep.py,sha256=dGJv8gHC7bGgFBSrXsPYbwy_1Y40Rz7-Sw7R99G01NE,5876
|
|
18
|
+
skilleter_thingy/git.py,sha256=MxD9y0pPcmZ7nAEE32OFxG16xqYbHacvASm5SksAj9Y,37887
|
|
19
|
+
skilleter_thingy/git2.py,sha256=Ni1eigoOYAeps2YbTaQWYCpL6WjZMKSv4CqiiFi0nJg,35764
|
|
20
|
+
skilleter_thingy/git_br.py,sha256=cLtQJPqpPmBxlheKSHTl-DlzRGb1m8QZUfupWvaof68,5812
|
|
21
|
+
skilleter_thingy/git_ca.py,sha256=Lh4BgZR_m6wRlbWdw84qMrW-y6vqMWkbDAR08uoQVGE,4981
|
|
22
|
+
skilleter_thingy/git_cleanup.py,sha256=VjPxvB6cH2gpOqEz8JyWkWIVrbaNuubJ6NqTJsTEXVI,10214
|
|
23
|
+
skilleter_thingy/git_co.py,sha256=JRVF_RdmdjPbJ2QN_t1tz4PrC4TpjJcKzaAfv0aLBeo,8225
|
|
24
|
+
skilleter_thingy/git_common.py,sha256=sjCRCNfyDhLPtxajjiq1l0SCEqB7d1L2uAgnuxLqc1k,1892
|
|
25
|
+
skilleter_thingy/git_hold.py,sha256=i-mbY6wBZ-lRx6rS2kGyWlTCWqK6suhKape7Dnc4OAo,4630
|
|
26
|
+
skilleter_thingy/git_mr.py,sha256=ik3uVecNos_73aYANgnaHutPdnW3PlGmWiAw9EJ9IGk,3100
|
|
27
|
+
skilleter_thingy/git_parent.py,sha256=1VHbh_iH4tnw6vpafqHWEeZwHZVL_sZOIVZMojKTwlk,2696
|
|
28
|
+
skilleter_thingy/git_review.py,sha256=LDCILatY8wNqySTSK2PsvSiR4Dd-PbtoH-GXzvHfSS0,51276
|
|
29
|
+
skilleter_thingy/git_update.py,sha256=comv8CR1j9W8yuCIeoksAKxH8fPTiROkIXVrHdpXWl4,13985
|
|
30
|
+
skilleter_thingy/git_wt.py,sha256=VAcOgEAqVUUdmmkZ-zxaHi0Xp6LAt9NvZAZzUoJM3AU,3143
|
|
31
|
+
skilleter_thingy/gitcmp_helper.py,sha256=rFCZiivZfYmd1_-0_3YwmYSfGDLWu6e6rK0I9hFXCUY,11279
|
|
32
|
+
skilleter_thingy/gitlab.py,sha256=TKKkrQ3CfbWViEf_fnroQJSW8Nh-YwUeX6zo7GmzndI,6062
|
|
33
|
+
skilleter_thingy/gitprompt.py,sha256=m3WbeEd0WgNIyKbtx-wp-kHnOG83cWjq_KA8W6RmD4g,8925
|
|
34
|
+
skilleter_thingy/gl.py,sha256=fb9OkxfPSuqyfnLYauN0F1jZYIJNLXhNwlU8PRjJ4j4,5964
|
|
35
|
+
skilleter_thingy/gphotosync.py,sha256=-LbNXxi34sMSufmZ-NoStIe-6cKFKK2zvcDH7quI8W8,22040
|
|
36
|
+
skilleter_thingy/linecount.py,sha256=lw3vuXUUnMwrUihY6bHfZJsRKe6ZMCRz3952Z9N-ogI,4316
|
|
37
|
+
skilleter_thingy/logger.py,sha256=xKgPAq8KGXmtaXIFjFs1AmZJXtYrXJn2sqL3oxHZjfQ,3107
|
|
38
|
+
skilleter_thingy/moviemover.py,sha256=j_Xb9_jFdgpFBAXcF4tEqbnKH_FonlnUU39LiCK980k,4470
|
|
39
|
+
skilleter_thingy/path.py,sha256=3ba_e-QwYpAs-jFVWoV8sfjVjs_59uc5JZt-87Hqn6g,4737
|
|
40
|
+
skilleter_thingy/photodupe.py,sha256=EiWTDLI4tFZp8ruwkbCayMTiwRfMI7O_kmbWgXwZGVQ,3178
|
|
41
|
+
skilleter_thingy/phototidier.py,sha256=1uj1XbUemJOalNC3PwTG2-_yUQp4WMAcmwRr7QXPn1w,7823
|
|
42
|
+
skilleter_thingy/popup.py,sha256=jW-nbpdeswqEMTli7OmBv1J8XQsvFoMI0J33O6dOeu8,2529
|
|
43
|
+
skilleter_thingy/process.py,sha256=RmXj2RrzwqP_mugeVejtjgF_T3PD7M10XsWuAnc99t0,3565
|
|
44
|
+
skilleter_thingy/py_audit.py,sha256=ZyKN8O0fM4xnwVspk1qH_Dnv5ujM7lJfKxC87xWilr0,4395
|
|
45
|
+
skilleter_thingy/readable.py,sha256=4tUyAWUZpryPYOqaBa3CaiTfuwg4A8zsOl9qoPAQqvE,9465
|
|
46
|
+
skilleter_thingy/remdir.py,sha256=zp5Nr0IMGXQ-b5iT48O5arqWoSjW65Xnr-SpKuav1Ac,4620
|
|
47
|
+
skilleter_thingy/rmdupe.py,sha256=tcX3w8XvliGwBMdSt9BUu07kuDtQEc0IiU8sCxmgzHA,17117
|
|
48
|
+
skilleter_thingy/rpylint.py,sha256=na39x0yNXDwDkG9yP48BoM5FeTut-OS4AVsYixE0YZU,2639
|
|
49
|
+
skilleter_thingy/run.py,sha256=EGYJSuMcOmUca6dpfVUFE41vG9C6ZNK8hzZlJCJE6Rs,12619
|
|
50
|
+
skilleter_thingy/s3_sync.py,sha256=TITptjua_B-iwPlgTniuoxPvuEnQjyTKfs6l9CKHbXc,13849
|
|
51
|
+
skilleter_thingy/splitpics.py,sha256=qRlJrqet7TEI6SodS4bkuKXQUpOdMaqmjE4c1CR7ouo,3266
|
|
52
|
+
skilleter_thingy/strreplace.py,sha256=xsIWw0hc452rYEBtNEQFKIzmV03xjm_Taz-eDTmFFKI,2539
|
|
53
|
+
skilleter_thingy/sysmon.py,sha256=zSnR9oqGr1TwOhwn7Mcofq2fcnoVjlg5gRH56l2w1N0,11347
|
|
54
|
+
skilleter_thingy/tfm.py,sha256=wG4oNhn1pBcLwPPzZc19x_HyPYsM1pl8E0skvj03IH8,33712
|
|
55
|
+
skilleter_thingy/tfm_pane.py,sha256=BmyRDKZyr0mS89MbudbOUA4uBh4E6X3tGct6JX87vI8,19829
|
|
56
|
+
skilleter_thingy/tfparse.py,sha256=y4MSipVPO-P12QXMSXAT92qy9YMqNDl_1Thum9j7S2g,2993
|
|
57
|
+
skilleter_thingy/tidy.py,sha256=wzkyxzCsHXyY46G3Rjqu4ZrqiL8QMbRXyJEeYOmpy-o,5402
|
|
58
|
+
skilleter_thingy/trimpath.py,sha256=SAfOB75_dTldQHjam4kQy1J42209NYPYi8vVAaNn1e8,2397
|
|
59
|
+
skilleter_thingy/window_rename.py,sha256=dCBgZqih_3YKHt35hsOAhARFp3QxOi8w8huC63sqJK8,3128
|
|
60
|
+
skilleter_thingy/xchmod.py,sha256=F9_lxKuLqVlHHr3oBI3dkMoFOuwRzYDlpQMTmDcjpBI,4590
|
|
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,,
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
[console_scripts]
|
|
2
|
+
addpath = skilleter_thingy:addpath.addpath
|
|
3
|
+
borger = skilleter_thingy:borger.borger
|
|
4
|
+
console_colours = skilleter_thingy:console_colours.console_colours
|
|
5
|
+
diskspacecheck = skilleter_thingy:diskspacecheck.diskspacecheck
|
|
6
|
+
docker-purge = skilleter_thingy:docker_purge.docker_purge
|
|
7
|
+
ffind = skilleter_thingy:ffind.ffind
|
|
8
|
+
ggit = skilleter_thingy:ggit.ggit
|
|
9
|
+
ggrep = skilleter_thingy:ggrep.ggrep
|
|
10
|
+
git-br = skilleter_thingy:git_br.git_br
|
|
11
|
+
git-ca = skilleter_thingy:git_ca.git_ca
|
|
12
|
+
git-cleanup = skilleter_thingy:git_cleanup.git_cleanup
|
|
13
|
+
git-co = skilleter_thingy:git_co.git_co
|
|
14
|
+
git-common = skilleter_thingy:git_common.git_common
|
|
15
|
+
git-hold = skilleter_thingy:git_hold.git_hold
|
|
16
|
+
git-mr = skilleter_thingy:git_mr.git_mr
|
|
17
|
+
git-parent = skilleter_thingy:git_parent.git_parent
|
|
18
|
+
git-review = skilleter_thingy:git_review.git_review
|
|
19
|
+
git-update = skilleter_thingy:git_update.git_update
|
|
20
|
+
git-wt = skilleter_thingy:git_wt.git_wt
|
|
21
|
+
gitcmp-helper = skilleter_thingy:gitcmp_helper.gitcmp_helper
|
|
22
|
+
gitprompt = skilleter_thingy:gitprompt.gitprompt
|
|
23
|
+
gl = skilleter_thingy:gl.gl
|
|
24
|
+
gphotosync = skilleter_thingy:gphotosync.gphotosync
|
|
25
|
+
linecount = skilleter_thingy:linecount.linecount
|
|
26
|
+
moviemover = skilleter_thingy:moviemover.moviemover
|
|
27
|
+
photodupe = skilleter_thingy:photodupe.photodupe
|
|
28
|
+
phototidier = skilleter_thingy:phototidier.phototidier
|
|
29
|
+
py-audit = skilleter_thingy:py_audit.py_audit
|
|
30
|
+
readable = skilleter_thingy:readable.readable
|
|
31
|
+
remdir = skilleter_thingy:remdir.remdir
|
|
32
|
+
rmdupe = skilleter_thingy:rmdupe.rmdupe
|
|
33
|
+
rpylint = skilleter_thingy:rpylint.rpylint
|
|
34
|
+
s3-sync = skilleter_thingy:s3_sync.s3_sync
|
|
35
|
+
splitpics = skilleter_thingy:splitpics.splitpics
|
|
36
|
+
strreplace = skilleter_thingy:strreplace.strreplace
|
|
37
|
+
sysmon = skilleter_thingy:sysmon.sysmon
|
|
38
|
+
tfm = skilleter_thingy:tfm.tfm
|
|
39
|
+
tfparse = skilleter_thingy:tfparse.tfparse
|
|
40
|
+
trimpath = skilleter_thingy:trimpath.trimpath
|
|
41
|
+
window-rename = skilleter_thingy:window_rename.window_rename
|
|
42
|
+
xchmod = skilleter_thingy:xchmod.xchmod
|
|
43
|
+
yamlcheck = skilleter_thingy:yamlcheck.yamlcheck
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
skilleter_thingy
|