如果脚本退出,Pyperclip不会持久存在

时间:2016-03-25 23:30:49

标签: python clipboard pyperclip

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

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

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

但如果我在脚本中做同样的事情

import pyperclip
pyperclip.copy('teststring')

并使用python filename执行此脚本。

它不会存储在剪贴板中。

1 个答案:

答案 0 :(得分:1)

使用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正在运行还是您的脚本比这更复杂?