在Windows 10上使用Python显示通知

时间:2018-10-25 16:13:46

标签: python windows notifications

我正在使用win10toaster库。我正在使用此示例代码,第一次工作,但现在不显示任何通知。控制台上没有错误。

from win10toast import ToastNotifier

if __name__ == "__main__":
    # Example
    toaster = ToastNotifier()
    toaster.show_toast(
        "Hello World!!!",
        "Python is 10 seconds awsm!",
        duration=10)
    toaster.show_toast(
        "Example two",
        "Once you start coding in Python you'll hate other languages")

这是我在CMD上运行的内容

>>> from win10toast import ToastNotifier
>>> toaster = ToastNotifier()
>>> toaster.show_toast("Test title", "Test message", duration=10)
True

没有通知出现,工具栏上只有一个图标

编辑

我已经在其他装有Windows Server 2012的计算机上测试了该代码,并显示了通知。

1 个答案:

答案 0 :(得分:0)

我想我找到了解决方案。也许您的通知在Windows上是不允许的。转到“系统->通知和操作”,然后检查是否打开了显示通知。还请在下面检查是否有一些被阻止。