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.