ec57fda1ee
The argparse module provides an easy, declarative interface for creating command line tools, which knows how to: * parse the arguments and flags from sys.argv * convert arg strings into objects for your program * format and print informative help messages * and much more...
7 lines
292 B
Text
7 lines
292 B
Text
The argparse module provides an easy, declarative interface for
|
|
creating command line tools, which knows how to:
|
|
|
|
* parse the arguments and flags from sys.argv
|
|
* convert arg strings into objects for your program
|
|
* format and print informative help messages
|
|
* and much more...
|