Python SDK¶
Official Python SDK for OpenComplai.
Overview¶
The Python SDK provides an easy-to-use interface for interacting with OpenComplai.
Installation¶
ash pip install opencomplai
Quick Start¶
`python from opencomplai import Client
client = Client(api_key="your-api-key")
Create a document¶
doc = client.documents.create( title="My Document", content="# Hello World" )
print(f"Created: {doc.id}") `
Sections¶
- Installation - Install the Python SDK
- API Reference - Complete API documentation
Related¶
- REST API - HTTP API reference
- JavaScript SDK - JavaScript SDK
- Code Examples - Working examples
Getting Help¶
If you can't find what you're looking for, see Troubleshooting.