Human-like mouse automation using statistical models and minimum-jerk interpolation
Project description
HumanMoveMouse 🖱️
🎯 Human-like mouse automation using statistical models and minimum-jerk interpolation.
Overview
HumanMoveMouse is a human-like mouse automation tool built on over 300 real human mouse movement samples.
By extracting key statistical features from these trajectories and combining them with minimum-jerk interpolation,
the tool enables the generation of natural, smooth, and realistic cursor paths.
These paths closely mimic real human behavior and are ideal for automation tasks requiring authenticity,
such as UI testing, game botting, or user behavior simulation.
Installation
Install the required packages using pip:
pip install numpy pandas scipy scikit-learn pyautogui pygame
Core Functions & Examples
Basic Movement
Move the cursor smoothly between two points.
from human_mouse.human_mouse_controller import HumanMouseController
controller = HumanMouseController(model_pkl="mouse_model.pkl")
controller.move((100, 100), (800, 600)) # Move to coordinates
controller.move_and_click((800, 600), (400, 400)) # Move and click
Parameter Tuning
Adjust trajectory smoothness and speed.
controller = HumanMouseController(
model_pkl="mouse_model.pkl",
num_points=200,
jitter_amplitude=0.2,
speed_factor=0.5, )
controller.move((300, 300), (900, 500))
Drag and Drop
controller.drag((500, 500), (700, 700))`
Training a Model
You can train your own model using real mouse data.
First, collect trajectory CSVs using:
csv_data_collecter/Mouse Trajectory Collecter.py
Then train a model with:
from human_mouse.human_mouse_stat_mj import train_mouse_model
train_mouse_model("./csv_data", "mouse_model.pkl")`
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file humanmovemouse-0.1.2.tar.gz.
File metadata
- Download URL: humanmovemouse-0.1.2.tar.gz
- Upload date:
- Size: 21.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
94f1c114af203fb916dbed0e5ad98291a13d009c24c6960ae875cd9d3d4f675e
|
|
| MD5 |
067d830ca38ff584b9f7bc4d2ff952b6
|
|
| BLAKE2b-256 |
d72edd210d969ce2e57ef2213053b1fe105568702eb9f8f3f5eacdc8e7d91090
|
File details
Details for the file humanmovemouse-0.1.2-py3-none-any.whl.
File metadata
- Download URL: humanmovemouse-0.1.2-py3-none-any.whl
- Upload date:
- Size: 21.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
74ebfaa8cc59194c601e6e02f38824fc2bd3435e68344177d228e36b7a87d334
|
|
| MD5 |
e4ec0260a2eccf6f3c425e6ad9e9cbc2
|
|
| BLAKE2b-256 |
e3e369a5ca0aca59c939bc437804145ad753db09d9cd6aee1c3d04a5f84932eb
|