Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Currently when I enter invalid options or omit positional arguments, argparse kicks me back to the prompt and displays the usage for my app. This is ok, but I would rather automatically display the full help listing (that explains the options, etc) than require the user to type

./myscript.py -h

Thanks!

Jamie

share|improve this question
see also this SO question for more info: [stackoverflow.com/questions/4042452][1] [1]: stackoverflow.com/questions/4042452 – jpoppe Feb 21 '12 at 9:19

2 Answers

up vote 3 down vote accepted

This thread over at Google groups might help.

http://groups.google.com/group/argparse-users/browse_thread/thread/2dacd5fed110bd0c?pli=1

share|improve this answer
That worked perfectly!! Thanks :) – jpswain.w Sep 3 '10 at 17:20

To print help you might want to use: print_help function on ArgumentParser instance

parser = argparse.ArgumentParser()
(...)
parser.print_help()

To print help message on error you need to create own subclass of ArgumentParser instance, that overrides error() method. For example like that:

class MyParser(argparse.ArgumentParser): 
   def error(self, message):
      sys.stderr.write('error: %s\n' % message)
      self.print_help()
      sys.exit(2)

When this parser encounters unparseable argument line it will print help.

share|improve this answer

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.