gpt4 book ai didi

python - 如何使用 python 向 mac 通知中心发送通知?

转载 作者:行者123 更新时间:2023-12-04 15:39:57 38 4
gpt4 key购买 nike

我想用 python 代码向我的 mac 的通知中心发送通知。

我在 macOS Mojave 版本 10.14.6 上使用 python3,并将 Atom 作为我的编辑器。我尝试过使用不同的方法,比如 notify2(它不起作用,dbus 有一个我无法解决的问题)和 notify-send(回复 RuntimeError: Unsupported operating system: darwin).所以,现在,我正在尝试使用 OS 模块。到目前为止,这是我的代码:

import os
mstr='Hello'
os.system('notify-send '+mstr)

当我从终端运行它时,它输出 sh: notify-send: command not found。如果我从 Python 的默认编辑器 IDLE 运行它,什么也不会发生。

我该怎么办?还有其他发送通知的方法吗?

最佳答案

对不起!在浏览了网络后,我找到了解决此问题的方法。在这里!

import os
mstr='Hello'
os.system("osascript -e 'display notification \"hello world!\"\'")```

关于python - 如何使用 python 向 mac 通知中心发送通知?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58161208/

38 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com