Verbosity Check Style

Fernando Perez fperez528 at yahoo.com
Thu Aug 12 17:02:46 EDT 2004


> On Thu, 12 Aug 2004 11:23:49 -0400,
> <brianc at temple.edu> wrote:
> 
>> I would like to get people's views on the best way to implement
>> verbosity (or any command-line option) into python scripts.

Command-line options are handled by the optparse module, part of python's
standard library as of python 2.3.  Python 2.2 had the older, somewhat less
flexible getopt module (which is still there in 2.3, of course).

Best,

f



More information about the Python-list mailing list