X-Git-Url: https://wannabe.guru.org/gitweb/?a=blobdiff_plain;f=config.py;h=1a362a381eeaac36b6b8fabafa2db548ee82b1f0;hb=e46158e49121b8a955bb07b73f5bcf9928b79c90;hp=c883a3b7fd3ff106c97139db096448fce9b457a1;hpb=a993e44371ada4ae0c592058bd98f1c61342c04f;p=python_utils.git diff --git a/config.py b/config.py index c883a3b..1a362a3 100644 --- a/config.py +++ b/config.py @@ -188,6 +188,12 @@ GROUP.add_argument( action='store_true', help='If present, config will raise an exception if it doesn\'t recognize an argument. The default behavior is to ignore unknown arguments so as to allow interoperability with programs that want to use their own argparse calls to parse their own, separate commandline args.', ) +GROUP.add_argument( + '--config_exit_after_parse', + default=False, + action='store_true', + help='If present, halt the program after parsing config. Useful, for example, to write a --config_savefile and then terminate.', +) class Config: @@ -574,6 +580,11 @@ class Config: self.dump_config() self.config_parse_called = True + if config['config_exit_after_parse']: + print("Exiting because of --config_exit_after_parse.") + if self.zk: + self.zk.stop() + sys.exit(0) return self.config def has_been_parsed(self) -> bool: