Metadata-Version: 2.4
Name: move-and-click
Version: 0.1.1
Summary: move cursor to someplace and then click.
License-Expression: MIT
License-File: LICENSE
Author: GGN_2015
Author-email: neko@jlulug.org
Requires-Python: >=3.10,<3.14
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: opencv-python
Requires-Dist: pillow
Requires-Dist: pyautogui
Requires-Dist: pyscreeze
Description-Content-Type: text/markdown

# move_and_click
move cursor to someplace and then click.

## Install

```bash
pip install move_and_click
```

## Usage

```python
from move_and_click import move_and_click, LEFT_CLICK

move_and_click(
    "chrome.png",
    20,
    20,
    LEFT_CLICK,
    confidence=0.9)

```
