Python button, mouse mecro sample with pynputpynput을 이용한 마우스 클릭, 버튼 클릭 메크로 (자동화) 예시

 

 

 

  IMPORT

from pynput.mouse import Button, Controller

mouse = Controller()

from pynput.keyboard import Key, Controller

keyboard = Controller()

 

 

 KEYBOARD EXAMPLE

time.sleep(0.5)

keyboard.press(Key.ctrl)

keyboard.press('f')

keyboard.release('f')

keyboard.release(Key.ctrl)

time.sleep(0.5)

keyboard.type('맨뒤')

keyboard.press(Key.enter)

keyboard.release(Key.enter)

keyboard.press(Key.esc)

keyboard.release(Key.esc)

keyboard.press(Key.alt)

keyboard.press(Key.tab)

keyboard.release(Key.tab)

keyboard.release(Key.alt)

 

 

 MOUSE EXAMPLE

mouse.position = (1000, 600)

mouse.position = (482, 440)

mouse.press(Button.left)

mouse.move(-30, 0)

 

 

 

 

눈에 잘 들어오는 스샷 참고!

 

 

TIP!

해당 작업이 정상적으로 작동하지 않을 경우 중간에 time.sleep을 통해서 텀을 주자.

그러면 정상 작동한다.

+ Recent posts