Is it possible for argparse to parse combined flags like this:
app.py -bcda something
In this case, I would want something to be set to -a and the rest would be stored True. Basically:
app.py -b -c -d -a something
I know most programs allow this, e.g. grep -rEw, but how hard would it be to do this with with argparse?
-bcdainstead of-abcd. Combining is something that works out of the box.