覆盖复制命令

时间:2017-01-17 00:22:13

标签: python copy-paste

我试图用我在Python脚本中处理的输出结果覆盖命令Copy - Ctrl + C。

例如。我的脚本输出结果返回this-is-a-test,如果我运行粘贴(Ctrl + V),它应该粘贴this-is-a-test

这在Python环境,linux环境中是否可以实现?

1 个答案:

答案 0 :(得分:0)

您可以使用pyperclip library这是一个跨平台,可以在windows / linux / mac上运行。

>>> import pyperclip
>>> pyperclip.copy('The text to be copied to the clipboard.')
>>> pyperclip.paste()
'The text to be copied to the clipboard.'

如果您无法安装任何库,则可以检查代码(on github)并使用其中的部分内容。它可能会为您提供您正在寻找的解决方案。