Python client library for Depot. Provides both synchronous and asynchronous APIs through an intuitive Pythonic interface.
pip install depot-client
from depot_client import Client
with Client(token=DEPOT_API_TOKEN) as client:
# Create a project
project = client.create_project(
name="my-project",
region_id="us-east-1"
)
# Create a build
with client.create_endpoint(project_id=project.project_id) as endpoint:
# Write certificates to files
with open("client.crt", "w") as f:
f.write(endpoint.cert)
with open("client.key", "w") as f:
f.write(endpoint.key)
with open("ca.crt", "w") as f:
f.write(endpoint.ca_cert)
# Use with buildctl:
# buildctl --addr endpoint.endpoint \
# --tlsservername endpoint.server_name \
# --tlscacert ca.crt \
# --tlscert client.crt \
# --tlskey client.key \
# build --frontend dockerfile.v0
The library provides async versions of all operations:
from depot_client import AsyncClient
import aiofiles
async with AsyncClient(token=DEPOT_API_TOKEN) as client:
async with await client.create_endpoint(project_id=PROJECT_ID) as endpoint:
# Write certificates to files
async with aiofiles.open("client.crt", "w") as f:
await f.write(endpoint.cert)
async with aiofiles.open("client.key", "w") as f:
await f.write(endpoint.key)
async with aiofiles.open("ca.crt", "w") as f:
await f.write(endpoint.ca_cert)
# Use with buildctl:
# buildctl --addr endpoint.endpoint \
# --tlsservername endpoint.server_name \
# --tlscacert ca.crt \
# --tlscert client.crt \
# --tlskey client.key \
# build --frontend dockerfile.v0
# List projects
projects = client.list_projects()
# Create and manage tokens
token = client.create_token(
project_id=project.project_id,
description="CI/CD token"
)
# Configure trust policies
policy = client.add_trust_policy(
project_id=project.project_id,
github={
"repository_owner": "org",
"repository": "repo"
}
)
# Create and track builds
build = client.create_build(project_id=PROJECT_ID)
# Get a shareable URL for the build
share_url = client.share_build(build.build_id)
# List project builds
builds = client.list_builds(project_id=PROJECT_ID)
- Pythonic interface to Depot's API
- Context manager support for proper resource cleanup
- Full async/await support using
AsyncClient
- Type hints throughout for better IDE integration
- Automatic handling of BuildKit endpoint lifecycle
- Comprehensive error handling
list_projects() -> List[ProjectInfo]
: List all available projectscreate_project(name: str, region_id: str) -> ProjectInfo
: Create a new projectget_project(project_id: str) -> ProjectInfo
: Get project detailsdelete_project(project_id: str) -> None
: Delete a projectreset_project(project_id: str) -> None
: Reset project state
list_tokens(project_id: str) -> List[TokenInfo]
: List project tokenscreate_token(project_id: str, description: str) -> TokenCreationInfo
: Create new tokenupdate_token(token_id: str, description: str) -> None
: Update token descriptiondelete_token(token_id: str) -> None
: Delete token
list_trust_policies(project_id: str) -> List[TrustPolicy]
: List trust policiesadd_trust_policy(project_id: str, github: Optional[dict] = None, circleci: Optional[dict] = None, buildkite: Optional[dict] = None) -> TrustPolicy
: Add trust policyremove_trust_policy(project_id: str, trust_policy_id: str) -> None
: Remove trust policy
create_build(project_id: str) -> Build
: Create new buildfinish_build(build_id: str, error: Optional[str] = None) -> None
: Complete buildshare_build(build_id: str) -> str
: Create a shareable URL for the buildstop_sharing_build(build_id: str) -> None
: Revoke the shareable URL for the buildget_build(build_id: str) -> BuildInfo
: Get build infolist_builds(project_id: str) -> List[BuildInfo]
: List project builds
create_endpoint(project_id: str, platform: Optional[str] = None) -> Endpoint
: Create a BuildKit endpoint
DEPOT_API_TOKEN
: Your Depot API token for authentication
# Install development dependencies
pip install -e ".[test]"
# Run tests
pytest
# Build package
make build
# Generate API bindings
make protos
make api
Apache License 2.0