gpt4 book ai didi

python - launchd:Python Notifier.notify 未产生预期输出

转载 作者:行者123 更新时间:2023-12-01 03:58:35 28 4
gpt4 key购买 nike

编辑:我将其范围缩小到 python 代码中 Notifier.notify('Something') 的问题。当 python 脚本从 launchd 启动时,这不会产生预期的行为。我的其他 python 脚本工作正常。/编辑

OSX 10.11.4:当目录中的某些内容发生更改(例如,有人添加文件)时,我尝试使用 launchd 运行 python 3.5 脚本。我使用以下 plist 文件(放置在 ~/Library/LaunchAgents 中并使用 launchctl 加载),它似乎可以按 shell 脚本的预期工作

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.test.notifyme</string>
<key>ProgramArguments</key>
<array>
<string>/path/to/notifyme.sh</string>
</array>
<key>WatchPaths</key>
<array>
<string>/path/to/NotifyMeDir</string>
</array>
</dict>
</plist>

这是 shell 脚本:

#!/bin/bash
# notifyme.sh
osascript -e "tell application \"System Events\" to display notification \"Something\""

但是,当我将 plist 文件更改为:

    <key>ProgramArguments</key>
<array>
<string>/path/to/notifyme.py</string>
</array>

它调用以下python程序

#!/path/to/python3.5
# notifyme.py
from pync import Notifier

Notifier.notify('Something')

当我更改 NotifyMeDir 目录中的文件时,我不再获得预期的输出。

/var/log/system.log 在尝试使用 launchd 启动 .py 文件时给出以下内容:

... com.apple.xpc.launchd[1] (com.test.notifyme): Service only ran for 4 seconds. Pushing respawn out by 6 seconds.

所以看起来 launchd 在识别目录更改方面工作正常 - 它只是不执行 python 脚本

我有一个解决方法,涉及从 shell 脚本调用 python 程序。然而,只有当我在调用 python 程序后使用“osascript”执行 shell 命令时,这才有效。我在 shell 脚本和 python 脚本上都适本地调用了“cdmod u+x ...”,并且它们在 launchd 之外单独调用时都可以工作。当与“WatchPaths”以外的其他内容一起使用时(例如每 15 秒运行一次),它也可以正常工作。

解决方法如下:

#!/bin/bash
/path/to/python /path/to/notifyme.py

osascript -e "tell application \"Finder\" to activate"

正如你所看到的,这似乎没有任何关系我很困惑。我希望无需调用 shell 脚本即可运行此脚本来调用 python 脚本。

最佳答案

不要使用time.sleep,只需使用wait选项。

根据官方通知文档字符串

选项“wait”是一个 bool 值,表示我们是否需要等待(阻止)后台进程完成

所以,只需运行

pync.notify('message', wait=True)

引用:notify sourcecode

关于python - launchd:Python Notifier.notify 未产生预期输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37010132/

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