Python notification

Is it possible to add notification in windows using python? Like a window with information about an update or something

In windows, if you have not already pointed to this image.

notification

+6
source share
2 answers

You can use Jason Chen balloontip.py for this. These are almost 50 lines of code, so I won’t insert it here.

It seems to work on Windows 10 as well.

Thanks to zack for finding this gem.

+8
source

There is also Windows-10-Toast-Notifications on Github.

It works on Windows 10 (with pywin32) and allows multiple notifications.

enter image description here

+3
source

Source: https://habr.com/ru/post/926173/


All Articles