docpie
docpie copied to clipboard
An easy and Pythonic way to create your POSIX command line
Hello, Thank you for making docpie! I'm coming from https://github.com/docopt/docopt/issues/448#issuecomment-473663929 I have that exact use case, in that I'm looking for this output: ``` { '--': False, '--flag': ['flag1', 'flag2'], ...
I changed the links in the README because [docpie.comes.today](url) is a bad gateway.
Would it be possible to make the "usage" and "options" section keywords configurable? Like in ``` docpie(__doc__, usage = 'Aufruf', options = 'Optionen') ``` This would make the help text...
Hey! Thanks for a really good package. We are now using it for one of our internal tools. This is not a bug report, but some proposals for improvements, that...
The thing that gets me about [docopt](http://docopt.org/) is that there is nothing like [argcomplete](https://pypi.python.org/pypi/argcomplete/1.0.0) for [argparse](https://docs.python.org/2.7/library/argparse.html). I know one can use `docopt_wordlist` and `docopt-wordlist.bash` from `docopt.rs` but that is hard...