Python 获取选定的文本

发布于 2024-11-29 14:48:22 字数 128 浏览 1 评论 0原文

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

谢谢!我想指出的是,这适用于 Mac。

How would I, using Python "catch" text that a user has selecting in, for example, a web browser? The script would idle in the background, and when a certain key combination is pressed, it "gets" the text the user has selected. Think copy & paste, only it copies to my application instead of a clipboard.

Thanks! I'd like to point out that this will be for Mac.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

哭泣的笑容 2024-12-06 14:48:22
  1. 安装xsel

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

    导入操作系统
    打印(os.popen('xsel').read())
    
  3. 选择文本

  4. 运行

    python get-selected.py
    
  1. Install xsel

    sudo apt-get install xclip xsel -y
    
  2. Save this as get-selected.py

    import os
    print(os.popen('xsel').read())
    
  3. Select text

  4. Run

    python get-selected.py
    
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文