Metadata-Version: 2.4
Name: pennypost
Version: 0.2.1
Summary: Official Python SDK for PennyPost, the affordable email API. Zero dependencies.
License: MIT
Project-URL: Homepage, https://pennypost.io/docs
Keywords: email,transactional-email,email-api,pennypost
Requires-Python: >=3.9
Description-Content-Type: text/markdown

pennypost — official Python SDK for [PennyPost](https://pennypost.io).

```python
from pennypost import PennyPost
pp = PennyPost("pp_live_<secret>")
pp.send_email({"from": "Receipts <r@yourdomain.com>", "to": ["a@b.com"], "subject": "Hi", "text": "Hello"})
```

Also included: batch send (up to 100 messages in one request), cc/bcc, log filters by recipient, domain, and API key, suppressions, the full Marketing Emails surface (audiences, contacts with custom properties, broadcasts with markdown drafts, send-time filters, and test sends), idempotency keys, and typed errors.
