I'm writing a script in python and I need to do something like this:
python myscript.py command1 --commandarg1 --commandarg2
python myscript.py --scriptargument1 --scriptargument2 command2 --commandarg1 --commandarg2 --commandarg3
Is this possible using argparse
?