I'm writing Python programs that run other programs, like:

my-wrapper-program --foo --bar git commit --all

Here, foo and bar are arguments to my-wrapper-program, and git commit --all is the sub-command I'm interested in running. How do I do this in argparse, without having to always specify the -- special argument? (The common case is the simplest one: my-wrapper-program command.)

(With optparse, you can use disallow_interspersed_args=False.)

link|improve this question

75% accept rate
feedback

1 Answer

up vote 3 down vote accepted

This page has some suggestions.

link|improve this answer
Thanks, argparse.REMAINDER solves the problem nicely. – Yang Apr 30 '11 at 4:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.