Metadata-Version: 2.4
Name: loomal-sdk
Version: 0.7.0
Summary: DEPRECATED compatibility shim — install mailgent-sdk instead. Re-exports the Loomal SDK (identity, mail, vault, calendar, x402 paywall) but now defaults to api.mailgent.dev.
Author: Loomal
License: MIT
Project-URL: Homepage, https://loomal.ai
Project-URL: Documentation, https://docs.loomal.ai
Project-URL: Repository, https://github.com/loomal-ai/loomal-python
Project-URL: Issues, https://github.com/loomal-ai/loomal-python/issues
Keywords: loomal,ai,agent,email,mcp,did,vault,sdk,x402,paywall,usdc,payments,fastapi
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx>=0.27
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == "dev"
Requires-Dist: pytest-asyncio>=0.23; extra == "dev"
Requires-Dist: respx>=0.21; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"
Requires-Dist: fastapi>=0.110; extra == "dev"
Provides-Extra: fastapi
Requires-Dist: fastapi>=0.100; extra == "fastapi"
Dynamic: license-file

# loomal-sdk — deprecated

> [!WARNING]
> **`loomal-sdk` is deprecated.** Please use **[`mailgent-sdk`](https://pypi.org/project/mailgent-sdk/)** instead.

This package now ships as a **non-breaking compatibility shim**: existing code keeps working, but it defaults to `https://api.mailgent.dev` and accepts `MAILGENT_API_KEY` (falling back to `LOOMAL_API_KEY`), emitting a one-time `DeprecationWarning`. No new features will be added here.

## Migrate

```bash
pip uninstall loomal-sdk && pip install mailgent-sdk
```

```python
import os
from mailgent import Mailgent
client = Mailgent(api_key=os.environ["MAILGENT_API_KEY"])
```

- Docs: <https://docs.mailgent.dev>
- Migration guide: <https://docs.mailgent.dev/migrate>

## License
MIT
