diff --git a/AUTOMATION/WINDOWS NOTIFICATION ALERT SCRIPTS/windows_notification_alert.py b/AUTOMATION/WINDOWS NOTIFICATION ALERT SCRIPTS/windows_notification_alert.py new file mode 100644 index 00000000..10948f4c --- /dev/null +++ b/AUTOMATION/WINDOWS NOTIFICATION ALERT SCRIPTS/windows_notification_alert.py @@ -0,0 +1,13 @@ +from plyer import notification +import time + +if __name__ == "__main__": + + try: + message = "NOTIFICATION" + title = "SET UP YOU TIME" + while True: + notification.notify(title=title, message=message, timeout=10) + time.sleep(3600) + except KeyboardInterrupt: + print("Keyboard Interrupt the Program")