问题标签 [pyperclip]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
8 回答
311195 浏览

python - 将文本复制到剪贴板的 Python 脚本

我只需要一个将文本复制到剪贴板的 python 脚本。

脚本执行后,我需要将文本的输出粘贴到另一个源。是否可以编写一个 python 脚本来完成这项工作?

0 投票
2 回答
8649 浏览

python-3.x - 如何将字符串复制到 Windows 剪贴板?蟒蛇 3

如果我有一个变量 var = '这是一个变量'

如何将此字符串复制到 Windows 剪贴板,以便我可以简单地 Ctrl+v 并将其转移到其他地方?我不想使用任何不是内置的东西,我希望这是可能的。

谢谢!

0 投票
1 回答
228 浏览

python - 将字符串更改为小写,第一个字符除外并复制到剪贴板

我想编写一个简单的 lambda 或函数,它需要一个字符串,除了第一种情况外更改为小写,并将结果复制到 Linux 中的剪贴板。

我有 lambda:

还行吧:

但是我如何将此 lambda 的结果自动复制到剪贴板,以便我可以将其粘贴到文本编辑器中。目前,我必须在 python 命令行中手动选择文本以复制到剪贴板。

0 投票
3 回答
9096 浏览

python - Pyperclip 出现错误

我使用python 2.7。我使用安装了pyperclip sudo pip install pyperclip,它安装成功。

每次我使用以下简单代码

我收到以下错误:

0 投票
1 回答
1271 浏览

macos - Mac OS X 10.6/python/pyperclip

我正在尝试通过 Al Sweigart 的书 Automate the Boring Stuff 来学习 python,并且遇到了一个问题,让 pyperclip 正确安装,甚至在我运行 OS X 10.6 的机器上也遇到了问题。

我怎么知道 pip 已安装?

昨晚我在终端中运行了 sudo pip install 。

我正在尝试运行http://pastebin.com/2aEPV45Y

我可以采取哪些步骤

  1. 确保 pip 已安装并正在运行
  2. 当我使用“import pyperclip”开始一个程序时,让 pyperclip 正常运行?
0 投票
1 回答
1421 浏览

python - Pyperclip 复制导致 OSerror

我正在尝试使用https://automatetheboringstuff.com学习 python 。

在 IDLE(Python 3.5 - 64 位)、windows 8.1)上,pyperclip.copy('test') 给出以下错误消息

pyperclip.copy('test') Traceback(最近一次调用最后一次):文件“”,第 1 行,在 pyperclip.copy('test') 文件“C:\Python\lib\site-packages\pyperclip__init__.py”中,第 53 行,在 _copyWindows ctypes.cdll.msvcrt.wcscpy(ctypes.c_wchar_p(pchData), text) OSError:异常:访问冲突写入 0x0000000000000000

任何帮助表示赞赏!

0 投票
0 回答
1859 浏览

python - Pyperclip 模块不工作

我想使用 pyperclip 复制到剪贴板并从中粘贴,但它似乎不起作用。

当我尝试使用pyperclip.copy("some string")时,我收到以下错误:

另一方面,当我使用 pyperclip.paste() 时,即使我之前复制了一些东西,我也没有打印任何东西,甚至有时 python 崩溃。

我正在使用 Windows 10 和 python 3.5。我也尝试过使用 python 3.4.3。

提前致谢。

0 投票
1 回答
619 浏览

python - Using PyperClip on web app

I am using pyperclip.py to grab a list of E-Mail Addresses in my web app using a form so a user can paste it locally via clipboard. It works perfect locally. However, while running it on a server (Linux 14.04 with Apache2) and accessed from a client system through the browser it doesn't copy. How can I get it to copy to the clipboard of the client's system?

Right now I'm just trying to get it to work and as such I'm only using a single line. I'm using pyperclip 1.5.15 with xclip and Python 3.4. The server is running Linux 14.04 and the client has noticed issues on Windows 8 and Windows 10 using Google Chrome and IE. No other os has currently been tested.

0 投票
3 回答
3046 浏览

python - pyperclip 没有属性副本

当我运行这段代码

我得到错误

我已经使用 pip 安装了 pyperclip 我尝试重新安装 Pyperclip 但它什么也没做。

0 投票
10 回答
41018 浏览

python - Python 3.5 Pyperclip 模块导入失败

刚开始学习Python。而且我在使用 Pyperclip 模块时遇到了麻烦。

当我尝试pip install pyperclip在命令行中使用时,它显示了这个错误:

我在 Windows 7 桌面上运行 Python 3.5(32 位)。