Metadata-Version: 2.4
Name: agentguard-client
Version: 0.1.0
Summary: Python SDK for AgentGuard — secure API calls for AI agents
Author-email: Mohammad Nawaf <m7md.nawaf77@icloud.com>
License: MIT
Project-URL: Homepage, https://agent-guard.dev
Project-URL: Repository, https://github.com/mohnawaf77/Agent-Guard-SDK
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.28.0

# AgentGuard Python SDK

Python SDK for AgentGuard — secure API calls for AI agents without handling real API keys.

## Installation

```bash
pip install agentguard
```

## Quick Start

```python
from agentguard import AgentGuardSession

# Initializes session — prompts for credentials if not found in env vars or config
session = AgentGuardSession()

# Make secure API calls routed through AgentGuard proxy
response = session.post(
    "https://api.tavily.com/search",
    credential_id="your_credential_id",
    json={"query": "hello"}
)
print(response.json())
```
