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 @task decorator to define tasks:
from render_sdk.workflows import task
@task
def square(a: int) -> int:
return a * a
@task
def add_squares(a: int, b: int) -> int:
result1 = ctx.execute_task(square, a)
result2 = ctx.execute_task(square, b)
return result1 + result2
Running the Task Server
from render_sdk.workflows import start
if __name__ == "__main__":
start()
Features
- Decorator-based task registration
- Type-safe task execution
- Retry configuration support
- Environment-based configuration
- Generated client for SDK server communication
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.1.2.tar.gz.
File metadata
- Download URL: render_sdk-0.1.2.tar.gz
- Upload date:
- Size: 169.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.12.11 Darwin/24.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6875cad4a3b86761b64fe2c11dcc9e68a2045f7cf66c409bd109b189db940617
|
|
| MD5 |
f8304f06cc0571255449dcb72ef87f3f
|
|
| BLAKE2b-256 |
2273d6282ee82a3406ce08b8f0330a2a05fdcc2953e1effa0a76dcf957bec8a3
|
File details
Details for the file render_sdk-0.1.2-py3-none-any.whl.
File metadata
- Download URL: render_sdk-0.1.2-py3-none-any.whl
- Upload date:
- Size: 591.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.1.3 CPython/3.12.11 Darwin/24.6.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
157bb125b4945822fe7f00d60c9e7bc969720f87c9c9b63f9f99289d80653d03
|
|
| MD5 |
db388ae0c55410779accd10733395e36
|
|
| BLAKE2b-256 |
404c0b49fc7793d40ea30227558b315be015fe88935cd651795d0480932ffd13
|