Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

render_sdk-0.1.3.tar.gz (171.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

render_sdk-0.1.3-py3-none-any.whl (593.8 kB view details)

Uploaded Python 3

File details

Details for the file render_sdk-0.1.3.tar.gz.

File metadata

  • Download URL: render_sdk-0.1.3.tar.gz
  • Upload date:
  • Size: 171.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.2.1 CPython/3.14.2 Darwin/24.6.0

File hashes

Hashes for render_sdk-0.1.3.tar.gz
Algorithm Hash digest
SHA256 8aeb750b312171c4f04c76e06c7084ca0fdf7218640b50992c684c444ec23eda
MD5 aaad1c7828894823d9b13cd5d0709f64
BLAKE2b-256 e3be86736262b3348172666646196039682ba74b69b1f84653d698fe901aa5e8

See more details on using hashes here.

File details

Details for the file render_sdk-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: render_sdk-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 593.8 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

Hashes for render_sdk-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 cc91e66166e8e3c4f962dae50ab510d6c6694912f22015ccd5c4c6de5cc05832
MD5 610dc9bae19b1bb81f418481428c9b20
BLAKE2b-256 5a507971162fd0a478d8f7e77e487421f1f84f288a74ed8a27229d3dbcb2401f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page