PyMOTW: optparse
Originally posted
· 1 min read
The optparse
module is a modern alternative for command line option parsing that offers several features not available in getopt
, including type conversion, option callbacks, and automatic help generation. There are many more features for to optparse
than can be covered here, but hopefully this introduction will get you started if you are writing a command line program soon.