PyAutoGUI를 통한 마우스 키보드 자동화
PyAutoGUI를 통한 마우스 키보드 자동화 PyAutoGUI 패키지를 통해 마우스, 키보드를 컨트롤하거나 스크린샷을 찍는 등의 자동화를 할 수 있다. 샘플코드 import pyautogui screenWidth, screenHeight = pyautogui.size() # Get the size of the primary monitor. screenWidth, screenHeight currentMouseX, currentMouseY = pyautogui.position() # Get the XY position of the mouse. currentMouseX, currentMouseY pyautogui.moveTo(100, 150) # Move the mouse to XY coordinates. ..