I have 3 different functions that I want to call based upon the argument from the command line. I can't think of a simple way to make '-c' call function 1, '-o' call function 2, and '-p' call function 3.
Should I store the value using action? I only want one function to be called, which is why I believe the action argument to add_argument() will not work.