python Python中的桌面通知

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python Python中的桌面通知相关的知识,希望对你有一定的参考价值。

import pynotify

def desktop_notify(title, message):
    pynotify.init("Test")
    notice = pynotify.Notification(title, message)
    notice.show()

#Works like a charm on both windows and linux 

以上是关于python Python中的桌面通知的主要内容,如果未能解决你的问题,请参考以下文章

python Python中的桌面通知

python Python中的桌面通知

使用Python获取桌面通知

有没有办法用 Python 读取 Linux 桌面通知?

如何在我的桌面(Windows 7)上使用我的python程序在没有notify2,notify-send,pqt5的桌面上显示简单的通知?

如何让 QWebView 显示桌面通知?