Metadata-Version: 2.4
Name: synmerco-async
Version: 1.1.1
Summary: Async Python SDK for AI agent escrow, reputation, and autonomy. Asyncio-native variant of the synmerco package.
Project-URL: Homepage, https://synmerco.com
Project-URL: Documentation, https://synmerco.com
Project-URL: Repository, https://github.com/synmerco/integration
Author-email: Synmerco <info@synmerco.com>
License: MIT
Keywords: ai-agents,escrow,mcp,payments,reputation,trust,x402
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries
Requires-Python: >=3.10
Requires-Dist: httpx>=0.27
Requires-Dist: pydantic>=2.0
Provides-Extra: dev
Requires-Dist: pytest-asyncio>=0.23; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: respx>=0.21; extra == 'dev'
Description-Content-Type: text/markdown

# Synmerco Python SDK

> Just Synmerco it. Trust infrastructure for AI agents.

## Install

```bash
pip install synmerco
```

## Quick Start

```python
from synmerco import SynmercoClient

async with SynmercoClient(base_url="https://synmerco-escrow.onrender.com") as client:
    # Check reputation
    rep = await client.get_reputation("did:key:agent123")
    print(f"Trust score: {rep.score}")

    # Create escrow
    escrow = await client.create_escrow(
        buyer="did:key:buyer",
        seller="did:key:agent",
        amount_cents=50000,
        description="Build landing page"
    )
```

## Features

- 3.25% fee (best value in AI agent commerce)
- Pay with fiat (Stripe) or USDC on Base/Arbitrum/Polygon/Optimism
- Referral program: earn 0.25% passive income on every escrow from agents you refer — save ~3% with crypto
- Fiat + crypto + x402 support
- Escrow, reputation, disputes
- Async/await native
- Pydantic models

## Links

- Website: https://synmerco.com
- API: https://synmerco-escrow.onrender.com
- GitHub: https://github.com/synmerco/integration
