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

Posted

技术标签:

【中文标题】有没有办法用 Python 读取 Linux 桌面通知?【英文标题】:Is there any way to read Linux Desktop Notification with Python? 【发布时间】:2019-12-29 04:41:33 【问题描述】:

我需要使用 Python 阅读 Linux 桌面通知。我的脑子里没有了想法,我想不出一种方法来做到这一点。

这是我使用 dbus 能做的最好的事情:

import gi.repository.GLib
import dbus
from dbus.mainloop.glib import DBusGMainLoop

def notifications(bus, message):
    print(str(message))
DBusGMainLoop(set_as_default=True)

bus = dbus.SessionBus()
bus.add_match_string_non_blocking("eavesdrop=true, interface='org.freedesktop.Notifications', member='Notify'")
bus.add_message_filter(notifications)

mainloop = gi.repository.GLib.MainLoop()
mainloop.run()

似乎这段代码只是从 GLib 中返回对象

【问题讨论】:

【参考方案1】:

notification 中的 message 是不同的 dbus.**.*Message 实例,所以这就是打印出来的内容。

试试for arg in message.get_args_list(): print(arg),你可能会找到你想要的。

【讨论】:

以上是关于有没有办法用 Python 读取 Linux 桌面通知?的主要内容,如果未能解决你的问题,请参考以下文章

有没有办法用Python发送命令到终端应用程序

完全用Deepin Linux娱乐工作学习

完全用Deepin Linux娱乐工作学习

有没有办法使用 ReadFromText 转换(Python)在 Apache Beam 中读取多行 csv 文件?

有没有办法使用 Python Pandas 读取所有行直到遇到空行

如何在python中动态地读取用空格分隔的输入,最好是在List上读取不同类型的数据?