我想通过python向Windows发送有关一些重要消息的通知。我已经尝试过win10Toast
,但是程序完成后,通知消失了。
我的代码是:
## program to generate a simple toast notifier
from win10toast import ToastNotifier
## instantiating the class
n = ToastNotifier()
n.show_toast("Test Message","Notification body",duration=15)`
只要我的程序在运行,它就可以正常运行,但是在程序完成后,它会消失。我想在系统任务栏中显示此消息,直到用户放弃此消息为止。
第二,请您告诉我如何查看通知历史记录?
我正在使用Python 3.7和Windows 10
答案 0 :(得分:0)
将“ duration = None”更改为“ duration = 15”