[ANN] argparse 0.1 - Command-line parsing library

S

Steven Bethard

Announcing argparse 0.1
-----------------------

argparse home:
http://argparse.python-hosting.com/

argparse at PyPI:
http://www.python.org/pypi/argparse/0.1.0

argparse module download:
http://argparse.python-hosting.com/file/trunk/argparse.py?format=raw


About this release
==================

This release fixes a few minor bugs and adds the 'outfile' type.
Extensive updates to the API documentation make this the most
thoroughly documented release yet:
http://argparse.python-hosting.com/wiki/ArgumentParser


New in this release
===================

* The 'outfile' type.
* API documentation.


About argparse
==============

The argparse module is an optparse-inspired command line parser that
improves on optparse by:

* handling both optional and positional arguments
* supporting parsers that dispatch to sub-parsers
* producing more informative usage messages
* supporting actions that consume any number of command-line args
* allowing types and actions to be specified with simple callables
instead of hacking class attributes like STORE_ACTIONS or
CHECK_METHODS

as well as including a number of other more minor improvements on the
optparse API. To whet your appetite, here's a simple program that sums
its command-line arguments and writes them to a file::

parser = argparse.ArgumentParser()
parser.add_argument('integers', type=int, nargs='+')
parser.add_argument('--log', type='outfile', default=sys.stdout)
args = parser.parse_args()
args.log.write('%s\n' % sum(args.integers))
args.log.close()
 
S

Steven Bethard

Steven said:
Announcing argparse 0.1
-----------------------

argparse home:
http://argparse.python-hosting.com/

argparse at PyPI:
http://www.python.org/pypi/argparse/0.1.0

argparse module download:
http://argparse.python-hosting.com/file/trunk/argparse.py?format=raw

The argparse module is now also available through PyPI with source and
Windows binary downloads:

http://cheeseshop.python.org/packages/source/a/argparse/argparse-0.1.0.tar.gz
http://cheeseshop.python.org/packages/any/a/argparse/argparse-0.1.0.win32.exe

Happy parsing!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,020
Latest member
GenesisGai

Latest Threads

Top