I would like to create a simple toast notification using python v3.6 on Windows10 machine.
I am using this python library.
https://github.com/jithurjacob/Windows-10-Toast-Notifications/
I ran the code below;
from win10toast import ToastNotifier
toaster = ToastNotifier()
toaster.show_toast("Hello World!!!",
"Python is awsm by default!")
All I get is an icon appearing at the bottom right. I don't see any message popping out. What are some possible things that can go wrong?
Are there some configuration settings in Windows 10 that disabled the python toast notification?
The screenshot below shows the tiny python icon at the bottom row that appears when I run the python code. I don't see any message such as Hello World!!!","Python is awsm by default!
appearing. When my mouse pointer hover over the python icon, I see the word tooltip
appearing.
Here is my notification settings on Windows 10.