단축키사용하기
https://heodolf.tistory.com/61 from pynput.keyboard import Listener, Key, KeyCode import win32api,pyautogui,pyperclip store = set() HOT_KEYS = { 'print_hello': set([ Key.alt_l, KeyCode(char='1')] ) , 'open_notepad': set([ Key.alt_l, KeyCode(char='2')] ) } def print_hello(): pyperclip.copy("안녕하세요") pyautogui.hotkey('ctrl','v') def open_notepad(): print('open_notepad') try: win32api.WinExec('notep..