@@ -97,8 +97,15 @@ class ArgumentParser(argparse.ArgumentParser):
97
97
`argparse.MetavarTypeHelpFormatter` and
98
98
`argparse.RawDescriptionHelpFormatter` classes.
99
99
100
- - add_config_path_arg : bool, optional
101
- When set to `True`, adds a `--config_path` argument, of type Path, which is used to parse
100
+ - add_config_path_arg : bool, str, optional
101
+ When set to `True`, adds a `--config_path` argument, of type Path, which is used to parse.
102
+ If set to a string then this is the name of the config_path argument.
103
+
104
+ - config_path: str, optional
105
+ The values read from this file will overwrite the default values from the dataclass definitions.
106
+ When `add_config_path_arg` is also set the defaults are first updated using `config_path`, and then
107
+ updated with the contents of the `--config_path` file(s). By setting this value it will be default set
108
+ `add_config_path_arg` to True.
102
109
"""
103
110
104
111
def __init__ (
@@ -111,7 +118,7 @@ def __init__(
111
118
argument_generation_mode = ArgumentGenerationMode .FLAT ,
112
119
nested_mode : NestedMode = NestedMode .DEFAULT ,
113
120
formatter_class : type [HelpFormatter ] = SimpleHelpFormatter ,
114
- add_config_path_arg : bool | None = None ,
121
+ add_config_path_arg : bool | str | None = None ,
115
122
config_path : Path | str | Sequence [Path | str ] | None = None ,
116
123
add_dest_to_option_strings : bool | None = None ,
117
124
** kwargs ,
@@ -298,6 +305,11 @@ def parse_known_args(
298
305
self .set_defaults (config_file )
299
306
300
307
if self .add_config_path_arg :
308
+ config_path_name = (
309
+ self .add_config_path_arg
310
+ if isinstance (self .add_config_path_arg , str )
311
+ else "config_path"
312
+ )
301
313
temp_parser = ArgumentParser (
302
314
add_config_path_arg = False ,
303
315
add_help = False ,
@@ -306,14 +318,14 @@ def parse_known_args(
306
318
nested_mode = FieldWrapper .nested_mode ,
307
319
)
308
320
temp_parser .add_argument (
309
- "--config_path " ,
321
+ f "--{ config_path_name } " ,
310
322
type = Path ,
311
323
nargs = "*" ,
312
324
default = self .config_path ,
313
325
help = "Path to a config file containing default values to use." ,
314
326
)
315
327
args_with_config_path , args = temp_parser .parse_known_args (args )
316
- config_path = args_with_config_path . config_path
328
+ config_path = getattr ( args_with_config_path , config_path_name . replace ( "-" , "_" ))
317
329
318
330
if config_path is not None :
319
331
config_paths = config_path if isinstance (config_path , list ) else [config_path ]
@@ -323,7 +335,7 @@ def parse_known_args(
323
335
# Adding it here just so it shows up in the help message. The default will be set in
324
336
# the help string.
325
337
self .add_argument (
326
- "--config_path " ,
338
+ f "--{ config_path_name } " ,
327
339
type = Path ,
328
340
default = config_path ,
329
341
help = "Path to a config file containing default values to use." ,
@@ -1000,7 +1012,7 @@ def parse(
1000
1012
add_option_string_dash_variants : DashVariant = DashVariant .AUTO ,
1001
1013
argument_generation_mode = ArgumentGenerationMode .FLAT ,
1002
1014
formatter_class : type [HelpFormatter ] = SimpleHelpFormatter ,
1003
- add_config_path_arg : bool | None = None ,
1015
+ add_config_path_arg : bool | str | None = None ,
1004
1016
** kwargs ,
1005
1017
) -> DataclassT :
1006
1018
"""Parse the given dataclass from the command-line.
@@ -1010,10 +1022,12 @@ def parse(
1010
1022
1011
1023
If `config_path` is passed, loads the values from that file and uses them as defaults.
1012
1024
"""
1025
+ if dest == add_config_path_arg :
1026
+ raise ValueError ("`add_config_path_arg` cannot be the same as `dest`." )
1027
+
1013
1028
parser = ArgumentParser (
1014
1029
nested_mode = nested_mode ,
1015
1030
add_help = True ,
1016
- # add_config_path_arg=None,
1017
1031
config_path = config_path ,
1018
1032
conflict_resolution = conflict_resolution ,
1019
1033
add_option_string_dash_variants = add_option_string_dash_variants ,
0 commit comments