17 lines
262 B
Markdown
17 lines
262 B
Markdown
# magicli
|
|
|
|
Automatically call functions from args parsed by `docopt`.
|
|
|
|
## Install
|
|
|
|
`pip install git+https://git.beelm.eu/patrick/magicli`
|
|
|
|
## Getting started
|
|
|
|
```python
|
|
from docopt import docopt
|
|
from magicli import magicli
|
|
|
|
args = magically(docopt(__doc__))
|
|
```
|