The package currently has two commands (get_metadata and pdf_analysis) which are invoked as positional arguments to argparse rather than as subcommands. As the two commands take different sets of arguments and perform different functions, it would be helpful to add subparsers.
Contributes to #3 by allowing two separate, specific help commands.
The package currently has two commands (
get_metadata
andpdf_analysis
) which are invoked as positional arguments toargparse
rather than as subcommands. As the two commands take different sets of arguments and perform different functions, it would be helpful to add subparsers.Contributes to #3 by allowing two separate, specific help commands.