Metadata-Version: 2.4
Name: ola_plug
Version: 1.0.0
Summary: OLA Plug DLL Helper - Python wrapper for OLAPlug DLL
Author: OLA Plug Team
License: MIT
Project-URL: Homepage, https://github.com/ola-plug/ola_plug
Project-URL: Repository, https://github.com/ola-plug/ola_plug
Project-URL: Issues, https://github.com/ola-plug/ola_plug/issues
Keywords: ola,plug,dll,automation,windows
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# OLA Plug DLL Helper

Python wrapper library for OLAPlug DLL, providing automation and hardware interaction capabilities on Windows.

## Installation

```bash
pip install ola_plug
```

## Quick Start

```python
from ola_plug import OLAPlugDLLHelper

# Create an instance
instance = OLAPlugDLLHelper.CreateCOLAPlugInterFace()

# Use the library
print(f"Version: {OLAPlugDLLHelper.Ver()}")

# Clean up
OLAPlugDLLHelper.DestroyCOLAPlugInterFace(instance)
```

## Features

- DLL function wrapper for OLA Plug hardware
- Window binding and automation
- Graph-based path planning
- GUI drawing capabilities
- Assembly code support
- Mouse and keyboard automation

## Requirements

- Windows operating system
- Python 3.7+
- OLAPlug_x64.dll (included with hardware)

## Documentation

For detailed API documentation, please refer to the [official documentation](link-to-docs).

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
