Metadata-Version: 2.4
Name: sandmail
Version: 1.0.0
Summary: Disposable email API for AI agents — OTP extraction, webhooks, and instant inboxes
Home-page: https://sandmail.dev
Author: SandMail
Project-URL: Documentation, https://sandmail.dev/docs
Project-URL: Source, https://github.com/sandmail/sandmail-python
Keywords: temp-mail,disposable-email,otp,email-api,ai-agent,automation
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Communications :: Email
Classifier: Topic :: Software Development :: Testing
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: project-url
Dynamic: requires-python
Dynamic: summary

# SandMail â€” Disposable Email API for AI Agents

Create temporary inboxes, extract OTP codes, and receive webhooks â€” in 3 lines of code.

## Install

```bash
pip install sandmail
```

## Quick Start

```python
from sandmail import SandMail

client = SandMail("sk_live_your_api_key")

inbox = client.create_inbox()
otp = client.wait_for_otp(inbox.email, timeout=30)
print(otp.code)  # "847291"
```

## Documentation

[sandmail.dev/docs](https://sandmail.dev/docs)
