Metadata-Version: 2.4
Name: claude-wrapper
Version: 0.1.dev15
Summary: A simple Python wrapper for Claude CLI with streaming support and OpenAI-compatible API interface
Project-URL: Homepage, https://github.com/claude-wrapper/claude-wrapper
Project-URL: Documentation, https://github.com/claude-wrapper/claude-wrapper#readme
Project-URL: Repository, https://github.com/claude-wrapper/claude-wrapper
Project-URL: Issues, https://github.com/claude-wrapper/claude-wrapper/issues
Author: Claude Wrapper Contributors
License: MIT
License-File: LICENSE
Keywords: ai,api,claude,cli,fastapi,openai,streaming,typer
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Framework :: FastAPI
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
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 :: Scientific/Engineering :: Artificial Intelligence
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Requires-Dist: aiofiles>=23.2.1
Requires-Dist: fastapi>=0.110.0
Requires-Dist: httpx>=0.25.0
Requires-Dist: orjson>=3.9.10
Requires-Dist: pydantic-settings>=2.1.0
Requires-Dist: pydantic>=2.5.0
Requires-Dist: python-dotenv>=1.0.0
Requires-Dist: python-multipart>=0.0.6
Requires-Dist: pyyaml>=6.0.0
Requires-Dist: rich>=13.7.0
Requires-Dist: sse-starlette>=2.0.0
Requires-Dist: typer>=0.9.0
Requires-Dist: uvicorn[standard]>=0.27.0
Provides-Extra: dev
Requires-Dist: bandit>=1.7.0; extra == 'dev'
Requires-Dist: black>=23.0.0; extra == 'dev'
Requires-Dist: faker>=20.0.0; extra == 'dev'
Requires-Dist: freezegun>=1.2.0; extra == 'dev'
Requires-Dist: mypy>=1.7.0; extra == 'dev'
Requires-Dist: openai>=1.99.9; extra == 'dev'
Requires-Dist: pip-audit>=2.6.0; extra == 'dev'
Requires-Dist: pre-commit>=3.5.0; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'dev'
Requires-Dist: pytest-cov>=4.1.0; extra == 'dev'
Requires-Dist: pytest-mock>=3.11.0; extra == 'dev'
Requires-Dist: pytest-timeout>=2.1.0; extra == 'dev'
Requires-Dist: pytest>=7.4.0; extra == 'dev'
Requires-Dist: respx>=0.20.0; extra == 'dev'
Requires-Dist: ruff>=0.1.0; extra == 'dev'
Requires-Dist: tomli-w>=1.0.0; extra == 'dev'
Requires-Dist: types-pyyaml>=6.0.0; extra == 'dev'
Provides-Extra: test
Requires-Dist: faker>=20.0.0; extra == 'test'
Requires-Dist: freezegun>=1.2.0; extra == 'test'
Requires-Dist: openai>=1.99.9; extra == 'test'
Requires-Dist: pytest-asyncio>=0.21.0; extra == 'test'
Requires-Dist: pytest-cov>=4.1.0; extra == 'test'
Requires-Dist: pytest-mock>=3.11.0; extra == 'test'
Requires-Dist: pytest-timeout>=2.1.0; extra == 'test'
Requires-Dist: pytest>=7.4.0; extra == 'test'
Requires-Dist: respx>=0.20.0; extra == 'test'
Description-Content-Type: text/markdown

# Claude Wrapper

A simple Python wrapper for Claude CLI that seamlessly integrates Claude's capabilities into your Python applications. This package provides streaming support and an OpenAI-compatible API interface.

## ✨ Key Features

- **🔧 Simple Integration**: Use Claude CLI through Python with minimal setup
- **🚀 Streaming Support**: Real-time response streaming with proper async handling
- **🔌 OpenAI-Compatible API**: Drop-in replacement for OpenAI API clients
- **🔒 No API Keys**: Leverages Claude CLI's authentication - no separate API keys needed
- **⚡ Robust Error Handling**: Automatic retries and comprehensive error management
- **📊 Efficient**: Subprocess optimization with configurable timeouts and retries

## 🚀 5-Minute Quickstart

### Prerequisites

1. **Install Claude CLI** (if not already installed):
```bash
npm install -g @anthropic-ai/claude-cli
# OR
brew install claude

# Authenticate once
claude login
```

2. **Install Claude Wrapper**:
```bash
pip install claude-wrapper
# OR from source
git clone https://github.com/yourusername/claude-wrapper
cd claude-wrapper
pip install -e .
```

### Quick Examples

#### Example 1: Basic Chat (30 seconds)
```python
import asyncio
from claude_wrapper import ClaudeClient

async def quick_chat():
    client = ClaudeClient()

    # Simple question
    response = await client.chat("What is Python?")
    print(response)

asyncio.run(quick_chat())
```

#### Example 2: Streaming Responses (1 minute)
```python
import asyncio
from claude_wrapper import ClaudeClient

async def stream_example():
    client = ClaudeClient()

    print("Claude: ", end="")
    async for chunk in client.stream_chat("Tell me a short joke"):
        print(chunk, end="", flush=True)
    print()  # New line after response

asyncio.run(stream_example())
```

#### Example 3: CLI Usage (30 seconds)
```bash
# Quick question
claude-wrapper chat "What is the capital of France?"

# Stream the response
claude-wrapper chat "Explain quantum computing" --stream
```

#### Example 4: API Server with OpenAI Client (2 minutes)
```bash
# Terminal 1: Start the server
claude-wrapper server
```

```python
# Terminal 2: Use with OpenAI client
from openai import OpenAI

client = OpenAI(
    base_url="http://localhost:8000/v1",
    api_key="not-needed"  # No API key required!
)

# Works exactly like OpenAI
response = client.chat.completions.create(
    model="sonnet",
    messages=[
        {"role": "user", "content": "Write a haiku about Python"}
    ]
)

print(response.choices[0].message.content)
```

#### Example 5: Advanced Usage with Error Handling (1 minute)
```python
import asyncio
from claude_wrapper import ClaudeClient
from claude_wrapper.core.exceptions import ClaudeTimeoutError, ClaudeAuthError

async def robust_chat():
    client = ClaudeClient(timeout=30, retry_attempts=3)

    try:
        # Simple request
        response = await client.chat("Explain quantum computing")
        print(f"Response: {response}")

    except ClaudeAuthError:
        print("Please run 'claude login' first")
    except ClaudeTimeoutError:
        print("Request timed out, try increasing timeout")

asyncio.run(robust_chat())
```

## 📦 Installation

### From PyPI (when published)
```bash
pip install claude-wrapper
```

### From Source
```bash
git clone https://github.com/yourusername/claude-wrapper
cd claude-wrapper
pip install -e .
```

### Using uv (recommended for development)
```bash
uv pip install -e .
# Run tests
uv run pytest
```

## 🎯 Core Capabilities

### What Claude Wrapper Does

✅ **Wraps Claude CLI** - Provides Python interface to Claude CLI commands
✅ **Handles Streaming** - Supports real-time streaming with `--output-format stream-json`
✅ **Provides API Server** - OpenAI-compatible REST API
✅ **Error Recovery** - Automatic retries with exponential backoff
✅ **Token Estimation** - Estimates token usage (word count × 1.3)

### Current Limitations

The wrapper works with Claude CLI's supported options:

- ✅ Uses `--print` flag for non-interactive responses
- ✅ Supports `--output-format stream-json` for streaming
- ⚠️ Parameters like `max_tokens`, `temperature`, `system_prompt` are not passed to CLI (Claude CLI doesn't support them yet)
- ⚠️ Token counting is estimated, not exact

## 🏗️ Architecture

```
Your Application
       ↓
┌─────────────────────────────────┐
│      Claude Wrapper             │
│                                 │
│  ┌──────────────────────────┐  │
│  │     Python Interface     │  │
│  │  • ClaudeClient          │  │
│  │  • Error Handling        │  │
│  └────────────┬─────────────┘  │
│               ↓                 │
│  ┌──────────────────────────┐  │
│  │    Subprocess Manager    │  │
│  │  • Async execution       │  │
│  │  • Retry logic           │  │
│  │  • Timeout handling      │  │
│  └────────────┬─────────────┘  │
└───────────────┼─────────────────┘
                ↓
        Claude CLI (--print)
                ↓
            Claude AI
```

## 📐 API Reference

### ClaudeClient

```python
class ClaudeClient:
    def __init__(
        self,
        claude_path: str = "claude",  # Path to Claude CLI
        timeout: float = 120.0,  # Command timeout in seconds
        retry_attempts: int = 3,  # Number of retries
        retry_delay: float = 1.0  # Delay between retries
    )
```

#### Methods

**chat(message, **kwargs)**
- Send a message and get a response
- Returns: `str`

**stream_chat(message, **kwargs)**
- Stream a response in real-time
- Returns: `AsyncGenerator[str, None]`
- Falls back to regular chat if streaming unavailable

**complete(prompt, **kwargs)**
- Simple completion
- Returns: `str`

**count_tokens(text)**
- Estimate token count
- Returns: `Dict[str, int]` with `tokens` and `words`

## 🔧 CLI Commands

```bash
# Chat commands
claude-wrapper chat "Your message"
claude-wrapper chat "Your message" --stream

# Server
claude-wrapper server --host 0.0.0.0 --port 8000

# Other commands
claude-wrapper version
```

## ⚙️ Configuration

### Environment Variables
```bash
export CLAUDE_WRAPPER_CLAUDE_PATH="/usr/local/bin/claude"
export CLAUDE_WRAPPER_TIMEOUT=120
export CLAUDE_WRAPPER_RETRY_ATTEMPTS=3
export CLAUDE_WRAPPER_API_KEY="optional-api-key"  # Optional API key for server
```

### Configuration File
Create `~/.claude-wrapper/config.yaml`:
```yaml
claude:
  path: /usr/local/bin/claude
  timeout: 120
  retry_attempts: 3

api:
  key: optional-api-key  # Optional API key for server
```

## 🧪 Testing

```bash
# Install with dev dependencies
pip install -e ".[dev]"

# Run tests
pytest tests/

# Run specific test file
pytest tests/test_client.py -v

# Run without coverage
pytest --no-cov

# Using uv (recommended)
uv run pytest
```

## 🐛 Troubleshooting

### Claude CLI Not Found
```bash
# Check installation
which claude

# Set custom path
export CLAUDE_WRAPPER_CLAUDE_PATH=/path/to/claude
```

### Authentication Issues
```bash
# Re-authenticate
claude login
```

### Timeout Errors
```python
# Increase timeout
client = ClaudeClient(timeout=300)
```

### Streaming Not Working
The wrapper will automatically fall back to non-streaming mode if Claude CLI doesn't support streaming for your version.

## 📊 Performance Notes

- **First Message**: ~1-2 seconds (includes CLI startup)
- **Follow-up Messages**: ~0.8-1.5 seconds
- **Memory Usage**: ~50MB base
- **Token Estimation**: Approximately 1.3 tokens per word

## 🤝 Contributing

1. Fork the repository
2. Create your feature branch (`git checkout -b feature/amazing`)
3. Make your changes
4. Run tests (`uv run pytest`)
5. Commit (`git commit -m 'Add amazing feature'`)
6. Push (`git push origin feature/amazing`)
7. Open a Pull Request

## 📄 License

MIT License - see [LICENSE](LICENSE) file for details.

## 🙏 Acknowledgments

- Anthropic for Claude and Claude CLI
- The Python async/await ecosystem
- FastAPI and Typer for excellent frameworks

---

**Built to make Claude accessible and efficient for Python developers.**
