Image reference: Copyright Greg Hughes on Flickr 마우스, 키보드 오토메이션 import pyautogui # 모니터 해상도 가져오기 width, height = pyautogui.size() print('width={0}, height={1}'.format(width, height)) # 마우스 위치 가져오기 x, y = pyautogui.position() print('x={0}, y={1}'.format(x, y)) # 안전모드 설정하기, 잘못되었을 경우 탈출구 pyautogui.