I am working on s code that i want to add command line arguments to. I have read the docs.python page on this subject 3 or 4 times and it still has me conffused. I want to be able to set my base directory, change a send and recive email adress if needed , change the list that a file gets posted to, and change the password to the email adresses login. I have a base that im startign from but dont know if its even right if someone could help me figure up how to do all of these it would be of emmence help. Thanks
import argparse
parser = argparse.ArgumentParser(description='Convert SOR to FACTS update and OSG update.')
parser.add_argument('-b', help='The base path', requiered=False, dest='basePath', metavar='Base directory path',default='/home/hatterx/Desktop'
args = paser.pasrse_args()