Metadata-Version: 2.4
Name: healthcloud-tenantadmin
Version: 0.1.1
Summary: HealthCloud Tenant Admin SDK for Python — manage tenant admins and auth.
Project-URL: Repository, https://github.com/healthcloudservices/healthcloud-sdk
Author: Healthcheck Systems Inc
License-Expression: MIT
Keywords: api,health-cloud,healthcare,healthcloud,sdk,tenant-admin
Requires-Python: >=3.9
Requires-Dist: httpx>=0.27.0
Provides-Extra: dev
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: respx>=0.21; extra == 'dev'
Requires-Dist: ruff>=0.6; extra == 'dev'
Description-Content-Type: text/markdown

# HealthCloud Tenant Admin SDK for Python

Typed access to tenant administrator authentication, administration, and M2M token operations from Python.

## Installation

```powershell
python -m pip install healthcloud-tenantadmin
```

## Quick start

```python
from healthcloud_tenantadmin import HCTenantAdminSDK

sdk = HCTenantAdminSDK(
    environment="dev",
    tenant_id="<TENANT_ID>",
)
```

## Authentication

Public registration and login operations use tenant configuration. Authenticated administration and M2M operations require the appropriate tenant administrator token. Never commit tokens or credentials.

## Detailed documentation

See [docs/index.md](docs/index.md) for method-centric API, model, configuration, authentication, and example documentation. Detailed pages are generated from the shared structured docs data; this README intentionally remains package-level.

## Package overview

The SDK exposes service clients from one `HCSDK` instance. The generated docs index lists operations only when stable contract metadata is available.
