I have a utility that is written in Python and is meant to be used on its own or in conjunction with other shell utilities. As such, my utility exits with status codes (e.g. 0 if everything is fine, 1 when an input file or output directory doesn't exist, etc.).

My question: I'm using argparse module and it works great, not only for parsing options but for generating help. However, I'd like to be able to add some info about my exit statuses to the help as well. Is this possible with argparse; am I missing something?

link|improve this question
1  
Have you considered putting that info into the epilog? – Rik Poggi Feb 1 at 15:31
@RikPoggi: Your comment should be an answer. – Ferdinand Beyer Feb 1 at 15:43
feedback

1 Answer

up vote 6 down vote accepted

That's an info I'd put inside the epilog.

Adjusting the example from the official documentation:

>>> import argparse
>>> parser = argparse.ArgumentParser(
...     description='This is my utility description.',
...     epilog='The exit status will be 0 if everything is fine, '
...            'and 1 if an input-file or an output-directory does not exist')
>>> 
>>> parser.print_help()
usage: [-h]

This is my utility description.

optional arguments:
  -h, --help  show this help message and exit

The exit status will be 0 if everything is fine, and 1 when an input-file or
an output-directory does not exist
link|improve this answer
Thanks a bunch, that's exactly what I should do! – JStroop Feb 1 at 16:50
feedback

Your Answer

 
or
required, but never shown

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