我正在尝试使用 python 在 win 10 上发出祝酒通知。但是,每次我尝试时,都会遇到一个错误,其中涉及称为“shell 通知图标”的内容。当我的意思是每次......我尝试了我能找到的每个图书馆!Notifypy、pynotifier、win10toast、plyer 等...每次,涉及 shell 通知图标的相同或大致相同的错误...
这是其中一个错误:
>>> Exception in thread Thread-1:
Traceback (most recent call last):
File "C:\Users\Elève\AppData\Local\Programs\Python\Python37-32\lib\threading.py", line 926, in _bootstrap_inner
self.run()
File "C:\Users\Elève\AppData\Local\Programs\Python\Python37-32\lib\threading.py", line 870, in run
self._target(*self._args, **self._kwargs)
File "C:\Users\Elève\AppData\Local\Programs\Python\Python37-32\lib\site-packages\plyer\platforms\win\libs\balloontip.py", line 206, in balloon_tip
WindowsBalloonTip(**kwargs)
File "C:\Users\Elève\AppData\Local\Programs\Python\Python37-32\lib\site-packages\plyer\platforms\win\libs\balloontip.py", line 139, in __init__
self.notify(title, message, app_name)
File "C:\Users\Elève\AppData\Local\Programs\Python\Python37-32\lib\site-packages\plyer\platforms\win\libs\balloontip.py", line 188, in notify
raise Exception('Shell_NotifyIconW failed.')
Exception: Shell_NotifyIconW failed.
现在看第一行,它说的是 Threads !那是因为我为我的应用程序使用了线程,你认为这就是它搞砸的原因吗?我怎么能看到和清理我所有的线程?
有些人已经在这里问过这个问题:
pywintypes.error: (-2147467259, 'Shell_NotifyIcon', '未指定的错误') win10toast python
但是没有人回答,这是另一个图书馆的创建者回答但没有帮助的问题:
在最后一个链接上,解决方案说:
I discovered the solution to my question.
The toast notifications have been suppressed by Windows 10 Action Center.
At the bottom right corner, click the Action Center icon.
For my PC, the "Quiet Hours" setting was turned on. After I disable "Quiet Hours",
toast notifications can appear.
The python library win10toast works perfectly fine after Action Center settings are correctly set
但是在所有这些错误开始出现之前,我的代码已经工作了一点,我可以展示一些祝酒词,所以这不是重点......顺便说一下,这是我的代码:
from pynotifier import Notification
Notification(title='HEAD', description="BODY", duration=3, urgency=Notification.URGENCY_CRITICAL).send()
正如我所说,它工作得很好......直到我开始接触 icon_path 参数,因为我想添加一个图标。从那时起,错误......“shell通知图标”与我尝试更改的图标有关吗?我什至不知道它到底是什么!
所以,如果你能帮助我获得一个稳定且有效的代码,那就太棒了!提前谢谢。
编辑:好的,现在真正的wtf ...我重新启动了我的计算机,它运行良好,但当天晚些时候,停止工作......再次工作......等等!@.@