Creating a Desktop Notification Reminder App in Python.

In this blog post, I have shared the Python code of "Creating a Desktop Notification/Reminder App in Python". Scroll down to access the code & the tutorial video.
Subscribe my YouTube Channel for more tutorials- www.youtube.com/StudentsCircle
Access the Python code below-
import time
from plyer import notification
if __name__ == "__main__":
while True:
notification.notify(
title = "Please take a short break",
message = "Its good to take short breaks after 25 minutes of work (as per the Pomodoro Technique)",
app_icon = "Aha-Soft-Large-User-Coffee-break-disabled.ico",
timeout=10
)
time.sleep(3)
11 views0 comments