使用Python确定当前的Mac Safari网页

时间:2010-03-04 14:35:26

标签: python macos safari

有没有办法使用Python以编程方式确定哪个网页目前在Safari中有效?

1 个答案:

答案 0 :(得分:6)

Applescript示例为here,相关部分为:

tell application "Safari"
    set url_list to URL of every document
end tell

Python / AppleScript翻译涵盖here。例如,按照here所述安装appscript:

sudo easy_install appscript

然后,如图here所示,您可以执行以下操作:

>>> import appscript
>>> print appscript.app("Safari").windows.first.current_tab.URL()
http://wiki.python.org/moin/MacPython/Safari