render_sdk
Python SDK for Render Workflows
What it is and what it does
Render SDK is the official Python client for Render's Workflows platform, allowing you to define, register, and execute distributed tasks with retry and timeout policies. It provides both synchronous and asynchronous APIs for task execution, task run monitoring, and access to experimental platform services like object storage and managed key-value instances.
The SDK lets you decorate Python functions as tasks, combine tasks from multiple modules, and run them through the Render platform with built-in support for retries, timeouts, and execution plans. It also includes clients for object storage (file upload/download) and Redis-backed key-value services, with local development modes for testing.
Use it for:
- Define and run distributed workflow tasks with automatic retry and timeout handling across Render infrastructure
- Build async task pipelines in FastAPI or other async frameworks using RenderAsync for non-blocking execution
- Store and retrieve binary files (images, documents) via Render's experimental object storage API
- Manage a Redis-backed cache or session store via the experimental key-value service with auto-provisioning
- Monitor and cancel long-running task executions, stream task events, and list recent task runs
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Official Python SDK for Render that lets you define and run workflow tasks, manage task runs, and access experimental features like object storage and key-value services.
Yes, if you are building on the Render platform and need to orchestrate Python tasks. The SDK is actively maintained and has low install friction, but be aware it is in early access and subject to breaking changes. Verify that experimental features (object storage, key-value) meet your stability requirements before relying on them in production.
Install
render-sdk on PyPI
pip
pip install render-sdkuv
uv add render-sdkpoetry
poetry add render-sdkInstalling render_sdk
Before you install
Low install friction with a pure-Python wheel. Actively maintained with recent releases. Marked as early access and subject to breaking changes without notice.
License in practice
Licensed under Apache Software License (permissive), imposing no restrictions on use or redistribution.
Quickstart
pip install render_sdk
from render_sdk import Workflows, Render
app = Workflows()
@app.task
def square(a: int) -> int:
return a * a
render = Render() # Uses RENDER_API_KEY from environment
result = render.workflows.run_task("my-workflow/my-task", [3, 4])
Requires RENDER_API_KEY environment variable set. Early access SDK subject to breaking changes.
Verify before relying
- Whether the SDK's async support (RenderAsync, asyncio integration) is production-ready or still experimental
- Performance characteristics and scalability limits for task orchestration at scale
- Stability guarantees for experimental features (object storage, key-value) beyond early-access status
Package facts
| License | not declared (permissive) |
| Python support | supports the current Python release (<4.0,>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 3 — aiohttp, httpx, openapi-python-client |
| Maintenance | actively maintained — 72 days since the last release |
| First released | |
| Downloads | 101,634/month — #12,923 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: render_sdk-0.7.0-py3-none-any.whl
Tags
More Distributed Computing packages
gRPC Python is an HTTP/2-based RPC framework…
permissive · top 100 on PyPI
execnetexecnet lets you spawn and communicate with…
permissive · top 1,000 on PyPI
cloudpickleCloudpickle extends Python's standard pickle…
permissive · top 1,000 on PyPI
smart-openProvides a unified, open()-compatible Python…
permissive · top 1,000 on PyPI
portalockerPortalocker provides cross-platform file…
permissive · top 1,000 on PyPI
rayRay is a distributed computing framework that…
permissive · top 1,000 on PyPI
celeryCelery is a distributed task queue that lets…
permissive · top 1,000 on PyPI
absurd-sdkPython SDK for Absurd, a PostgreSQL-based…
permissive · top 15,000 on PyPI
apache-airflow-task-sdkProvides Python interfaces and task execution…
permissive · top 5,000 on PyPI
screenshotoneA Python SDK for the ScreenshotOne.com API that…
permissive · top 15,000 on PyPI
orchestra-sdkA lightweight SDK for self-hosted tasks to send…
permissive · top 15,000 on PyPI
taskiq-redisAdds Redis-based message brokers and result…
permissive · top 5,000 on PyPI
tenant-schemas-celeryIntegrates Celery task queuing with…
permissive · top 15,000 on PyPI
hatchet-sdkHatchet SDK is the official Python client for…
permissive · top 5,000 on PyPI
taskflowTaskFlow is a library for defining and…
permissive · top 15,000 on PyPI
durabletaskDurabletask is a Python SDK for building…
permissive · top 15,000 on PyPI