Metadata-Version: 2.4
Name: analog-sdk
Version: 0.0.1
Summary: Python SDK for Analog — instantly distill webpages into structured data. Placeholder release; full SDK lands in a follow-up version.
Project-URL: Homepage, https://getanalog.io
Author-email: Marcus Campbell <marcus@getanalog.io>
License: MIT
License-File: LICENSE
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# analog-sdk

Python SDK for [Analog](https://getanalog.io) — instantly distill
webpages into structured data.

> **Placeholder release.** This is a stub package that reserves the
> `analog-sdk` name on PyPI while the full SDK is finalized in
> Analog's monorepo. The real SDK lands in a follow-up version.
> For status and release timing, see https://getanalog.io.

## Installation

```bash
pip install analog-sdk
```

## Future usage (when the real SDK ships)

```python
from analog import analog

result = analog("https://news.ycombinator.com/")
for record in result.structured_content[0].records:
    print(record["title"], record["url"])
```

## License

MIT — see [LICENSE](./LICENSE).
