diff options
Diffstat (limited to 'third_party/python/Click/examples/complex/README')
-rw-r--r-- | third_party/python/Click/examples/complex/README | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/third_party/python/Click/examples/complex/README b/third_party/python/Click/examples/complex/README new file mode 100644 index 0000000000..7eaac90372 --- /dev/null +++ b/third_party/python/Click/examples/complex/README @@ -0,0 +1,16 @@ +$ complex_ + + complex is an example of building very complex cli + applications that load subcommands dynamically from + a plugin folder and other things. + + All the commands are implemented as plugins in the + `complex.commands` package. If a python module is + placed named "cmd_foo" it will show up as "foo" + command and the `cli` object within it will be + loaded as nested Click command. + +Usage: + + $ pip install --editable . + $ complex --help |