python mouse code example
Example 1: python move mouse
import mouse
# Number of pixels to move by on x and y axis
x = 1
y = 2
mouse.move(x, y)
Example 2: python move mouse slowly
import autopy # pip install autopy
autopy.mouse.smooth_move(100, 600)
Example 3: mouse module for python
# drag from (0, 0) to (100, 100) relatively with a duration of 0.1s
mouse.drag(0, 0, 100, 100, absolute=False, duration=0.1)