Hi is anyone able to help. I am learning to use argparse and i want to use the command to call the school.py as school start for example. I have this so far but struggling to handle the arguments. Am i doing this right or what am i doing totally wrong?
JavaScript
x
28
28
1
if __name__ == '__main__':
2
3
4
parser = argparse.ArgumentParser(description="This allows quick opening of applications used within the school day")
5
6
parser.add_argument("start", help="This will open all the standard applications used within the school day.")
7
parser.add_argument("engine", help="This will show the Engineering folder within Documents")
8
parser.add_argument("bus", help="This will show the Business folder within Documents")
9
parser.add_argument("cs", help="This will show the Computer Science folder within Documents")
10
parser.add_argument("python", help="This will open the PyCharm application")
11
12
args = parser.parse_args()
13
14
try:
15
if len(sys.argv) > 1:
16
if sys.argv[1] == "engine":
17
engineering()
18
elif sys.argv[1] == "cs":
19
computer_science()
20
elif sys.argv[1] == "python":
21
python()
22
elif sys.argv[1] == "bus":
23
business()
24
elif sys.argv[1] == "start":
25
std_day()
26
except:
27
print("An error has occurred")
28
My error is
JavaScript
1
2
1
usage: autoSchoolDay.py [-h] start engine bus cs python
2
autoSchoolDay.py: error: the following arguments are required: engine, bus, cs, python
Advertisement
Answer
JavaScript
1
21
21
1
parser = argparse.ArgumentParser(description="This allows quick opening of applications used within the school day")
2
3
parser.add_argument('command', choices=['start', 'engine', 'bus', 'cs', 'python'])
4
5
args = parser.parse_args()
6
7
try:
8
if args.command:
9
if args.command == "engine":
10
engineering()
11
elif args.command == "cs":
12
computer_science()
13
elif args.command == "python":
14
python()
15
elif args.command == "bus":
16
business()
17
elif args.command == "start":
18
std_day()
19
except Exception as e:
20
print("An error has occurred", e)
21