Warm tip: This article is reproduced from serverfault.com, please click

其他-为什么这个简单的python Toast通知不起作用?

(其他 - Why is this simple python toast notification not working?)

发布于 2017-08-18 11:23:40

我想在Windows10计算机上使用python v3.6创建一个简单的吐司通知。

我正在使用这个python库。

https://github.com/jithurjacob/Windows-10-Toast-Notifications/

我运行下面的代码;

 from win10toast import ToastNotifier
    toaster = ToastNotifier()
    toaster.show_toast("Hello World!!!",
                 "Python is awsm by default!")

我所得到的只是一个图标出现在右下角。我没有看到任何消息弹出。有哪些可能会出错的事情?

Windows 10中是否有一些禁用python Toast通知的配置设置?

下面的屏幕快照在我运行python代码时在底部显示的是微小的python图标。我没有看到任何消息,例如Hello World!!!","Python is awsm by default!出现。当我的鼠标指针悬停在python图标上时,我看到了tooltip出现的单词

在此处输入图片说明

这是我在Windows 10上的通知设置。

在此处输入图片说明

Questioner
user781486
Viewed
0
user781486 2017-08-22 14:59:54

我找到了解决我问题的方法。Windows 10操作中心已取消了Toast通知。在右下角,单击“操作中心”图标。对于我的电脑,“安静时间”设置已打开。禁用“安静时间”后,可能会出现吐司通知。

win10toast正确设置Action Center设置后,python库工作正常。