Desktop Notification in Python Using Plyer














































Desktop Notification in Python Using Plyer



Build a Desktop Notification

This is a very friendly beginners level Python project.
For this project we will be using the Plyer library of the Python Programming Language.

Plyer is a platform-independent api to use features commonly found on various platforms, notably mobile ones, in Python.

To read more about this module you can visit this link:


PREQUISITES

install plyer by typing the following commands in the terminal:
pip install plyer

CODE:


from plyer import notification notification.notify( title = "e-mail notification", message = "you have 3 unread messages", timeout = 10, )


OUTPUT:





Comments