|
|
|
|
|
by imurray
2533 days ago
|
|
http://docopt.org/ — turns help text in a Python doc string into an argument parser. After a doc string put: import docopt
args = docopt.docopt(__doc__, version='0.0.1')
Edit: krapht points out there is now support for multiple languages: https://github.com/docopt |
|