mirror of
https://github.com/NohamR/Stage-2023.git
synced 2025-05-24 00:49:03 +00:00
15 lines
287 B
Python
15 lines
287 B
Python
import pyperclip
|
|
import time
|
|
|
|
prcc = ""
|
|
|
|
while True:
|
|
|
|
while True:
|
|
cucc = pyperclip.paste()
|
|
|
|
if cucc != prcc:
|
|
with open("clipboard.txt", 'a', encoding='utf-8') as file:
|
|
file.write('\n' + cucc)
|
|
prcc = cucc
|
|
time.sleep(0.1) |