0
Q:

how to move mouse and use keybored with python

import pyautogui

pyautogui.click(100, 100)
pyautogui.moveTo(100, 150)
pyautogui.moveRel(0, 10)  # move mouse 10 pixels down
pyautogui.dragTo(100, 150)
pyautogui.dragRel(0, 10)  # drag mouse 10 pixels down
2
import mouse
# Number of pixels to move by on x and y axis
x = 1
y = 2
mouse.move(x, y)
0
after MacOS big sur, pyautogui dosen't work for me :(
0

New to Communities?

Join the community