Effortless argument parsing
Project description
defopt allows you to effortlessly call Python functions from the command line.
defopt will:
Allow functions to be called identically from code or the command line
Reward you for documenting your functions
Produce informative command line help messages
Save you from writing and maintaining argument parsing code ever again
defopt will not:
Modify your functions in any way
Allow you to build complex command line tools (try docopt or click)
Usage
Once you have written and documented your main function (currently you must use Sphinx-style docstrings), simply decorate it with @defopt.main, then call defopt.run() to see the magic happen.
import defopt @defopt.main def main(greeting, count=1): """Display a friendly greeting. :param greeting: Greeting to display :type greeting: str :param count: Number of times to display the greeting :type count: int """ for _ in range(count): print(greeting) if __name__ == '__main__': defopt.run()
This function can now be called identically from Python and the command line.
>>> from test import main >>> main('hello!', count=2) hello! hello!
$ python test.py hello! --count 2 hello! hello!
Development
For source code, examples, questions, feature requests and bug reports, visit the GitHub repository.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.