我正在尝试按照以下方式做点什么:
#setup stuff
from Tkinter import Tk
clp=Tk()
clp.withdraw() #keep window from showing
clp.clipboard_clear()
stuff=['this','is','stuff'])
count = 0
while 1:
if(clp.userPastesClipboard()): #is there a some sort of function for this?
if(count <= len(stuff)):
clp.clipboard_append(stuff[count])
count += 1
else:
exit()
我基本上只希望能够在用户从剪贴板粘贴(到任何应用程序)时触发if / while语句。我没有必要使用Tkinter库,所以如果有一个更好的库可供使用,请告诉我,不过如果我能用Tkinter做的那就更好了。使用Python 2.7。如果可能,我更喜欢使用标准库,但如果绝对必要,我会使用第三方。感谢。