如何在另一个应用程序开始运行的同时执行python脚本?

时间:2015-08-26 19:00:00

标签: python windows macos google-chrome

我仍然是Python的新手,但我希望我的python脚本在我点击Google Chrome图标打开chrome时开始运行。是否可以启动和运行脚本以响应正在使用的其他应用程序(如Chrome)?

1 个答案:

答案 0 :(得分:0)

您可以通过命令行完成此操作:

C:\Users\path\to\python\script>start chrome & python script.py

OS X

$(/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome) & python ~/path/to/file/script.py

命令中的&允许您在background执行Python脚本时在foreground中打开Goog​​le Chrome(或您选择的网络浏览器)。

特别针对Chrome,您可能还会探索Google startup scripts,但您似乎必须注册Google的云服务才能实施这些服务。