Drink water notification
Drink notification
import time
from plyer import notification
if __name__ == "__main__":
notification.notify(
title = "Please Drink Water",
message = "Drinking water is good for your health",
app_icon = "D:\Python chapter\Projects\Drink Notification\water_icon.ico",
timeout = 10
)
Comments
Post a Comment