From c223d005464f9f11cfecfa0c7ea8aa4c85c19925 Mon Sep 17 00:00:00 2001 From: ravi kant pal <72158712+ravidhanbad@users.noreply.github.com> Date: Wed, 7 Oct 2020 23:48:08 +0530 Subject: [PATCH] Water Notification Reminder App in Python Created a Drink Water Notification Reminder App in Python. --- ...a Drink Water Notification Reminder App in Python | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 Created a Drink Water Notification Reminder App in Python diff --git a/Created a Drink Water Notification Reminder App in Python b/Created a Drink Water Notification Reminder App in Python new file mode 100644 index 0000000..972ba81 --- /dev/null +++ b/Created a Drink Water Notification Reminder App in Python @@ -0,0 +1,12 @@ +import time + +from plyer import notification +if __name__ == '__main__': + while True: + notification.notify( + title = "**Please drink water!!", + message= "Water is an inorganic, transparent, tasteless, odorless, and nearly colorless chemical substance, which is the main constituent of Earth's hydrosphere and the fluids of all known living organisms.", + app_icon ="F:\PythonPreparation\Chrisl21-Minecraft-Bucket-Water.ico", + timeout = 5 + ) + time.sleep(60*60)