Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions Created a Drink Water Notification Reminder App in Python
Original file line number Diff line number Diff line change
@@ -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)