我仍然是Python的新手,但我希望我的python脚本在我点击Google Chrome图标打开chrome时开始运行。是否可以启动和运行脚本以响应正在使用的其他应用程序(如Chrome)?
答案 0 :(得分:0)
您可以通过命令行完成此操作:
C:\Users\path\to\python\script>start chrome & python script.py
$(/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome) & python ~/path/to/file/script.py
命令中的&
允许您在background执行Python脚本时在foreground中打开Google Chrome(或您选择的网络浏览器)。
特别针对Chrome,您可能还会探索Google startup scripts,但您似乎必须注册Google的云服务才能实施这些服务。