如何从 Python 脚本中运行 AppleScript? [英] How to run an AppleScript from within a Python script?

查看:43
本文介绍了如何从 Python 脚本中运行 AppleScript?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何从 Python 脚本中运行 AppleScript?

How to run an AppleScript from within a Python script?

问题说明了一切..(显然在 Mac 上)

The questions says it all.. (On a Mac obviously)

推荐答案

这篇不错的文章 提出了简单的解决方案

this nice article suggests the simple solution

cmd = """osascript -e 'tell app "Finder" to sleep'"""
def stupidtrick():
    os.system(cmd)

尽管今天您当然会使用 subprocess 模块而不是 os.system.

though today you'd use the subprocess module instead of os.system, of course.

一定要检查 第 2 页 了解更多信息和选项,包括 应用脚本.

Be sure to also check page 2 of the article for many more info and options, including appscript.

这篇关于如何从 Python 脚本中运行 AppleScript?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆