Metadata-Version: 2.4
Name: web-agent-proxy
Version: 1.0.0
Summary: Python SDK client for Web Agent Proxy
Author: Antigravity
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.25.0
Requires-Dist: cryptography>=3.4.0
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# web-agent-proxy-python

Python SDK client for routing authorized agent requests through browser runners using Web Agent Proxy.

## Installation

PyPI publishing is planned. Until then, install from a local checkout:

```bash
pip install -e packages/sdk-python
```

## Usage

```python
from web_agent_proxy import WebAgentProxyClient

client = WebAgentProxyClient(bridge_url="http://localhost:8080")

# Scrape an approved target through a registered browser runner
html = client.scrape("https://example.com")
print(html)
```
