I have been working with Argparse for a while and here's the StackOverflow Answer to the question that I was having.
This answer is not completely solving my problem.
Here's the edited code borrowed from the answer. (I have added a comment before adding the newline)
import argparse
parent_parser = argparse.ArgumentParser(description="The parent parser")
parent_parser.add_argument("-p", type=int, required=True,
help="set db parameter")
#adding a new parent argument
parent_parser.add_argument("-q", type=int, required=True,
help="help with -q")
subparsers = parent_parser.add_subparsers(title="actions")
parser_create = subparsers.add_parser("create", parents=[parent_parser],
add_help=False,
description="The create parser",
help="create the orbix environment")
parser_create.add_argument("--name", help="name of the environment")
parser_update = subparsers.add_parser("update", parents=[parent_parser],
add_help=False,
description="The update parser",
help="update the orbix environment")
The edited code represents this
- -p & -q as the Parent Arguments
The problem is, I dont want to use that the new Parent Argument '-q' in my subparser.
I just want to use the argument '-p' in any of the subparsers.
It sounds a little different, but as I'm dealing with so many subparsers, I really want the best option for my subparsers.
What should I do for that?
Some points that are apparent in past SO questions about
parent
andsubparsers
.dest
) in the main and subparsersparents
list.parents
is just a convenience tool. Don't use it if it gives you problems (or you don't understand it).argparse
is a python module, defining python classes. Use basic python thinking where useful.