Metadata-Version: 2.4
Name: cuse
Version: 0.0.1
Summary: Remote control of a computer
License-Expression: MIT
License-File: LICENSE
Requires-Python: >=3.12
Requires-Dist: httpx>=0.25.1
Description-Content-Type: text/markdown

# ComputerUse

A Python library for controlling computers with AI agents. This package provides a simple interface for programmatic control of mouse movements, keyboard input, and screen capture.

## Installation

```bash
pip install computeruse
```

## Quick Start

```python
from computeruse import Computer

# Initialize a computer connection
computer = Computer("http://localhost:17014")

# Take a screenshot
screenshot = computer.screenshot()

# Move mouse and click
computer.move_mouse(x=100, y=100).left_click()

# Type text
computer.type("Hello, World!")
```

## Features

- Mouse control (move, click, drag)
- Keyboard input
- Screen capture
- System information
- Debug viewer

## Requirements

- Python 3.12 or higher
- Docker (for running the computer server)

## License

MIT License