Assume I have a program that uses argparse to process command line arguments/options. The following will print the ‘help’ message:
./myprogram -h
or:
./myprogram --help
But, if I run the script without any arguments whatsoever, it doesn’t do anything. What I want it to do is to display the usage message when it is called with no arguments. How is that done?
This answer comes from Steven Bethard on Google groups. I’m reposting it here to make it easier for people without a Google account to access.
You can override the default behavior of the
errormethod:Note that the above solution will print the help message whenever the
errormethod is triggered. For example,
test.py --blahwill print the help messagetoo if
--blahisn’t a valid option.If you want to print the help message only if no arguments are supplied on the
command line, then perhaps this is still the easiest way:
Note that
parser.print_help()prints to stdout by default. As init_js suggests, useparser.print_help(sys.stderr)to print to stderr.