diff options
author | Bryan Newbold <bnewbold@archive.org> | 2020-10-29 15:22:47 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2020-10-29 15:23:15 -0700 |
commit | 8e9106885bc736648c0bf0151a29d4bea9b72650 (patch) | |
tree | 8e3ca41508f79850bbfc3fa262ec519e8a5894eb /python | |
parent | ae37c8e32f1289816b69cd5a502a6bc5fd862414 (diff) | |
download | sandcrawler-8e9106885bc736648c0bf0151a29d4bea9b72650.tar.gz sandcrawler-8e9106885bc736648c0bf0151a29d4bea9b72650.zip |
better default CLI output (show usage)
Diffstat (limited to 'python')
-rwxr-xr-x | python/grobid_tool.py | 2 | ||||
-rwxr-xr-x | python/ingest_file.py | 2 | ||||
-rwxr-xr-x | python/pdfextract_tool.py | 2 | ||||
-rwxr-xr-x | python/pdftrio_tool.py | 2 | ||||
-rw-r--r-- | python/sandcrawler/html_ingest.py | 2 | ||||
-rwxr-xr-x | python/sandcrawler_worker.py | 2 |
6 files changed, 6 insertions, 6 deletions
diff --git a/python/grobid_tool.py b/python/grobid_tool.py index fe507a0..2a1d8b5 100755 --- a/python/grobid_tool.py +++ b/python/grobid_tool.py @@ -133,7 +133,7 @@ def main(): args = parser.parse_args() if not args.__dict__.get("func"): - print("tell me what to do!") + parser.print_help(file=sys.stderr) sys.exit(-1) args.sink = None diff --git a/python/ingest_file.py b/python/ingest_file.py index f6f694e..ad78f50 100755 --- a/python/ingest_file.py +++ b/python/ingest_file.py @@ -78,7 +78,7 @@ def main(): args = parser.parse_args() if not args.__dict__.get("func"): - print("tell me what to do!", file=sys.stderr) + parser.print_help(file=sys.stderr) sys.exit(-1) args.func(args) diff --git a/python/pdfextract_tool.py b/python/pdfextract_tool.py index 0d33ec9..10a0f48 100755 --- a/python/pdfextract_tool.py +++ b/python/pdfextract_tool.py @@ -115,7 +115,7 @@ def main(): args = parser.parse_args() if not args.__dict__.get("func"): - print("tell me what to do!", file=sys.stderr) + parser.print_help(file=sys.stderr) sys.exit(-1) args.text_sink = None diff --git a/python/pdftrio_tool.py b/python/pdftrio_tool.py index ec92afe..5cffa8c 100755 --- a/python/pdftrio_tool.py +++ b/python/pdftrio_tool.py @@ -105,7 +105,7 @@ def main(): args = parser.parse_args() if not args.__dict__.get("func"): - print("tell me what to do!") + parser.print_help(file=sys.stderr) sys.exit(-1) args.sink = None diff --git a/python/sandcrawler/html_ingest.py b/python/sandcrawler/html_ingest.py index 0e1439c..10662a1 100644 --- a/python/sandcrawler/html_ingest.py +++ b/python/sandcrawler/html_ingest.py @@ -179,7 +179,7 @@ def main() -> None: args = parser.parse_args() if not args.__dict__.get("func"): - print("tell me what to do! (try --help)") + parser.print_help(file=sys.stderr) sys.exit(-1) if args.func == "run_single": diff --git a/python/sandcrawler_worker.py b/python/sandcrawler_worker.py index 77c0704..a653771 100755 --- a/python/sandcrawler_worker.py +++ b/python/sandcrawler_worker.py @@ -304,7 +304,7 @@ def main(): args = parser.parse_args() if not args.__dict__.get("func"): - print("tell me what to do!") + parser.print_help(file=sys.stderr) sys.exit(-1) args.func(args) |