Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using argparse in Python 2.7 for parsing input options. One of my options is a multiple choice. I want to make a list in its help text, e.g.

from argparse import ArgumentParser

parser = ArgumentParser(description='test')

parser.add_argument('-g', choices=['a', 'b', 'g', 'd', 'e'], default='a',
    help="Some option, where\n"
         " a = alpha\n"
         " b = beta\n"
         " g = gamma\n"
         " d = delta\n"
         " e = epsilon")

parser.parse_args()

However, argparse strips all newlines and consecutive spaces. The result looks like

~/Downloads:52$ python2.7 x.py -h
usage: x.py [-h] [-g {a,b,g,d,e}]

test

optional arguments:
  -h, --help      show this help message and exit
  -g {a,b,g,d,e}  Some option, where a = alpha b = beta g = gamma d = delta e
                  = epsilon

How to insert newlines in the help text?

share|improve this question
I don't have python 2.7 with me so I can test out my ideas. How about using help text in triple quotes (""" """). Do the new lines survive using this? – pyfunc Oct 4 '10 at 8:48
2  
@pyfunc: No. The stripping is done in runtime by argparse, not the interpreter, so switching to """...""" won't help. – KennyTM Oct 4 '10 at 8:50

1 Answer

up vote 30 down vote accepted

Try using RawTextHelpFormatter:

from argparse import RawTextHelpFormatter
parser = ArgumentParser(description='test', formatter_class=RawTextHelpFormatter)
share|improve this answer
Nice, thanks. Is it possible to apply it for 1 option only? – KennyTM Oct 4 '10 at 8:52
2  
I think it's not. You could subclass it, but unfortunately Only the name of this class is considered a public API. All the methods provided by the class are considered an implementation detail. So probably not a great idea, although it might not matter, since 2.7 is meant to be the last 2.x python and you'll be expected to refactor lots of things for 3.x anyway. I'm actually running 2.6 with argparse installed via easy_install so that documentation may itself be out of date. – intuited Oct 4 '10 at 9:00
2  
Some links: for python 2.7, and python 3.*. The 2.6 package should, according to its wiki, comply with the official 2.7 one. From the doc: "Passing RawDescriptionHelpFormatter as formatter_class= indicates that description and epilog are already correctly formatted and should not be line-wrapped" – Stefano Nov 21 '11 at 15:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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