AntoinePassemiers / Realistic-Mouse

Realistic mouse movements for building click bots

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Realistic mouse for building undetectable click bots

How to use it

>>> from rmm.mouse import Mouse
>>> mouse = Mouse(speed=1, mode=Mouse.Mode.TRACKPAD)
>>> x, y = 824, 365 # Destination coordinates
>>> mouse.move_to(x, y)
>>> mouse.left_click()
>>> mouse.right_click()

Installation

From the parent folder, install the library by entering the following command:

$ sudo python setup.py install

Dependencies

  • numpy >= 1.13.3
  • pyautogui
  • mss (optional, but required in order to support multiple monitors)

About

Realistic mouse movements for building click bots


Languages

Language:Python 99.7%Language:Makefile 0.3%