-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMain.py
More file actions
20 lines (18 loc) · 723 Bytes
/
Main.py
File metadata and controls
20 lines (18 loc) · 723 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#from Reminder import Reminder
#import Alert_App
#class Main:
# aa=Alert_App({})
# option_input=input("What would you like to do? Enter 'set reminder', 'get reminder', or 'drop reminder'")
# if(option_input=='set reminder'):
# time_input=input("Enter a time for your reminder: ")
# text_input=input("Enter the text for your reminder:")
# #need an id for reminder, but need to make sure the ids are unique
# aa.set(time_input,text_input)
# elif(option_input=='get reminder'):
# #enter some random bs here
# aa.get()
# elif (option_input=='drop reminder'):
# #add more shit
# r_input=input("Enter a reminder ID: ")
# aa.drop(r_input)
# else: