Metadata-Version: 2.4
Name: graphe-sdk
Version: 0.1.0
Summary: Python SDK for the Graphe Layer 1 world-state API
Requires-Python: >=3.11
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.27.0
Provides-Extra: dev
Requires-Dist: pytest>=8.0.0; extra == "dev"
Requires-Dist: respx>=0.21.0; extra == "dev"

# graphe-sdk

Python client for the [Graphe](https://github.com/) Layer 1 API.

```bash
pip install graphe-sdk
```

```python
from graphe_sdk import GrapheClient, GrapheConfig

config = GrapheConfig.from_env()
client = GrapheClient(config.base_url, config.api_key)
print(client.get_health())
```

See the monorepo `API.md` for endpoint contracts.
