2017年3月3日 星期五

用pyperclip紀錄剪貼簿內容

import time
import pyperclip
the_words = []
while True:
    time.sleep(0.5)
    if pyperclip.paste() not in the_words:
        print(pyperclip.paste())
        the_words.append(pyperclip.paste())

每0.5秒偵測一次,如果有新的剪貼內容就印出來。

沒有留言:

張貼留言