Metadata-Version: 2.4
Name: pennypost
Version: 0.2.0
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"})
```
