This is the code so far:
parser = argparse.ArgumentParser()
args = parser.parse_args()
if args == 'a':
_funct1()
elif args == 'b':
_funct2()
I want the user to be able to call this script in such a way that
#python script_name -a
executes function 1
#python script_name -b
executes function 2
import argparse