-
Notifications
You must be signed in to change notification settings - Fork 60
/
Copy pathAlarm Clock with GUI.py
40 lines (33 loc) · 1.2 KB
/
Alarm Clock with GUI.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
from playsound import playsound
from tkinter import *
from win10toast import ToastNotifier
import datetime
import time
def alarm(set_alarm):
toast = ToastNotifier()
while True:
time.sleep(1)
date = datetime.datetime.now()
now = date.strftime("%H:%M:%S")
print(now)
if now == set_alarm:
print("Alarm Clock")
toast.show_toast("Alarm Clock",duration=1)
playsound("alarm.mp3")
def getvalue():
set_alarm = f"{hour.get()}:{min.get()}:{sec.get()}"
alarm(set_alarm)
root = Tk()
root.geometry("170x110")
info = Label(root,text = "(24)Hour Min Sec").place(x = 50)
set_time = Label(root,text = "Set Time",relief = "solid",font=("Cambria",10,"bold")).place(x=0,y=30)
# Entry Variables
hour = StringVar()
min = StringVar()
sec = StringVar()
# Entry Widget
hour_E = Entry(root,textvariable = hour,bg = "grey",width = 4).place(x=60,y=30)
min_E = Entry(root,textvariable = min,bg = "grey",width = 4).place(x=90,y=30)
sec_E = Entry(root,textvariable = sec,bg = "grey",width = 4).place(x=120,y=30)
submit = Button(root,text = "Set Alarm",width = 10,command = getvalue).place(x =50,y=70)
root.mainloop()