我想通过python脚本将某些内容存储到剪贴板中。

基本上只是pyperclip.copy('text')
我将Fedora 21与AwesomeWM一起使用。我读了here,需要一个剪贴板管理器将其永久存储在剪贴板中。我安装了parcellite。现在,如果我在终端中使用它,它可以通过

$python
$>>> import pyperclip
$>>> pyperclip.copy('teststring')


但是如果我在脚本中执行完全相同的操作

import pyperclip
pyperclip.copy('teststring')


并使用python filename执行此脚本。

它不会存储在剪贴板中。

最佳答案

pyperclip-1.5.27对我有用。使用此脚本,test.py:

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

$>python ./test.py


然后执行Ctrl + V粘贴:

The text to be copied to the clipboard.


您确定pyperclip.copy正在运行还是您的脚本比这更复杂?

10-05 21:40