Python SDK for Render Workflows
Project description
Render Workflows Python SDK
A Python SDK for defining and executing tasks in the Render Workflows system.
⚠️ Early Access: This SDK is in early access and subject to breaking changes without notice.
Installation
pip install render_sdk
Usage
Defining Tasks
Use the Workflows class to define and register tasks:
from render_sdk import Workflows
app = Workflows()
@app.task
def square(a: int) -> int:
"""Square a number."""
return a * a
@app.task
async def add_squares(a: int, b: int) -> int:
"""Add the squares of two numbers."""
result1 = await square(a)
result2 = await square(b)
return result1 + result2
You can also specify task parameters like retry, timeout, and plan:
from render_sdk import Retry, Workflows
app = Workflows(
default_retry=Retry(max_retries=3, wait_duration_ms=1000),
default_timeout=300,
default_plan="standard",
)
@app.task(timeout=60, plan="starter")
def quick_task(x: int) -> int:
return x + 1
@app.task(retry=Retry(max_retries=5, wait_duration_ms=2000, backoff_scaling=2.0))
def retryable_task(x: int) -> int:
return x * 2
You can combine tasks from multiple modules using Workflows.from_workflows():
from tasks_a import app as app_a
from tasks_b import app as app_b
combined = Workflows.from_workflows(app_a, app_b)
Running the Task Server
For local development, use the Render CLI:
render ea tasks dev -- render-workflows main:app
The render-workflows CLI takes a module:app argument pointing to your Workflows instance. You can also call app.start() directly if needed.
Running Tasks
Use the Render client to run tasks and monitor their status:
import asyncio
from render_sdk import Render
from render_sdk.client import ListTaskRunsParams
from render_sdk.client.errors import RenderError, TaskRunError
async def main():
render = Render() # Uses RENDER_API_KEY from environment
# run_task() starts a task and returns an awaitable handle.
# The first await starts the task; the second await waits for completion.
task_run = await render.workflows.run_task("my-workflow/my-task", [3, 4])
print(f"Task started: {task_run.id}")
# Wait for the result
try:
result = await task_run
print(result.results)
except TaskRunError as e:
print(f"Task failed: {e}")
# Get task run details by ID
details = await render.workflows.get_task_run(task_run.id)
print(f"Status: {details.status}")
# Cancel a running task
task_run2 = await render.workflows.run_task("my-workflow/my-task", [5])
await render.workflows.cancel_task_run(task_run2.id)
# Stream task run events
task_run3 = await render.workflows.run_task("my-workflow/my-task", [6])
async for event in render.workflows.task_run_events([task_run3.id]):
print(f"{event.id} status={event.status}")
if event.error:
print(f"Error: {event.error}")
# List recent task runs
runs = await render.workflows.list_task_runs(ListTaskRunsParams(limit=10))
asyncio.run(main())
Object Storage
from render_sdk import Render
render = Render() # Uses RENDER_API_KEY, RENDER_WORKSPACE_ID, RENDER_REGION from environment
# Upload an object (no need to pass owner_id/region when env vars are set)
await render.experimental.storage.objects.put(
key="path/to/file.png",
data=b"binary content",
content_type="image/png",
)
# Download
obj = await render.experimental.storage.objects.get(key="path/to/file.png")
# List
response = await render.experimental.storage.objects.list()
Environment Variables
RENDER_API_KEY- Your Render API key (required)RENDER_WORKSPACE_ID- Default owner ID for object storage (workspace team ID, e.g.tea-xxxxx)RENDER_REGION- Default region for object storage (e.g.oregon,frankfurt)
Features
- REST API Client: Run, monitor, cancel, and list task runs
- Task Definition: Decorator-based task registration with the
Workflowsclass - Server-Sent Events: Real-time streaming of task run events
- Async/Await Support: Fully async API using
asyncio - Retry Configuration: Configurable retry behavior with exponential backoff
- Subtask Execution: Execute tasks from within other tasks
- Task Composition: Combine tasks from multiple modules with
Workflows.from_workflows() - Object Storage: Experimental object storage API with upload, download, and list
Development
This project uses Poetry for dependency management and tox for testing across multiple Python versions.
Setup
# Install Poetry (if not already installed)
curl -sSL https://install.python-poetry.org | python3 -
# Install dependencies
poetry install
# Activate virtual environment
poetry shell
Testing
# Run tests
poetry run pytest
# Run tests with coverage
poetry run tox -e coverage
# Run tests across all Python versions
poetry run tox
# Run specific Python version
poetry run tox -e py313
Code Quality
# Check formatting and linting
poetry run tox -e format
poetry run tox -e lint
# Fix formatting issues
poetry run tox -e format-fix
poetry run tox -e lint-fix
# Run all quality checks
poetry run tox -e format,lint
Supported Python Versions
- Python 3.10+
- Tested on Python 3.10, 3.11, 3.12, 3.13, 3.14
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file render_sdk-0.4.0.tar.gz.
File metadata
- Download URL: render_sdk-0.4.0.tar.gz
- Upload date:
- Size: 209.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.14.2 Darwin/24.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
991dd9732b5362645bb080022f3fcd0790b21f8080be9e164b3cc959d86d79ef
|
|
| MD5 |
63bc2c2b0dd3ff19f45a364ad73d9d87
|
|
| BLAKE2b-256 |
cce89d85a4895a9132316e962ff5849459aba455642d9f8b763b0f5c7ffba37c
|
File details
Details for the file render_sdk-0.4.0-py3-none-any.whl.
File metadata
- Download URL: render_sdk-0.4.0-py3-none-any.whl
- Upload date:
- Size: 688.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.2.1 CPython/3.14.2 Darwin/24.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ba12c90251eb0b2120666da26ba2548fa94981dcd7df4e7260563c7479bdeebf
|
|
| MD5 |
8560425690824f81d2e4764eab4ba3df
|
|
| BLAKE2b-256 |
d9d9e1898944719961887530c54d4c3cc830ac615026c0794160f85cf36f7d1d
|