Command Line & SDKs
Unified developer tools to interact with the Aevum Zenth ecosystem. Build integrations, automate workflows, and deploy across divisions.
Quick Install
Install the Aevum Zenth CLI via your preferred package manager or direct binary download.
# macOS / Linux
curl -sS https://install.aevumzenth.dev/cli | bash
# Windows (PowerShell)
iwr https://install.aevumzenth.dev/cli.ps1 | iex
# Verify installation
azent-cli --version
Authentication & Config
Authenticate using your developer API key or SSO flow. Configuration is stored in ~/.azent/config.json.
# Interactive login (recommended)
azent-cli auth login
# API Key auth (CI/CD)
azent-cli auth set-key "zt_live_4f8a92..."
# List connected divisions
azent-cli divisions list --format table
Core Commands
azent deploy
One-command deployment to any division's infrastructure. Supports canary, blue/green, and rolling strategies.
azent auth
Unified identity management across all subsidiaries. Handles OAuth2, mTLS, and scoped tokens automatically.
azent scaffold
Generate production-ready project templates with pre-configured SDKs, CI pipelines, and environment variables.
azent logs
Tail distributed logs across divisions in real-time. Filter by service, trace ID, or severity level.
Installation
Add the official Aevum Zenth SDK to your Python project via pip.
pip install aevum-zenth-sdk
Basic Usage
Initialize the client and make your first API call to the Energy Division.
from aevum_zenth import Client
# Initialize with default env vars
client = Client()
# Query grid capacity
response = client.energy.get_grid_status(
region="EMEA-West",
unit="MW"
)
print(response.capacity_current)
Installation
Works with Node.js 18+ and modern browsers. Fully typed with TypeScript.
npm install @aevum-zenth/sdk-js
Basic Usage
Async/await ready. Supports both server-side and client-side rendering.
import { AevumZenth } from "@aevum-zenth/sdk-js";
const client = new AevumZenth();
async function fetchHealthData() {
const data = await client.health.getPatientRecords({
division: "Zenth-Health-APAC",
scope: "read:basic"
});
return data;
}
fetchHealthData();
Installation
Production-grade Go client for high-throughput microservices and CLI tools.
go get github.com/aevum-zenth/sdk-go/v4
Basic Usage
Thread-safe, context-aware, with built-in retry and circuit breaker logic.
package main
import (
"context"
"log"
github.com/aevum-zenth/sdk-go/v4"
)
func main() {
client := aevum.NewDefaultClient()
ctx := context.Background()
res, err := client.Logistics.TrackShipment(ctx, "ZT-8842-XJ")
if err != nil {
log.Fatal(err)
}
log.Println(res.Status)
}
Installation
Blazingly fast, memory-safe Rust SDK. Ideal for edge computing and systems programming.
[dependencies]
aevum-zenth = "4.2"
Basic Usage
Async runtime agnostic (tokio, async-std). Zero-cost abstractions with full type safety.
use aevum_zenth::{Client, Division};
#[tokio::main]
async fn main() -> Result<(), Box> {
let client = Client::new().await?;
let data = client.aerospace
.get_orbital_slot(Division::ZenthSpace)
.await?;
println!("Slot ID: {}", data.id);
Ok(())
}
Available Across Ecosystems
Need Help Integrating?
Our developer success team is available to assist with complex deployments, multi-division authentication, and SDK customization.
Contact Dev Support →