import time
from plyer import notification
if __name__=="__main__":
notification.notify(
title = "HEADING HERE",
message=" DESCRIPTION HERE" ,
# displaying time
timeout=2
)
# waiting time
time.sleep(7)
toaster = ToastNotifier()
toaster.show_toast("Weather Information",
f"{information}",
duration=10,
threaded=True)
while toaster.notification_active(): time.sleep(0.005)