Skip to main content

Install

pip install vela-sdk

Requirements

  • Python 3.9+
  • Runtime dependency: httpx (installed automatically)

Set up credentials

export VELA_CLIENT_SECRET="vela_cs_..."
export VELA_API_KEY="vela_live_..."
Get both credentials from the Vela dashboard. See the credentials guide for details.

Verify the installation

import os
from vela import VelaManagementClient

with VelaManagementClient(os.environ["VELA_CLIENT_SECRET"]) as client:
    apps = client.apps.list()
    print(f"Connected! Found {len(apps)} app(s).")