I'm writing a program in which I would like to have arguments like this:

--[no-]foo   Do (or do not) foo. Default is do.

Is there a way to get argparse to do this for me?

I'm using Python 3.2.


Edit:

Since there seems to be no way to do this, I'm opting for this idea instead...

parser.add_argument('--foo=', choices=('y', 'n'), default='y',
                    help="Do foo? (default y)")

IMHO, not quite as elegant, but it works.


Edit 2:

I figured out a reasonably nice solution involving deriving my own class derived from argparse.Action that I've detailed in an answer to this question.

link|improve this question

No. The "no-" prefix is highly localized. It's not consistent in English ("un-" is also quite common.) – S.Lott Feb 10 at 20:17
I think you have to write it yourself. I wish it had it built-in. – jterrace Feb 10 at 20:18
@S.Lott: That's true. This program will not have a global audience though. :-) And if such a possibility were available, I'd expect the prefix to be able to be customized in some way. – Omnifarious Feb 10 at 20:29
Global isn't the issue. Language is the issue. For the one language I know well, there are innumerable irregularities. That's why there's not "automatic" feature. – S.Lott Feb 10 at 21:04
@jterrace: I wish the _add_action API were documented and that Action was more than a simple container of attributes. – Omnifarious Feb 11 at 16:30
feedback

4 Answers

up vote 4 down vote accepted

Well, none of the answers so far are quite satisfactory for a variety of reasons. So here is my own answer:

class ActionNoYes(argparse.Action):
    def __init__(self, opt_name, dest, default=True, required=False, help=None):
        super(ActionNoYes, self).__init__(['--' + opt_name, '--no-' + opt_name], dest, nargs=0, const=None, default=default, required=required, help=help)
    def __call__(self, parser, namespace, values, option_string=None):
        if option_string.starts_with('--no-'):
            setattr(namespace, self.dest, False)
        else:
            setattr(namespace, self.dest, True)

And an example of use:

>>> p = argparse.ArgumentParser()
>>> p._add_action(ActionNoYes('foo', 'foo', help="Do (or do not) foo. (default do)"))
ActionNoYes(option_strings=['--foo', '--no-foo'], dest='foo', nargs=0, const=None, default=True, type=None, choices=None, help='Do (or do not) foo. (default do)', metavar=None)
>>> p.parse_args(['--no-foo', '--foo', '--no-foo'])
Namespace(foo=False)
>>> p.print_help()
usage: -c [-h] [--foo]

optional arguments:
  -h, --help       show this help message and exit
  --foo, --no-foo  Do (or do not) foo. (default do)

Unfortunately, the _add_action member function isn't documented, so this isn't 'official' in terms of being supported by the API. Also, Action is mainly a holder class. It has very little behavior on its own. It would be nice if it were possible to use it to customize the help message a bit more. For example saying --[no-]foo at the beginning. But that part is auto-generated by stuff outside the Action class.

link|improve this answer
this looks nice – jterrace Feb 12 at 4:02
@jterrace: Unfortunately it requires that I wait 15 hours before accepting my own answer. Though, truly, if someone could do better than this I would love to know how. – Omnifarious Feb 12 at 4:25
feedback

Does the add_mutually_exclusive_group() of argparse help?

parser = argparse.ArgumentParser()
exclusive_grp = parser.add_mutually_exclusive_group()
exclusive_grp.add_argument('--foo', action='store_true', help='do foo')
exclusive_grp.add_argument('--no-foo', action='store_true', help='do not do foo')
args = parser.parse_args()

print 'Starting program', 'with' if args.foo else 'without', 'foo'
print 'Starting program', 'with' if args.no_foo else 'without', 'no_foo'

Here's how it looks when run:

./so.py --help
usage: so.py [-h] [--foo | --no-foo]

optional arguments:
  -h, --help  show this help message and exit
  --foo       do foo
  --no-foo    do not do foo

./so.py
Starting program without foo
Starting program without no_foo

./so.py --no-foo --foo
usage: so.py [-h] [--foo | --no-foo]
so.py: error: argument --foo: not allowed with argument --no-foo

This is different from the following in the mutually exclusive group allows neither option in your program (and I'm assuming that you want options because of the -- syntax). This implies one or the other:

parser.add_argument('--foo=', choices=('y', 'n'), default='y',
                    help="Do foo? (default y)")

If these are required (non-optional), maybe using add_subparsers() is what you're looking for.

Update 1

Logically different, but maybe cleaner:

...
exclusive_grp.add_argument('--foo', action='store_true', dest='foo', help='do foo')
exclusive_grp.add_argument('--no-foo', action='store_false', dest='foo', help='do not do foo')
args = parser.parse_args()

print 'Starting program', 'with' if args.foo else 'without', 'foo'

And running it:

./so.py --foo
Starting program with foo
./so.py --no-foo
Starting program without foo
./so.py
Starting program without foo
link|improve this answer
Could you set action='store_false' for --no-foo and set dest='foo' for both so that it shows up in a single variable? – jterrace Feb 10 at 21:59
@jterrace Yes. Interesting suggestion. I've added an updated solution. – Zachary Young Feb 10 at 22:17
nice. you could wrap it in a function like in @s-lott's answer and would be really nice – jterrace Feb 10 at 22:37
This is good, except the help is a little unnecessarily verbose. But at least the argument group thing keeps the related arguments stuck together. – Omnifarious Feb 10 at 22:41
Also, it does not allow '--foo' and '--no-foo' to be specified at the same time and have the last specified take precedence. – Omnifarious Feb 10 at 23:45
show 2 more comments
feedback

Write your own subclass.

class MyArgParse(argparse.ArgumentParser):
    def magical_add_paired_arguments( self, *args, **kw ):
        self.add_argument( *args, **kw )
        self.add_argument( '--no'+args[0][2:], *args[1:], **kw )
link|improve this answer
Hmm... that's an interesting idea. Is there an idea of an 'argument object' that can parse things itself and maybe generate it's own help message? That would really do the trick. – Omnifarious Feb 10 at 22:40
@Omnifarious: "generate it's own help message"? What can that possibly mean? What's wrong with adding more code as shown above? If you want even more magical things to occur, you might find it easier to simply read the source to argparse yourself and see how it works internally. – S.Lott Feb 10 at 22:45
Well, that's one of the big advantages of argparse. It generates the help messages and stuff for you. add_argument could be thought of as a function that constructs some sort of argument object that represents all the features of an argument... how to parse it, which variable to stuff it in, default values, how to generate help, all that stuff, and puts it into a nice list inside the parser. But you're right, I should just delve into the internals myself and see if I can fiddle it the way I want. If it doesn't work the way I imagine, it should. It's lots more flexible. – Omnifarious Feb 10 at 22:53
"add_argument could be thought of as a function"? It is a method which constructs an argument object. That's what it actually does. I don't get the comment. What are you saying? – S.Lott Feb 10 at 22:54
So it does work the way I imagine. There is an 'argument object' that's constructed. Which means you can instantiate a different argument object that implements the methods differently. It could, for example, just add a dictionary with all the values given to the add_argument method to a list of those dictionaries. – Omnifarious Feb 10 at 22:55
show 2 more comments
feedback

For fun, here's a full implementation of S.Lott's answer:

import argparse

class MyArgParse(argparse.ArgumentParser):
    def magical_add_paired_arguments( self, *args, **kw ):
        exclusive_grp = self.add_mutually_exclusive_group()
        exclusive_grp.add_argument( *args, **kw )
        new_action = 'store_false' if kw['action'] == 'store_true' else 'store_true'
        del kw['action']
        new_help = 'not({})'.format(kw['help'])
        del kw['help']
        exclusive_grp.add_argument( '--no-'+args[0][2:], *args[1:], 
                           action=new_action,
                           help=new_help, **kw )

parser = MyArgParse()
parser.magical_add_paired_arguments('--foo', action='store_true',
                                    dest='foo', help='do foo')
args = parser.parse_args()

print 'Starting program', 'with' if args.foo else 'without', 'foo'

Here's the output:

./so.py --help
usage: so.py [-h] [--foo | --no-foo]

optional arguments:
  -h, --help  show this help message and exit
  --foo       do foo
  --no-foo    not(do foo)
link|improve this answer
This is very nice, but has a couple of disadvantages. First it does allow specifying both --foo and --no-foo on the command line and having the last one take precedence. Secondly, the help is unnecessarily verbose, even though the mutually exclusive group thing does put them together. I went my own way and detailed my approach in an answer to this question. – Omnifarious Feb 10 at 23:51
feedback

Your Answer

 
or
required, but never shown

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