Metadata-Version: 2.4
Name: blockintql-sdk
Version: 0.1.1
Summary: Python SDK for BlockINTQL Ethereum and stablecoin intelligence
License: MIT
Project-URL: Homepage, https://blockintql.com
Project-URL: Documentation, https://blockintql.com/docs/blockintql
Keywords: ethereum,stablecoins,crypto,forensics,intelligence,sdk
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: httpx>=0.27.0
Dynamic: license-file

# BlockINTQL Python SDK

Minimal Python client for:

- capability discovery
- investigation planning
- workspace lifecycle

## Install

```bash
pip install blockintql-sdk
```

## 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"],
)
```

## Publish

```bash
python3 -m pip install --upgrade build twine
python3 -m build
python3 -m twine check dist/*
python3 -m twine upload dist/*
```
