how to check if someone is clicking pyautogui code example
Example 1: python move mouse slowly
import autopy # pip install autopy
autopy.mouse.smooth_move(100, 600)
Example 2: pyautogui moveTo overtime
import pyautogui
#pyautogui.moveTo(X, Y, Seconds)
pyautogui.moveTo(100, 100, 2) #Move to X=100, Y=100 over a 2 seconds period