python program to click on coordinates code example
Example: python move mouse
import mouse
# Number of pixels to move by on x and y axis
x = 1
y = 2
mouse.move(x, y)
import mouse
# Number of pixels to move by on x and y axis
x = 1
y = 2
mouse.move(x, y)