ArgUI supports wrapping any implementation of the Python 3 argparse native library. This will all you to use both standard terminal and interface modes to interact with your program. Your program can ...
argparse requires to create subparsers first and then add the subcommands to the subparsers. argx allows to add subcommands directly to the main parser. If you have a lot of arguments, the help ...