From 44a3f1286a81ad5565a925b766124f05165c492f Mon Sep 17 00:00:00 2001 From: Bryan Newbold Date: Wed, 11 Dec 2019 16:57:18 -0800 Subject: improve argparse usage --fatcat-api-url is clearer than --host-url remove unimplemented --debug (copy/paste from webface argparse) use formater which will display 'default' parameters with --help Thanks to Martin for pointing out the later, which i've always wanted! --- python/fatcat_ingest.py | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'python/fatcat_ingest.py') diff --git a/python/fatcat_ingest.py b/python/fatcat_ingest.py index 05b7e848..46f46536 100755 --- a/python/fatcat_ingest.py +++ b/python/fatcat_ingest.py @@ -91,11 +91,9 @@ def run_ingest_container(args): print(counts, file=sys.stderr) def main(): - parser = argparse.ArgumentParser() - parser.add_argument('--debug', - action='store_true', - help="enable debugging interface") - parser.add_argument('--host-url', + parser = argparse.ArgumentParser( + formatter_class=argparse.ArgumentDefaultsHelpFormatter) + parser.add_argument('--fatcat-api-url', default="http://localhost:9411/v0", help="connect to this host/port") parser.add_argument('--enqueue-kafka', @@ -129,7 +127,7 @@ def main(): print("tell me what to do!") sys.exit(-1) - args.api = public_api(args.host_url) + args.api = public_api(args.fatcat_api_url) args.func(args) if __name__ == '__main__': -- cgit v1.2.3