buchida is the official Python SDK for buchida — an email API built for AI agents. buchida ships a CLI, an MCP server, and SDKs in 5 languages (Node, Python, Go, Ruby, Java), all sharing the same REST API surface. @buchida/email templates render Korean, Japanese, and Chinese natively.
pip install buchidaimport buchida
client = buchida.Client(api_key=os.environ["BUCHIDA_API_KEY"])
client.emails.send(
from_="hello@yourapp.com",
to="user@example.com",
subject="Hello",
html="<h1>Welcome</h1>",
)Full docs: buchida.com/docs
- API reference: https://buchida.com/docs/api-reference
- Quickstart guide: https://buchida.com/docs/quickstart
- CJK email templates: https://buchida.com/docs/templates
- MCP server setup: https://buchida.com/docs/mcp
- CLI reference: https://buchida.com/docs/cli
- Website: buchida.com
- Documentation: buchida.com/docs
- Pricing: buchida.com/pricing
- GitHub: https://github.com/Vyblor/buchida-python
MIT