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
        )
    


Drink notification output

Comments

Popular posts from this blog

Python chapter 3

Login Page design using Html and CSS only