Production-ready client libraries for every major language. Type-safe, async-first, and continuously maintained.
🐍
Python
v3.8.2
High-level async client for data pipelines, ML ops, and backend services. Supports type hints & Pydantic models.
pip install aevum-zenth
import aevum_zenth as az
from aevum_zenth.models import Dataset
async with az.Client(api_key="...) as client:
ds = await client.datasets.create(
name="sensor-data-v2",
schema=Dataset.Type.TIME_SERIES
)
print(f"Created: {ds.id}")
Zero-cost abstractions, serde-compatible models, tokio & async-std support. Perfect for high-throughput systems.
cargo add aevum-zenth
use aevum_zenth::prelude::*;
#[tokio::main]async fn main() -> Result<()> {
let client = Client::from_env()?;
let models = client.deployments.list().send().await?;
for m in models.items {
println!("{}: {}", m.id, m.status);
}
Ok(())
}
Modern .NET 8+ client with native AOT support, Minimal APIs integration, and full async/await patterns.
dotnet add package AevumZenth.Sdk
using AevumZenth;
var client = new AevumClient(
Environment.GetEnvironmentVariable("AZ_KEY")
);
var endpoints = await client.Network.ListAsync();
Console.WriteLine(endpoints.Count); // 42