python 用于收集OSX上Google Chrome上访问过的链接的shell脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 用于收集OSX上Google Chrome上访问过的链接的shell脚本相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python
# shell script to collect the links visited on Google Chrome
# by: Cody Kochmann

import os, time

def current_links():
    try:
        chrome_link=os.popen("""osascript -e 'tell application "Google Chrome" to return URL of active tab of front window'""").read().split("\n")[0]
        return chrome_link
    except:
        pass

link_history=[]
while True:
    time.sleep(0.25)
    current_link=current_links()
    if current_link not in link_history:
        link_history.append(current_link)
        print current_link

以上是关于python 用于收集OSX上Google Chrome上访问过的链接的shell脚本的主要内容,如果未能解决你的问题,请参考以下文章

在 OSX 上使用 python 通过蓝牙获取 GPS 坐标

在 Google Colab 中安装 dryscrape(用于网页抓取的 python 库)

Matplotlib 无法在 OSX 上使用 Python 2.7 和 Django

Google App Engine 上的 python 请求不适用于 HTTPS

Python C

在 OSX 上更新 Python 和包