Through the python package click I have legacy code that looks as followed on the command line:
toolName toolCommand arugment
I have updated the legacy code for the command to accept three arguments now:
toolName toolCommand arugment1 argument2 argument3
While the new code meets new standards, the legacy code is still valuable and could be used/needed. Would anyone know if it's possible through the click package manager to allow users to decide which arguments (legacy or new standards) to use for their needs?