Metadata-Version: 2.4
Name: satrank
Version: 1.7.0
Summary: DEPRECATED — Python SDK retired in V3 (2026-05-08). Use https://satrank.dev/api/ or `npx -y satrank-mcp`.
Author-email: SatRank <rom.orsoni@protonmail.com>
License-Expression: AGPL-3.0-only
Project-URL: Homepage, https://satrank.dev
Project-URL: Repository, https://github.com/proofoftrust21/satrank
Keywords: lightning,l402,satrank,deprecated
Classifier: Development Status :: 7 - Inactive
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# satrank — DEPRECATED

The Python SDK was retired on 2026-05-08 with SatRank V3.

V3 ships only:
- The HTTP REST API at https://satrank.dev/api/ (5 routes)
- The Node MCP server `satrank-mcp` on npm (3 tools)

For Python integrations, call the REST API directly with `httpx` or `requests`.

```python
import httpx

# Free read — Bayesian score for a specific endpoint
r = httpx.get("https://satrank.dev/api/services/<sha256-of-url>").json()

# Paid intent (2 sats via L402 — handle the 402 + retry loop with your wallet)
r = httpx.post("https://satrank.dev/api/intent", json={"category": "data/finance"})
```

See https://satrank.dev for the full surface.
