I am using google python-fire library for cli automation.
I have a function, say inside code.py :
def foo(input_path='some default value'):
doing something...
def main():
fire.Fire(foo)
Now I can use $ python code.py foo --input-path 'somepath'
But now I want to add shorthand -i too for the same task. How can I achieve this ?