I'm working on a project where I need a company name and a related number as inputs for my script.
An example of this would be as follow:
python myscript.py "Company 1" 5
The above works fine for a single company but I'd like to add multiple at the same time (not limited to 3) like this:
python myscript.py "Company 1" 5 "Company 2" 9 "Company 3" 15
I've been searching but I have the feeling argparse
does not support this feature and I'm not sure where to look next.