Metadata-Version: 2.4
Name: zeroshot-sdk
Version: 0.0.2
Summary: ZeroShot SDK - AI System Testing CLI and Client Library
Author: Lab42 Team
License: MIT
Keywords: ai,llm,red-teaming,sdk,security,testing
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Security
Requires-Python: >=3.10
Requires-Dist: httpx>=0.25
Requires-Dist: rich>=13.0
Requires-Dist: toml>=0.10
Requires-Dist: typer>=0.9
Description-Content-Type: text/markdown

# ZeroShot SDK

Official SDK for ZeroShot - AI Security Testing Platform.

## Installation

```bash
pip install zeroshot-sdk
```

## Quick Start

```bash
# Login (stores API key locally)
zeroshot auth login

# Run a scan
zeroshot scan --target http://target-url

# View results
zeroshot scans list
```

## Python Usage

```python
from zeroshot_sdk import ZeroShotClient

client = ZeroShotClient(api_key="zsk_...")

# Run a scan
result = client.scan(
    target="http://target-url",
    categories=["jailbreak", "prompt_injection"],
)

print(f"Found {result['vulnerabilities_found']} vulnerabilities")
```
