원격 화면제어로 통과시킬때 잘먹히는 복붙 crtl + v
더시민
0
84
0
2022.12.04 10:37
import pyperclip
import keyboard
pyperclip.copy(text)
keyboard.press_and_release("ctrl",True,False)
keyboard.press_and_release("v",True,True)
keyboard.press_and_release("ctrl",False,True)