I'd like to make a script that supports an argument list of the form
./myscript --env ONE=1,TWO=2 --env THREE=3
Here's my attempt:
import argparse
parser = argparse.ArgumentParser()
parser.add_argument(
'--env',
type=lambda s: s.split(','),
action='append',
)
options = parser.parse_args()
print options.env
$ ./myscript --env ONE=1,TWO=2 --env THREE=3
[['ONE=1', 'TWO=2'], ['THREE=3']]
Sure I can fix this in postprocessing:
options.env = [x for y in options.env for x in y]
but I'm wondering if there's some way to get the flattened list directly from argparse, so that I don't have to maintain a list of "things I need to flatten afterwards" in my head as I'm adding new options to the program.
The same question applies if I were to use nargs='*'
instead of type=lambda...
.
import argparse
parser = argparse.ArgumentParser()
parser.add_argument(
'--env',
nargs='+',
action='append',
)
options = parser.parse_args()
print options.env
$ ./myscript --env ONE=1 TWO=2 --env THREE=3
[['ONE=1', 'TWO=2'], ['THREE=3']]
An
extend
action class has been asked for (http://bugs.python.org/issue23378), but since it's easy to add your own I don't think the feature will ever by added.A common Python idiom for flattening a list uses
chain
:Your list comprehension is the equivalent:
In http://bugs.python.org/issue16399#msg277919 I suggest another possiblity - a custom
default
value for theappend
argument.which produces
You'll have to use your own judgment as to what's appropriate in production code.