dump-things-pyclient 0.2.1__py3-none-any.whl → 0.2.2__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.
@@ -0,0 +1,10 @@
1
+ import sys
2
+ from pathlib import Path
3
+
4
+ import rich_click as click
5
+
6
+
7
+ def main():
8
+ command_name = Path(sys.argv[0]).name
9
+ click.echo(f'Note: `{command_name}` is now a subcommand of `dtc`, please use the command `dtc {command_name} ...`.', err=True)
10
+ return 1
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dump-things-pyclient
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: A client library and CLI commands for dump-things-services
5
5
  Author-email: Christian Mönch <christian.moench@web.de>
6
6
  Requires-Python: >=3.11
@@ -3,6 +3,7 @@ dump_things_pyclient/communicate.py,sha256=CTkgEigu16BmLrlJScMQKhHLI_W4SywDb4HCw
3
3
  dump_things_pyclient/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  dump_things_pyclient/commands/dtc.py,sha256=dxW5RuogqwhzfVujZ_EEsQMk8BcVMbZyMdg5c8EvYIA,1726
5
5
  dump_things_pyclient/commands/json2ttl.py,sha256=8BkvdjLWZ_H0L6fTmuR2M2MglKiMUiuNUcuWr_w6_dQ,2133
6
+ dump_things_pyclient/commands/redirect.py,sha256=kl8pGj8khjxk4lhk8AJLfgtCIm5PtjeMAl0J6K5FB7M,264
6
7
  dump_things_pyclient/commands/dtc_plugins/__init__.py,sha256=0YLByLiofhHkhJcDCkokldcCw3Jj0rsKJinRX4tt3Hc,514
7
8
  dump_things_pyclient/commands/dtc_plugins/auto_curate.py,sha256=3_SHXPQCXmY6GqTMTNVkKh5vvshfiZpMGFY0gvJxRbo,7411
8
9
  dump_things_pyclient/commands/dtc_plugins/clean_incoming.py,sha256=slk3xn1-DgMl88WZqgyemyscwof97TMXt3rley4mU1w,2086
@@ -10,8 +11,8 @@ dump_things_pyclient/commands/dtc_plugins/get_records.py,sha256=YBRNo7HUCWZ-EOv8
10
11
  dump_things_pyclient/commands/dtc_plugins/list_incoming.py,sha256=tmM0Qs4MVwMMLyERsWCxWGTM90rSNOShLpHH32wObd8,1959
11
12
  dump_things_pyclient/commands/dtc_plugins/post_records.py,sha256=s3j9THe-RszKxyIISkQZRCTKplWWLlomHbS5dyRlep0,2908
12
13
  dump_things_pyclient/commands/dtc_plugins/read_pages.py,sha256=hpw7vtG7joIMrNqEqZFCwzbQFd3ATzv7iyySsX8nKWk,3385
13
- dump_things_pyclient-0.2.1.dist-info/METADATA,sha256=7TPuI97WTVrgJrPBWOzfYOFAOo7_lNXzbzPD-OkskrY,999
14
- dump_things_pyclient-0.2.1.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
15
- dump_things_pyclient-0.2.1.dist-info/entry_points.txt,sha256=UciGaqSUivgH8oFLO8vNhHqKLmVFhjdM1tdfqCwgOok,117
16
- dump_things_pyclient-0.2.1.dist-info/top_level.txt,sha256=Asvruw-SyLoYhWis1CFOx89RGxpjXoTZVGoq4JSGt88,21
17
- dump_things_pyclient-0.2.1.dist-info/RECORD,,
14
+ dump_things_pyclient-0.2.2.dist-info/METADATA,sha256=kvCtVMiZmCjtrJssE6O-WGGZBVrpVec2uoXdOcaj8vM,999
15
+ dump_things_pyclient-0.2.2.dist-info/WHEEL,sha256=qELbo2s1Yzl39ZmrAibXA2jjPLUYfnVhUNTlyF1rq0Y,92
16
+ dump_things_pyclient-0.2.2.dist-info/entry_points.txt,sha256=U1QhQtk767G_OXdZwPdTXYbIPfcDU13Z2u1d6exX8uE,470
17
+ dump_things_pyclient-0.2.2.dist-info/top_level.txt,sha256=Asvruw-SyLoYhWis1CFOx89RGxpjXoTZVGoq4JSGt88,21
18
+ dump_things_pyclient-0.2.2.dist-info/RECORD,,
@@ -0,0 +1,9 @@
1
+ [console_scripts]
2
+ auto-curate = dump_things_pyclient.commands.redirect:main
3
+ clean-incoming = dump_things_pyclient.commands.redirect:main
4
+ dtc = dump_things_pyclient.commands.dtc:cli
5
+ get-records = dump_things_pyclient.commands.redirect:main
6
+ json2ttl = dump_things_pyclient.commands.json2ttl:main
7
+ list-incoming = dump_things_pyclient.commands.redirect:main
8
+ post-records = dump_things_pyclient.commands.redirect:main
9
+ read-pages = dump_things_pyclient.commands.redirect:main
@@ -1,3 +0,0 @@
1
- [console_scripts]
2
- dtc = dump_things_pyclient.commands.dtc:cli
3
- json2ttl = dump_things_pyclient.commands.json2ttl:main