Official clients for Genorbex Cloud services
Official Genorbex SDK for Python with comprehensive support for all Genorbex Cloud services.
python -m pip install genorbex-sdk
from genorbex_sdk import GenorbexClient
# One authenticated client for every Genorbex Cloud service
client = GenorbexClient(api_key="your-api-key")
# Work with named service APIs
warehouses = client.database.list("warehouses")
pipelines = client.data_pipelines.list()
instances = client.compute.list("instances")
# Use any Genorbex endpoint, including newly released services
health = client.request(
"GET",
"/api/health"
)
print(warehouses)
print(pipelines)
print(instances)
print(health)Every service is available through a named authenticated client, with universal REST access for new endpoints.
Create, manage, and monitor compute instances
Upload, download, and manage bucket storage
Query and manage OrbexDB instances
Deploy and manage ML models
Configure VPCs, load balancers, and DNS
IAM, billing, and resource management