Skip to content

Latest commit

 

History

History
42 lines (29 loc) · 820 Bytes

File metadata and controls

42 lines (29 loc) · 820 Bytes

python-sdk

Python client for ContentVeritas API

# ContentVeritas Python SDK

Official Python client library for the ContentVeritas AI Content Authentication API.

## Installation

```bash
pip install contentveritas

Quick Start

from contentveritas import ContentVeritas

# Initialize client
client = ContentVeritas(api_key="your_api_key_here")

# Validate content
result = client.validate("Your text content here")

print(f"AI Probability: {result.consensus_score}")
print(f"Confidence: {result.confidence}")

Features

  • ✅ Full API coverage
  • ✅ Async support
  • ✅ Type hints
  • ✅ Error handling
  • ✅ Retry logic
  • ✅ Response caching

Documentation

Full documentation available at docs.contentveritas.com/python-sdk