I'm trying to build a simple command line application using Python. At the moment, I call my application in Windows PowerShell, for instance, as:
python myprog.py --input_file "test_file.json" --init_size 10
My objective is to let anyone call the application as:
myprog --input_file test_file.json --init_size 10
What should my approach be?