Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

pull request is created from that branch #398

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions Python/Alarm_Clock_with_GUI/Alarm_Clock_with_GUI.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,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()
10 changes: 10 additions & 0 deletions Python/Alarm_Clock_with_GUI/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Alarm Clock with GUI

## How to Run?

* Install win10toast and playsound
* Run 'Alarm Clock with GUI.py'

## Output

![Output](images/Output.JPG)
Binary file added Python/Alarm_Clock_with_GUI/images/Output 1.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Python/Alarm_Clock_with_GUI/images/Output 2.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added Python/Alarm_Clock_with_GUI/images/Output.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.