Metadata-Version: 2.4
Name: outside-auto
Version: 0.1.0
Summary: A simple wrapper around PyAutoGUI
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pyautogui>=0.9.54
Dynamic: license-file

# outside-auto

A simple wrapper around PyAutoGUI for mouse and keyboard automation.

## Installation

```bash
pip install outside-auto
```

## Example

```python
import outside_auto as oa

oa.pause(False)
oa.failsafe(True)

oa.click(100, 100)
oa.write("Hello World", interval=0.1)
```

## Example-PyAutoGUI

```python
import outside_auto as oa

oa.pag.moveTo(100, 100)
oa.pag.press("enter")
```

## Version

```python
import outside_auto as oa

print(oa.__version__)
```

## Requirements

- Python 3.9+
- PyAutoGUI 0.9.54+

## License

MIT License
