argparse.py - Another Command Line Options Parser

See also: further documentation.

Usage example:

   o = Opts('%prog [options] [<string name>] <string path>')
   o.addopt('-c --chmod <int>   chmod a file on the server')
   o.addopt('-u --update        update a file, on the server or locally')
   o.addopt('-g --get           download a file from the server')
   o.addopt('-d --delete        delete a file from the server')
   options = o.parse(argv)

Feedback

You can send feedback (or ask questions, report bugs etc.) by using the following form:

Your email address:

You may also email me.

Sean B. Palmer