Metadata-Version: 2.1
Name: pyautogui-cli
Version: 0.0.3
Summary: 
Home-page: https://github.com/changyuheng/pyautogui-cli
Author: Johann Chang
Author-email: mr.changyuheng@gmail.com
Requires-Python: >=3.11,<3.12
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: pyautogui (>=0.9.53,<0.10.0)
Project-URL: Repository, https://github.com/changyuheng/pyautogui-cli
Description-Content-Type: text/markdown

# pyautogui-cli

## Usage

Putting the function name of [pyautogui](https://github.com/asweigart/pyautogui) as the first argument, and all the arguments (anything inside the parentheses) as the second.

### Example

`pyautogui.moveTo()`:

```
>>> pyautogui.moveTo(100, 200)  # moves mouse to X of 100, Y of 200.
```

should be translated as:

```
$ pyautogui moveTo "100, 200"
```

