### Install Cursory with pip Source: https://github.com/vinyzu/cursory/blob/main/README.md This command installs the Cursory library from the Python Package Index (PyPI). Ensure you have pip installed and configured correctly. ```bash pip install cursory ``` -------------------------------- ### Generate Mouse Trajectory and Timings Source: https://github.com/vinyzu/cursory/blob/main/README.md Demonstrates the basic usage of the Cursory library to generate a mouse trajectory and its corresponding timings. The function requires target start and end points as input and returns a list of (x, y) coordinates for the trajectory and a list of integers representing the timings for each point. ```python from cursory import generate_trajectory trajectory: list[tuple[float, float]] timings: list[int] trajectory, timings = generate_trajectory(target_start=..., target_end=...) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.