-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPYTHON AND TKINTER.py
416 lines (290 loc) · 12.1 KB
/
PYTHON AND TKINTER.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
import os,ast
from tkinter import *
from datetime import datetime
class Window(Frame):
def __init__(self, master=None):
Frame.__init__(self, master)
self.master = master
self.init_window()
#Creation of init_window
def init_window(self):
# changing the title of our master widget
self.master.title("BIRTHDAY REMINDER APP")
# allowing the widget to take the full space of the root window
self.pack(fill=BOTH, expand=1)
label = Label(
text="BIRTHDAY REMINDER APP",
foreground="blue",
background="white")
label.place(x=110, y=30)
label = Label(
text="CREATE AND MANAGE YOUR BIRTHDAYS, KEEP THE DATES",
foreground="blue",
background="white")
label.place(x=10, y=80)
# creating a button instance
quitButton = Button(self, text="Exit",command=self.client_exit)
# placing the button on my window
quitButton.place(x=250, y=300)
AddButton = Button(self, text="Add a new birthday",command = self.addbirth)
AddButton.place(x=30,y=170)
EditButton = Button(self, text="Update Birthday",command = self.edit_birth)
EditButton.place(x=250,y=170)
viewButton=Button(self, text='View all Birthdays',command=self.viewbirth)
viewButton.place(x=250, y=230)
SearchButton = Button(self, text="Birthdays today", command=self.today_view)
SearchButton.place(x=30, y=230)
deleteButton = Button(self, text = "Delete Birthday", command = self.delete_birth)
deleteButton.place(x=30, y=300)
def client_exit(self):
exit()
# def addbirth(self):
# if os.path.isfile('./birth_dict.txt'):
# with open('birth_dict.txt','r+') as f:
# s=f.read()
# birth_dict=ast.literal_eval(s)
# else:
# birth_dict={}
# name= input('Enter a name or press enter to exit: ')
# while name != '':
# if name not in birth_dict:
# val=input('Enter the birthday in this format,dd/mm/yyyy: ')
# birth_dict[name]=val
# print('Birthday successfully added')
# f= open("birth_dict.txt", "w+")
# f.write(str(birth_dict))
# f.close()
# elif name in birth_dict:
# print('Sorry name already exists,please use a different name','\n')
# opinion = input('Do you want to add another record?, yes/no: ')
# if opinion.lower() == 'yes':
# name=input('Enter a name or press enter to exit: ')
# else:
# break
# return 'Thank you for using this service'
# def edit_birth(self):
# with open('birth_dict.txt','r+') as f:
# s=f.read()
# birth_dict=ast.literal_eval(s)
# user=input('Do you wish to update a record? yes/no: ')
# while user.lower() == 'yes':
# user2=input("Enter 'date' to change a birthdate or 'name' to change a name: ")
# if user2.lower()== 'date':
# request=input("Enter the name: ")
# while True:
# response=input("Enter a new date in this format, dd/mm/yyyy: ")
# if response.isalpha() or response.isdecimal():
# print('Enter a correct birthday')
# else:
# birth_dict[request]=response
# print('The database has been updated')
# break
# elif user2.lower() == 'name':
# username= input("Enter the name: ")
# if username in birth_dict:
# print("Is this the record you want to update?, ",username,' ',birth_dict[username])
# opinion = input('Enter yes/no: ')
# if opinion.lower() == 'yes':
# del birth_dict[username]
# new_name=input('Enter the new name: ')
# while True:
# new_date=input('Enter the new birthdate in this format, dd/mm/yyyy: ')
# if new_date.isalpha() or new_date.isdecimal():
# print('You have entered a wrong birthday')
# else:
# birth_dict[new_name]=new_date
# print("Database Updated")
# break
# else:
# print('Please check the name and try again')
# elif username not in birth_dict:
# print('The record you are seeking to update does not exist, Please check again')
# else:
# print("You have entered a wrong input")
# user=input('Do you want to make any other update? yes/no: ')
# f = open("birth_dict.txt","w+")
# f.write(str(birth_dict))
# f.close()
# print()
# return('Thank you for using this service')
# def viewbirth(self):
# with open('birth_dict.txt','r+') as f:
# s=f.read()
# birth_dict = ast.literal_eval(s)
# print(" BIRTHDAY RECORD")
# print("{:<12}{:<12}".format("Name","Birthday"))
# for key,value in birth_dict.items():
# name=key
# Birthday=value
# print("{:<12}{:<12}".format(name,Birthday))
# def today_view(self):
# with open('birth_dict.txt','r+')as f:
# s=f.read()
# birth_dict=ast.literal_eval(s)
# todai=datetime.today()
# date_today=datetime.strftime(todai,'%d/%m/%Y')
# if date_today in birth_dict.values():
# formatt="{:<19}{:<10}"
# print('BIRTHDAYS TODAY,',date_today)
# print(formatt.format('NAME','BIRTHDAY'))
# for key,value in birth_dict.items():
# if date_today == value:
# name,Birthday=key,value
# print(formatt.format(name,Birthday))
# else:
# print('You have no birthdays for today',date_today)
# def delete_birth(self):
# with open('birth_dict.txt','r+') as f:
# s=f.read()
# birth_dict = ast.literal_eval(s)
# person_name=input('Enter the name for the birthday you want to delete: ')
# while person_name != "":
# if person_name in birth_dict:
# print('Is this the record you want to delete?, ',person_name,birth_dict[person_name])
# answer=input('Enter y/n: ')
# if answer.lower() == 'y':
# del birth_dict[person_name]
# print('Birthday successfully deleted')
# f=open('birth_dict.txt','w+')
# f.write(str(birth_dict))
# f.close()
# elif answer.lower() == 'n':
# print('Check the name again')
# else:
# print('You have entered a wrong input')
# elif person_name not in birth_dict:
# print('Sorry the name does not exist')
# choice=input('Do you wish to delete another birthday? Enter y to continue: ')
# if choice.lower() == 'y':
# person_name =input('Enter the name for the birthday to be deleted: ')
# else:
# break
def addbirth(self):
if os.path.isfile('./birth_dict.txt'):
with open('birth_dict.txt','r+') as f:
s=f.read()
birth_dict=ast.literal_eval(s)
else:
birth_dict={}
name= input('Enter a name or press enter to exit: ')
while name != '':
if name not in birth_dict:
val=input('Enter the birthday in this format,dd/mm/yyyy: ')
birth_dict[name]=val
print('Birthday successfully added')
f= open("birth_dict.txt", "w+")
f.write(str(birth_dict))
f.close()
elif name in birth_dict:
print('Sorry name already exists,please use a different name','\n')
opinion = input('Do you want to add another record?, yes/no: ')
if opinion.lower() == 'yes':
name=input('Enter a name or press enter to exit: ')
else:
break
return 'Thank you for using this service'
def edit_birth(self):
with open('birth_dict.txt','r+') as f:
s=f.read()
birth_dict=ast.literal_eval(s)
user=input('Do you wish to update a record? yes/no: ')
while user.lower() == 'yes':
user2=input("Enter 'date' to change a birthdate or 'name' to change a name: ")
if user2.lower()== 'date':
request=input("Enter the name: ")
while True:
response=input("Enter a new date in this format, dd/mm/yyyy: ")
if response.isalpha() or response.isdecimal():
print('Enter a correct birthday')
else:
birth_dict[request]=response
print('The database has been updated')
break
elif user2.lower() == 'name':
username= input("Enter the name: ")
if username in birth_dict:
print("Is this the record you want to update?, ",username,' ',birth_dict[username])
opinion = input('Enter yes/no: ')
if opinion.lower() == 'yes':
del birth_dict[username]
new_name=input('Enter the new name: ')
while True:
new_date=input('Enter the new birthdate in this format, dd/mm/yyyy: ')
if new_date.isalpha() or new_date.isdecimal():
print('You have entered a wrong birthday')
else:
birth_dict[new_name]=new_date
print("Database Updated")
break
else:
print('Please check the name and try again')
elif username not in birth_dict:
print('The record you are seeking to update does not exist, Please check again')
else:
print("You have entered a wrong input")
user=input('Do you want to make any other update? yes/no: ')
f = open("birth_dict.txt","w+")
f.write(str(birth_dict))
f.close()
print()
return('Thank you for using this service')
def viewbirth(self):
with open('birth_dict.txt','r+') as f:
s=f.read()
birth_dict = ast.literal_eval(s)
print(" BIRTHDAY RECORD")
print("{:<12}{:<12}".format("Name","Birthday"))
for key,value in birth_dict.items():
name=key
Birthday=value
print("{:<12}{:<12}".format(name,Birthday))
def today_view(self):
with open('birth_dict.txt','r+')as f:
s=f.read()
birth_dict=ast.literal_eval(s)
todai=datetime.today()
date_today=datetime.strftime(todai,'%d/%m/%Y')
if date_today in birth_dict.values():
formatt="{:<19}{:<10}"
print('BIRTHDAYS TODAY,',date_today)
print(formatt.format('NAME','BIRTHDAY'))
for key,value in birth_dict.items():
if date_today == value:
name,Birthday=key,value
print(formatt.format(name,Birthday))
else:
print('You have no birthdays for today',date_today)
def delete_birth(self):
with open('birth_dict.txt','r+') as f:
s=f.read()
birth_dict = ast.literal_eval(s)
person_name=input('Enter the name for the birthday you want to delete: ')
while person_name != "":
if person_name in birth_dict:
print('Is this the record you want to delete?, ',person_name,birth_dict[person_name])
answer=input('Enter y/n: ')
if answer.lower() == 'y':
del birth_dict[person_name]
print('Birthday successfully deleted')
f=open('birth_dict.txt','w+')
f.write(str(birth_dict))
f.close()
elif answer.lower() == 'n':
print('Check the name again')
else:
print('You have entered a wrong input')
elif person_name not in birth_dict:
print('Sorry the name does not exist')
choice=input('Do you wish to delete another birthday? Enter y to continue: ')
if choice.lower() == 'y':
person_name =input('Enter the name for the birthday to be deleted: ')
else:
break
# root window created. Here, that would be the only window, but
# you can later have windows within windows.
root = Tk()
root.geometry("500x400")
#creation of an instance
app = Window(root)
#mainloop
root.mainloop()