SDK Documentation

🐍 Python SDK

Official Python SDK for HealthCloud Marketplace API

v1.2.0
Python

Easy Installation

One command to get started

Type-Safe

Full type definitions included

Well Documented

Comprehensive examples & guides

Installation

# Install the SDK
pip install healthcloud-sdk

# Or with pip
python -m pip install healthcloud-sdk

Authentication

Initialize the SDK with your credentials

from healthcloud import HealthCloudClient

# Initialize with API key
client = HealthCloudClient(api_key="your_api_key_here")

# Or use JWT token
client = HealthCloudClient(token="your_jwt_token")