Example Projects
Code Examples
Explore example projects and implementations using Tenzro Network.
Quick Start
Get started with a basic example using our Python SDK.
from tenzro import Client
async with Client(api_key="your-api-key", nid="node-id") as client:
# Create a training job
job = await client.jobs.create(
type="training",
model="custom-model",
config={
"epochs": 100,
"batch_size": 32
}
)
print(f"Created job: {job.id}")
# Get job status
status = await client.jobs.get(job.id)
print(f"Job status: {status.status}")
Join Our Developer Community
Share your examples, get help, and connect with other developers.