Metadata-Version: 2.1
Name: win_auto_tiny
Version: 0.1.2
Summary: A lightweight Python library for automating Windows GUI tasks, featuring simple functions to run applications, find windows, click, and type text.
Home-page: https://github.com/th-yoo/win_auto_tiny
License: MIT
Keywords: win32,automation,lightweight,GUI,windows,mouse,keyboard,DPI
Author: th yoo
Author-email: taihyungyoo@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: pywin32 (>=300) ; sys_platform == "win32"
Description-Content-Type: text/markdown

# win\_auto\_tiny
**win_auto_tiny** is a lightweight Python library for automating Windows GUI tasks, featuring simple functions to run applications, find windows, click, and type text. 

> This library is lightweight and includes the features I personally needed. If you are looking for full-featured GUI automation, consider looking at [PyAutoGUI](https://pypi.org/project/PyAutoGUI/) or [AutoHotKey](https://www.autohotkey.com/).

## Features
- **Process Management**: Easily execute and kill applications.
- **Window Utilities**: Minimize, find, and interact with application windows.
- **DPI Handling**: Get DPI settings and manage graphical transformations.
- **Mouse Control**: Perform mouse clicks and other actions.
- **Keyboard Control**: Send keys and text input to applications.
- **Drawing Utilities**: Draw on application windows using RGB colors.

## Installation
```powershell
PS > pip install win_auto_tiny
```

## Usage
See **tests** directory.

## License
This project is licensed under the MIT License. See the LICENSE file for details.

## Contact
For any questions or support, please reach out to me via [GitHub Issues](https://github.com/th-yoo/win_auto_tiny/issues).

