-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_screen.py
38 lines (32 loc) · 1.06 KB
/
main_screen.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
import inquirer, sys
from setup.installation import install_todo
from classifications.add import add_goal_class
from classifications.view import view_goal_class
from goals.add import add_goal
from goals.view import view_goals
from goals.comp import complete_goal
def main_options():
main_menu = [
inquirer.List('Main Menu',
message="Main Menu",
choices=["Complete Goal", "View Goals","Add Goal","View Goal Classifications","Add Goal Classification","Reset", "Exit"],
),
]
selected_menu = inquirer.prompt(main_menu)["Main Menu"]
return selected_menu
def main():
selected = main_options()
if selected == "Reset":
install_todo()
elif selected == "Exit":
sys.exit("Goodbye!")
elif selected == "Add Goal Classification":
add_goal_class()
elif selected == "View Goal Classifications":
view_goal_class()
elif selected == "Add Goal":
add_goal()
elif selected == "View Goals":
view_goals()
elif selected == "Complete Goal":
complete_goal()