Python获取选定的文本

时间:2011-08-16 17:04:08

标签: python macos selection clipboard

我如何使用用户选择的Python“catch”文本,例如Web浏览器?该脚本将在后台空闲,当按下某个键组合时,它“获取”用户选择的文本。思考副本&粘贴,只复制到我的应用程序而不是剪贴板。

谢谢!我想指出这将适用于Mac。

1 个答案:

答案 0 :(得分:2)

  1. 安装xsel

    sudo apt-get install xclip xsel -y
    
  2. 将其另存为get-selected.py

    import os
    print(os.popen('xsel').read())
    
  3. 选择文字

  4. 运行

    python get-selected.py