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

查看:90
本文介绍了如何从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.

请确保还检查

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

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

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