Skip to main content

Command Palette

Search for a command to run...

Create Desktop Notifier using Python

Published
4 min read
Create Desktop Notifier using Python
A

Software Engineer | Technical Blogger | YouTuber | Exploring and Refactoring! | connect with me on Twitter

In this Blog article, we will learn how to send Desktop notifications . We will see the implementation in Python.

Repository for Ultimate Resource in python. Drop a star if you find it useful! Got anything to add? Open a PR on the same!

You can refer to my YouTube video tutorial for better Understanding

What will be covered in this Blog

1. Desktop Notification Introduction
2. What is Plyer?
3. Create a Desktop Notifier

Desktop Notification:

Dictionary defination:

the action of notifying someone or something.

The Purpose:

The purpose behind a notification is to inform about an event and encourage him to take action.

Notifications help people to remember things. It is a small piece of text which appears on the desktop or mobile screen to inform the user about the updates or any other important pieces of information.

What is Plyer?

Plyer is a Python library for accessing features of your hardware / platforms.

If you wish to know more about it, you can refer to Plyer Documentation. Use this link to navigate to the documentation.

Other areas where you can use this approach

  1. Set daily tracker for COVID stats
  2. Daily notification to take medicine.
  3. Hourly notification to drink water.

and many more, it’s completely up to you how to use this application.

Now that you are aware of Desktop Notification and Plyer basics, we can move forward to the coding section.

Time to code!

You can find all the code at my GitHub Repository. Drop a star if you find it useful.

code.png

Installing Plyer

Open your terminal and run the following command

pip install plyer

Now that we have the package, we are ready to import it in our python script.

from plyer import notification

Now let's specify the parameters. Lets define the title and message.

title = 'Hello Amazing people!'

message= 'Thankyou for reading! Take care!'

Let's look at what the parameters mean:

  • title: Title of the notification
  • message: Message of the notification
  • app_name: Name of the app launching this notification
  • app_icon: Icon to be displayed along with the message
  • timeout: time to display the message for, defaults to 10
  • ticker: text to display on the status bar as the notification arrives
  • toast: simple message instead of full notification

Now, let's pass the parameters using notify method.

notification.notify(title= title,
                    message= message,
                    app_icon = None,
                    timeout= 10,
                    toast=False)

I am passing:

  • the title as `'Hello Amazing people!'``
  • `message as 'Thankyou for reading! Take care!'
  • app_icon as None
  • timeout as 10 secs
  • and toast as False.

That's it! We are done. Now let's save and run our python script.

Screenshot_9.png

Here is our desktop Notification. Simple, isn't it? Hope this tutorial has helped.

You can play around with the library, explore more features and even customize it further.

You can find all the code at my GitHub Repository. Drop a star if you find it useful.

Thank you for reading, I would love to connect with you at Twitter.

Do share your valuable feedback and suggestions!

You should definitely check out my other Blogs:

Resources:

  • https://plyer.readthedocs.io/en/latest/
  • https://github.com/kivy/plyer

See you in my next Blog article, Take care

S

Always coming up with good contents

3
A

Thank you!

P

Very informative.. Please write the Article for Mainframe Automation using Python.

4
A

Thank you!

S

Nice article!! I love the way you come with unique and interesting content.😍

2
A

Thank you! Glad you liked it!

J
Jon Quino5y ago

very very good for beginners thank you

2
A

I m glad you liked it

D

Thanks for sharing this !! Always learning something new from you !!!

4
A

I m glad you liked it!

1
S

I feel nostalgic when I read this. I had created a Desktop Notification system in Python two years ago. It used send perfectly normal notifications just like the how the latest windows update notifications come up. It was very interesting and i really loved it. I used it as an alarm clock sending notifications at regular intervals of time!

4

More from this blog

A

Ayushi Rawat - The official blog of Ayushi Rawat

72 posts

Software Engineer | Technical Blogger | YouTuber | Exploring and Refactoring! | Connect with me on Twitter