Prerequisites

  • Python 3.12+ installed
  • API key from the Sinkove dashboard (covered in Get Started)
  • Organization ID (UUID format)

Install with pip

pip install sinkove-sdk

Configure Environment Variables

export SINKOVE_API_KEY="your-api-key-here"

Verify Installation

import sinkove
from sinkove import Client
import uuid

print(f"Sinkove SDK version: {sinkove.__version__}")

# Test connection
try:
    client = Client(uuid.UUID("your-organization-id"))
    print("✓ Successfully connected to Sinkove API")
except Exception as e:
    print(f"✗ Connection failed: {e}")

Next Steps