I have 4 different arguments, let's call them A, B, C and D
I would like A to be exclusive from B, C and D but B, C and D should always be called together
In the argparse documentation I found the add_mutually_exclusive_group method but it would make my arguments A, B, C and D all exclusive from one another
How can I require my argument to by either [A] or [B and C and D] ?