You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently have a limitation related to argparser's subparsers, which I'm still not sure how to properly fix.
If you specify a config file in the command, then the command argument MUST come after the config file argument. Example:
static-deployer -c config.toml deploy --version VERSION
We currently can't use the -c <file> argument after the command (subparser), example:
static-deployer deploy -c config.toml --version VERSION
With that in mind, Click looks like a powerful and elegant alternative to argparse.
The text was updated successfully, but these errors were encountered:
jweyrich
changed the title
Evaluate whether Click is a better option than argparse
Evaluate whether Click satisfies our requirements better than argparse
Mar 10, 2022
We currently have a limitation related to argparser's subparsers, which I'm still not sure how to properly fix.
If you specify a config file in the command, then the
command
argument MUST come after the config file argument. Example:We currently can't use the
-c <file>
argument after the command (subparser), example:With that in mind, Click looks like a powerful and elegant alternative to argparse.
The text was updated successfully, but these errors were encountered: