Metadata-Version: 2.4
Name: iricity-sdk
Version: 0.1.1
Summary: Thin Python client for Iricity machine-payment flows.
License-Expression: Apache-2.0
Project-URL: Homepage, https://iricity.com/developer.html
Project-URL: Documentation, https://iricity.com/api-docs.html
Project-URL: Repository, https://github.com/iricity/iricity-webapp
Keywords: iricity,sdk,payments,ai
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: NOTICE
Dynamic: license-file

# iricity-sdk

Thin Python client for:
- catalog
- quote
- execute
- wait
- provenance-aware settled responses

## Install from repo

```bash
pip install ./apps/sdk-python
```

## Publish-ready install target

```bash
pip install iricity-sdk
```

## Example

```python
from iricity_sdk import IricityClient

client = IricityClient(api_key="your_api_key")

result = client.run(
    "analysis-job",
    {
        "primary": {
            "documentText": "Paste your source text here...",
            "goal": "Summarize key points and actions",
            "audience": "Operations leadership",
        },
        "options": {
            "outputMode": "brief",
            "urgency": "normal",
            "includeArtifacts": False,
        },
    },
    wait=True,
)

print(result)
```
