blob: 2225acb8cac69cd3ff2e9ceabed507ed455110fa (
plain)
1
2
3
4
5
6
7
|
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...
|