Помогите дописать код!
Мне осталось сделать так чтобы чтобы когда время доходит до времени азана проигрывался азан(можно любую другую мелодию)

Вот код
from tkinter import*
import tkinter
import pyglet
import sys
import datetime
import time
from playsound import*
from datetime import date
from datetime import datetime


current_date = date.today()
ttime = time.strftime('%H:%M:%S')
def timing():
current_time = time.strftime(“%H : %M : %S”)
clock.config(text=current_time)
clock.after(200,timing)



root=Tk()
root.geometry(“400x600”)
root.configure(bg=“black”)
root.title(“Sajdon”)


clock=Label(root,font=“times 24 bold”, fg=“red”, bg = “black”)
clock.place(x=125, y = 250)
timing()

day=Label(root,text= current_date ,font=“times 24 bold”, fg=“white”, bg=“black”)
day.place(x=5, y = 25)
day=Label(root,text=“Буйнакск”,font=“times 18 bold”, fg=“white”, bg=“black”)
day.place(x=5, y = 0)

logo=Label(root,text=“Sajdon”,font=“times 24 bold”, fg=“red”, bg=“black”)
logo.place(x=290, y = 3)



#
fajr=Label(root,text=“Фаджр - 2:37”,font=“times 24 bold”, fg=“white”, bg=“black”)
fajr.place(x=105, y = 300)

voshod=Label(root,text=“Восход - 4:29”,font=“times 24 bold”, fg=“white”, bg=“black”)
voshod.place(x=105, y = 340)

zuhr=Label(root,text=“Зухр - 11:52”,font=“times 24 bold”, fg=“white”, bg=“black”)
zuhr.place(x=105, y = 380)

asr=Label(root,text=“Аср - 15:49”,font=“times 24 bold”, fg=“white”, bg=“black”)
asr.place(x=105, y = 420)

magrib=Label(root,text=“Магриб - 19:09”,font=“times 24 bold”, fg=“white”, bg=“black”)
magrib.place(x=105, y = 460)

isha=Label(root,text=“Иша - 20:40”,font=“times 24 bold”, fg=“white”, bg=“black”)
isha.place(x=105, y = 500)
#


root.mainloop()