-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Design scalable AIP arguments structure to support adding new features #73
Comments
blocks #68 |
I think we can use subparsers for extra functionality. By default, it would run as it normally does from We could have a command
|
Another command can be |
I think argparse should work for now, but in the future we may want to migrate to click or typer if it brings more flexibility. |
The idea is then:
|
It's very frustrating that for argparse the global arguments need to be called first, e.g.:
|
We will continue adding new functionality and options to AIP (metrics, generate blocklists for range, comparisons, etc).
Would be great to have some sort of structure for argparse so we don't just keep adding arguments without thinking through the whole structure.
The text was updated successfully, but these errors were encountered: