I'm trying to develop a command line interface for a tool I'm writing. I'm tossing up between an interface similar to Fabric's fab tool and one like svn's command line tool.
fab's usage message:
Usage: fab [options] <command>[:arg1,arg2=val2,host=foo,hosts='h1;h2',...] ...
svn's usage message:
usage: svn <subcommand> [options] [args]
Note that svn also supports two options --version and --quiet (at least the one I'm using).
My questions are:
- Is fab's cli (with multiple commands, each of which can have arguments) design common among command-line tools? To me, the svn tool's cli seems more commonly used (not sure though).
- Would it be straightforward implementing fab's cli using plac(or argparse)?
- If I do decide to go with svn's cli, can be this be implemented using plac? I like plac, though I haven't been able to figure out how to add options to the tool directly, instead of the subcommands. It can definitely be implemented using argparse.
P.S.: The only reason fab's cli appeals to me is that one can accomplish multiple tasks in one step, however ease of implementation is my main concern