I'd like to be able to specify different verbose level, by adding more -v options to the command line. For example:

$ myprogram.py    
$ myprogram.py -v
$ myprogram.py -vv
$ myprogram.py -v -v -v

would lead to verbose=0, verbose=1, verbose=2, and verbose=3 respectively. How can I achieve that using argparse?

Optionally, it could be great to also be able to specify it like

$ myprogram -v 2
link|improve this question

80% accept rate
feedback

5 Answers

up vote 7 down vote accepted

You could do this with nargs='?' (to accept 0 or 1 arguments after the -v flag) and a custom action (to process the 0 or 1 arguments):

import argparse

class VAction(argparse.Action):
    def __call__(self, parser, args, values, option_string=None):
        # print 'values: {v!r}'.format(v=values)
        if values==None:
            values='1'
        try:
            values=int(values)
        except ValueError:
            values=values.count('v')+1
        setattr(args, self.dest, values)

parser=argparse.ArgumentParser()
parser.add_argument('-v', nargs='?', action=VAction, dest='verbose')
args=parser.parse_args(['-v'])
print(args)
# Namespace(verbose=1)

args=parser.parse_args(['-v -v'])
print(args)
# Namespace(verbose=2)

args=parser.parse_args(['-v -v -v'])
print(args)
# Namespace(verbose=3)

args=parser.parse_args(['-vv'])
print(args)
# Namespace(verbose=2)

args=parser.parse_args(['-vvv'])
print(args)
# Namespace(verbose=3)

args=parser.parse_args(['-v 2'])
print(args)
# Namespace(verbose=2)

Uncomment the print statement to see better what the VAction is doing.

link|improve this answer
feedback

I had exactly this desire, and months ago implemented a custom action to do it, which I was getting sick of copying around to the scripts I keep writing. But I've only just now found out that argparse does in fact support action='count', just as optparse did, even though this appears to be completely undocumented in the standard library docs online (this bug report notes the absence; a patch has been posted and reviewed, so presumably it'll appear someday).

import argparse

parser = argparse.ArgumentParser()
parser.add_argument('-v', '--verbose', action='count', default=0)

for c in ['', '-v', '-v -v', '-vv', '-vv -v', '-v -v --verbose -vvvv']:
    print parser.parse_args(c.split())

Output:

Namespace(verbose=0)
Namespace(verbose=1)
Namespace(verbose=2)
Namespace(verbose=2)
Namespace(verbose=3)
Namespace(verbose=7)

The only very minor niggle is you have to explicitly set default=0 if you want no -v arguments to give you a verbosity level of 0 rather than None.

link|improve this answer
feedback

You could handle the first part of your question with append_const. Otherwise, you're probably stuck writing a custom action, as suggested in the fine answer by unutbu.

import argparse

ap = argparse.ArgumentParser()
ap.add_argument('-v', action = 'append_const', const = 1)

for c in ['', '-v', '-v -v', '-vv', '-vv -v']:
    opt = ap.parse_args(c.split())
    opt.v = 0 if opt.v is None else sum(opt.v)
    print opt

Output:

Namespace(v=0)
Namespace(v=1)
Namespace(v=2)
Namespace(v=2)
Namespace(v=3)
link|improve this answer
1  
I like this solution; I think the simplicity of code afforded by using append_const is worth giving up -v 2 for. – unutbu May 20 '11 at 20:27
Choosing which answer I would accept wasn't an easy choice. I like the simplicity of your answer. – Charles Brunet May 22 '11 at 4:16
1  
Using append_const also lets you add a -q argument. With dest='v', const=-1, it will then undo any -v. I use that with a default=[2] so I can map the result to logging module levels, starting at WARN and letting you -q/v up and down the scale. – markpasc Jun 5 '11 at 5:20
feedback

argparse supports the append action which lets you specify multiple arguments. Check http://docs.python.org/library/argparse.html, search for "append".

link|improve this answer
feedback

Your first proposed method would be more likely to confuse. Different option names for different levels of verbosity, or one verbose flag optionally followed by a numeric indicator of the level of verbosity is less likely to confuse a user and would allow more flexibility in assigning verbosity levels.

link|improve this answer
3  
This method isn't uncommon. For example, SSH uses it. – Charles Brunet May 21 '11 at 3:32
feedback

Your Answer

 
or
required, but never shown

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