如何将AppleScript嵌入Python脚本中?

如何将AppleScript嵌入Python脚本中?,第1张

如何将AppleScript嵌入Python脚本中?

使用子流程

from subprocess import Popen, PIPEscpt = '''    on run {x, y}        return x + y    end run'''args = ['2', '2']p = Popen(['osascript', '-'] + args, stdin=PIPE, stdout=PIPE, stderr=PIPE)stdout, stderr = p.communicate(scpt)print (p.returnpre, stdout, stderr)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5632235.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-15
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存