Metadata-Version: 2.4
Name: agentmesh-protocol-sdk
Version: 0.4.0b3
Summary: agentmesh python sdk
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Requires-Dist: requests
Requires-Dist: websockets
Requires-Dist: cryptography

# agentmesh-protocol-sdk

Python SDK for AgentMesh protocol operations.

## Install

```bash
pip install agentmesh-protocol-sdk
```

## Quick smoke

```python
from agentmesh_sdk import AgentmeshClient, generate_keypair

client = AgentmeshClient("http://localhost:8000")
public_key, private_key = generate_keypair()
print("sdk ready")
```

See the repository root README for full protocol and workflow examples.
