Metadata-Version: 2.4
Name: runegrid
Version: 1.0.0
Summary: RuneGrid Universal Trust Infrastructure — Python SDK
Author-email: SetApart Labs <sarat@setapartinc.ai>
License: MIT
Project-URL: Homepage, https://runegrid.ai
Project-URL: Documentation, https://api.runegrid.ai/docs
Project-URL: Repository, https://github.com/setapart-design/runegrid-python-sdk
Keywords: trust,verification,credentials,runegrid
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx>=0.27.0
Dynamic: license-file

# runegrid

Official Python SDK for the [RuneGrid](https://runegrid.ai) Universal Trust Infrastructure API.

## Installation

```bash
pip install runegrid
```

## Quick Start

```python
from runegrid.sdk import RuneGridClient

client = RuneGridClient(
    base_url="https://api.runegrid.ai",
    api_key="rg_live_...",
)

result = client.verify(
    person_id="uuid",
    claim_type="employment",
    claim={
        "employer_name": "Salesforce",
        "start_date": "2021-01",
    },
)

print(result.confidence_score)
```

## Documentation

- [API Reference](https://api.runegrid.ai/docs)
- [Developer Hub](https://runegrid.ai/developers)
- [Marketplace](https://runegrid.ai/marketplace)

## Support

- [Contact](https://runegrid.ai/contact)
- [Trust Center](https://runegrid.ai/trust)

## License

MIT — see [LICENSE](./LICENSE)
