-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
24 lines (21 loc) 路 681 Bytes
/
Copy pathmain.py
File metadata and controls
24 lines (21 loc) 路 681 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from cli import InteractiveCLI
NASA_SPACE_FLIGHT_CATEGORY_DICTIONARY = {
'spacex':'',
'artemis':'',
'commercial':'',
'ISS':'',
'International':{
'All':'international',
'Chinese':'chinese',
'European':'europe',
'Indian':'indian',
'Russian':'russian'
},
'Other':{
'All':'other',
'Science':'science',
'Shuttle':'shuttle',
'Uncrewed':'unmanned'}
}
if __name__ == '__main__':
InteractiveCLI(NASA_SPACE_FLIGHT_CATEGORY_DICTIONARY).run()