Metadata-Version: 2.4
Name: open-alo-core
Version: 0.1.0
Summary: Modern Linux desktop automation SDK with Wayland support - Single permission for screen capture and input control
Author-email: OPEN_ALO Contributors <open.alo@example.com>
Maintainer-email: OPEN_ALO Contributors <open.alo@example.com>
License-Expression: MIT
Project-URL: Homepage, https://github.com/JonyBepary/Open-ALO
Project-URL: Documentation, https://github.com/JonyBepary/Open-ALO/blob/main/API_REFERENCE.md
Project-URL: Repository, https://github.com/JonyBepary/Open-ALO
Project-URL: Issues, https://github.com/JonyBepary/Open-ALO/issues
Project-URL: Changelog, https://github.com/JonyBepary/Open-ALO/blob/main/CHANGELOG.md
Keywords: automation,desktop,linux,wayland,screen-capture,input-control,ai-agents,remote-desktop,xdg-portal,pipewire,gstreamer,gnome
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
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
Classifier: Topic :: Desktop Environment
Classifier: Topic :: System :: Monitoring
Classifier: Environment :: X11 Applications :: Gnome
Classifier: Intended Audience :: Science/Research
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PyGObject>=3.40.0
Dynamic: license-file

# Open ALO

**Desktop Automation for Linux**

[![Python](https://img.shields.io/badge/python-3.8+-blue.svg)](https://www.python.org/downloads/)
[![Platform](https://img.shields.io/badge/platform-Linux-green.svg)](https://www.linux.org/)
[![Wayland](https://img.shields.io/badge/Wayland-Native-brightgreen.svg)](https://wayland.freedesktop.org/)
[![License](https://img.shields.io/badge/license-MIT-yellow.svg)](./LICENSE)
[![PyPI](https://img.shields.io/badge/PyPI-v0.1.0-orange.svg)](https://pypi.org/project/open-alo-core/)

Desktop automation library for Linux with **one permission dialog** for both screen capture and input control. Perfect for AI agents, RPA, and testing.

## ✨ Features

- ✅ **Single Permission Dialog** - One approval for input + capture (RustDesk-style)
- ✅ **Real-time Screen Streaming** - Live frames via PipeWire
- ✅ **Full Input Control** - Mouse, keyboard, shortcuts
- ✅ **Window Management** - Find, activate, control windows (GNOME)
- ✅ **Persistent Sessions** - Approve once, run forever
- ✅ **Wayland Native** - XDG Portals, PipeWire, GStreamer
- ✅ **Type-Safe** - Full type hints
- ✅ **Zero ML Dependencies** - Pure hardware abstraction

## 🚀 Quick Start

### Installation

```bash
# System dependencies (Ubuntu/Debian)
sudo apt install \
    python3-gi \
    python3-gi-cairo \
    gir1.2-gst-plugins-base-1.0 \
    gstreamer1.0-pipewire \
    xdg-desktop-portal \
    xdg-desktop-portal-gnome

# Install package
pip install open-alo-core
```

**For Window Management (GNOME only):**
1. Install [Window Calls extension](https://extensions.gnome.org/extension/4724/window-calls/) from browser
2. Enable it: `gnome-extensions enable window-calls@domandoman.github.com`

### Basic Usage

```python
from open_alo_core import UnifiedRemoteDesktop, Point

# ONE permission dialog for everything!
with UnifiedRemoteDesktop() as remote:
    remote.initialize(persist_mode=2, enable_capture=True)

    # Screen capture
    screenshot = remote.capture_screenshot()  # PNG bytes
    frame = remote.get_frame()                # Live frame
    width, height = remote.get_screen_size()

    # Input control
    remote.click(Point(500, 500))
    remote.type_text("Hello World!\n")
    remote.key_combo(["ctrl", "c"])
```

### Window Management (GNOME)

```python
from open_alo_core import WindowManager

wm = WindowManager()
editor = wm.find_window("Text Editor")
wm.activate(editor.id)
wm.maximize(editor.id)
```

## 📋 System Requirements

- **OS**: Linux with Wayland (GNOME, KDE, Sway)
- **Python**: 3.8+
- **Dependencies**: PyGObject, GStreamer 1.0, PipeWire
- **Window Management**: GNOME Shell + [Window Calls extension](https://extensions.gnome.org/extension/4724/window-calls/)

**Tested on:**
- Ubuntu 25.10 (Questing), Wayland + GNOME/Unity
- Window Calls extension v13+

## 📚 Documentation

- [**API Reference**](API_REFERENCE.md) - Complete API documentation
- [**Quick Reference**](../docs/UNIFIED_QUICK_REFERENCE.md) - Common patterns
- [**Examples**](../examples/) - Working code examples
- [**Migration Guide**](../docs/MIGRATION_TO_UNIFIED.md) - Upgrade from legacy

## 🎯 Use Cases

- **AI Agents** - Screen understanding + autonomous control
- **RPA** - Robotic process automation
- **Testing** - UI testing and automation
- **Monitoring** - Screenshot capture and analysis
- **Remote Control** - Desktop automation over network

## 🏗️ Architecture

```
UnifiedRemoteDesktop
├── RemoteDesktop Portal (org.freedesktop.portal.RemoteDesktop)
│   ├── Input Control (keyboard, mouse)
│   └── Inherits ScreenCast (screen capture)
├── PipeWire (real-time streaming)
└── GStreamer (frame processing)

WindowManager
└── Window Calls Extension (GNOME D-Bus)
```

## 🔒 Security

- Uses XDG Desktop Portals (sandboxed)
- Permission dialogs via system compositor
- Persistent tokens stored in `~/.config/open_alo_core/`
- No root required

## 📄 License

MIT License - See [LICENSE](LICENSE) file

## 🤝 Contributing

Contributions welcome! Please read [CONTRIBUTING.md](../CONTRIBUTING.md) for guidelines.

## 🐛 Issues

Report bugs at: https://github.com/JonyBepary/Open-ALO/issues

## 🌟 Credits

Developed by OPEN_ALO Contributors

---

**Repository**: https://github.com/JonyBepary/Open-ALO
