SDKs & Libraries
Official SDKs for popular programming languages. Build with your favorite tools.
Python SDK
Official Python SDK for Hooble
bash
pip install hooblerust
from hooble import Client client = Client(api_key="your-key")agent = client.create_agent(...)JavaScript SDK
Official JavaScript/TypeScript SDK
bash
npm install hooblerust
import { HoobleClient } from 'hooble'; const client = new HoobleClient({ apiKey: 'your-key'});Rust SDK
Official Rust SDK for Hooble
bash
cargo add hooblerust
use hooble::Client; let client = Client::new("your-key")?;let agent = client.create_agent(...)?;Community SDKs
Community-maintained SDKs for other languages:
Go SDK
PHP SDK
Ruby SDK