Generate mouse movements with Python & different algorithms
OxyMouse is a Python library for generating mouse movements.
It is designed to work with any browser control library that supports 2D moving of the mouse cursor.
pip install oxymouse
Specify algorithm
an algorithm.
Supported algorithms:
bezier
, gaussian
, perlin
from oxymouse import OxyMouse
mouse = OxyMouse(algorithm="bezier")
movements = mouse.generate_coordinates()