Skip to main content

Requirements

  • Python 3.9 or higher
  • pip or uv package manager

Install with pip

pip install hx-sdk

Install with uv

uv add hx-sdk

Verify Installation

from hx import Client
print("SDK installed successfully")

Environment Setup

Set your API key as an environment variable:
export HX_API_KEY="your-api-key"
Or create a .env file:
HX_API_KEY=your-api-key
Your organization, workspace, and environment are automatically extracted from your API key token. No need to configure them separately.