mouse click python code example

Example 1: python click on screen

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

Example 2: python code for on mouse click release

from pynput.mouse import Button, Controller

mouse = Controller()

# Read pointer position
print('The current pointer position is {0}'.format(
    mouse.position))

# Set pointer position
mouse.position = (10, 20)
print('Now we have moved it to {0}'.format(
    mouse.position))

# Move pointer relative to current position
mouse.move(5, -5)

# Press and release
mouse.press(Button.left)
mouse.release(Button.left)

# Double click; this is different from pressing and releasing
# twice on Mac OSX
mouse.click(Button.left, 2)

# Scroll two steps down
mouse.scroll(0, 2)

Example 3: 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 4: python move mouse slowly

import autopy # pip install autopy
autopy.mouse.smooth_move(100, 600)

Example 5: pyautogui mouse up mouse down

>>> import pyautogui
>>> pyautogui.click(10, 5)

Tags:

Misc Example