Metadata-Version: 2.4
Name: blockintql-sdk
Version: 0.1.0
Summary: Python SDK for BlockINTQL Ethereum and stablecoin intelligence
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: httpx>=0.27.0

# BlockINTQL Python SDK

Minimal Python client for:

- capability discovery
- investigation planning
- workspace lifecycle

## Install

```bash
pip install -e .
```

## Example

```python
from blockintql_sdk import BlockINTQL

client = BlockINTQL()

capabilities = client.capabilities()
plan = client.plan(
    goal="Investigate this wallet's stablecoin counterparties and bridge activity",
    address="0xd8dA6BF26964aF9D7eEd9e03E53415D37aA96045",
    budget_credits=12,
)

workspace = client.create_workspace(
    name="stablecoin-investigation",
    modules=["verdict", "stablecoins", "bridge-activity", "chart"],
)
```
