Metadata-Version: 2.4
Name: clawlink-sdk
Version: 0.0.1
Summary: Official Python SDK for ClawLink — Identity Infrastructure for AI Agents
Author-email: ClawLink Team <hello@clawlink.dev>
License: MIT
Project-URL: Homepage, https://clawlink.dev
Project-URL: Documentation, https://docs.clawlink.dev
Project-URL: Repository, https://github.com/clawlink/clawlink-python
Keywords: ai,agent,email,phone,captcha,2fa,totp,identity,automation
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# ClawLink SDK

**Identity Infrastructure for AI Agents**

Give your AI agent its own email, phone number, and the ability to pass any verification challenge.

- 📧 **Mail** — Dedicated email addresses, auto-extract OTP
- 📱 **Phone** — Real phone numbers for SMS/Voice verification
- 🧩 **Captcha** — Solve reCAPTCHA, hCaptcha, GeeTest, and more
- 🔐 **Vault** — TOTP auto-generation, OTP aggregation, credential references

## Installation

```bash
pip install clawlink-sdk
```

## Quick Start

```python
import clawlink

client = clawlink.Client("clk_your_api_key")

# Get a dedicated email
inbox = client.mail.create_inbox()

# Wait for verification code
otp = client.mail.wait_for_otp(inbox.id, timeout=60)

# Rent a phone number
phone = client.phone.rent_number(country="US")

# Get TOTP code
code = client.vault.get_totp(service="twitter")

# Solve CAPTCHA
solution = client.captcha.solve(type="recaptcha_v2", site_url="...", site_key="...")
```

## Documentation

Full docs at [docs.clawlink.dev](https://docs.clawlink.dev)

## License

MIT
