Metadata-Version: 2.4
Name: solstera-market-intelligence
Version: 0.2.0
Summary: Official Python SDK for the Solstera Market Intelligence API and MCP endpoint.
Project-URL: Documentation, https://hermes-mi.solsteralabs.com/developers
Author: Solstera Labs
License-Expression: MIT
License-File: LICENSE
Keywords: finance,market-intelligence,mcp,solstera
Requires-Python: >=3.10
Requires-Dist: cryptography>=42
Requires-Dist: rfc8785>=0.1.4
Provides-Extra: test
Requires-Dist: pytest>=8; extra == 'test'
Description-Content-Type: text/markdown

# Solstera Market Intelligence Python SDK

Official Python SDK for signed Solstera intelligence, historical analogs, all seven
forecast horizons, webhooks, and the read-only MCP endpoint.

```bash
pip install https://hermes-mi.solsteralabs.com/developers/sdk/solstera_market_intelligence-0.2.0-py3-none-any.whl
```

This is the current versioned distribution endpoint while the Solstera package
registry namespace is being approved.

```python
import os
from solstera_market_intelligence import SolsteraClient

solstera = SolsteraClient(os.environ["SOLSTERA_API_KEY"])
latest = solstera.latest_intelligence()
print(latest["data"]["top_picks"])

precedents = solstera.days_like_today(asset="gold")
print(precedents["data"]["matches"][0]["key_differences"])

for row in solstera.iterate_forecasts(horizon="3m"):
    print(row)
```

Response signatures are verified by default. Safe reads retry `408`, `429`, and
`5xx` responses; mutation POSTs do not retry automatically. See the repository's
`docs/SDK-GUIDE.md` for webhooks and MCP configuration.
