Im trying to write a python program that I will run at the command line. I'd like the program to take a single input variable. Specifically, I would use a date in the form of 2014-01-28 (yyyy-mm-dd):
e.g. python my_script.py 2014-01-28
It seems argparse might be able to help me but I have found very little documentation regarding the module. Does anyone have experience with something like this?