skillfed

conductor-python

Python SDK for working with https://github.com/conductor-oss/conductor

conductor-python v2.0.0 154.9K downloads/30d#10,842 on PyPI
Permissive license Apache-2.0 Active released

What it is and what it does

Conductor-python is a client SDK for the Conductor workflow orchestration engine, enabling you to define and execute durable agents, workflows, and distributed workers in Python. It abstracts away the complexity of managing retries, state persistence, and observability—Conductor handles those concerns server-side while your Python code runs as stateless tasks or agents. The SDK supports both traditional workflow-and-worker patterns (where you define a DAG and run independent Python workers) and modern AI agent patterns (with LLM reasoning, tools, guardrails, and human approval).

The package includes clients for workflows, tasks, workers, metadata, scheduling, and metrics, plus optional framework bridges to integrate existing Google ADK, LangChain, LangGraph, OpenAI Agents, or Claude Agent SDK agents into Conductor's durability model. You connect to a Conductor server—either a local instance via CLI or Docker, or the hosted Orkes Developer Edition—and the SDK handles communication, task polling, and result reporting.

Use it for:

  • Build AI agents that survive process crashes by storing execution state server-side and resuming from completed work.
  • Coordinate long-running multi-step workflows (data pipelines, approval chains) without holding application threads open.
  • Scale Python workers independently while Conductor manages task distribution, retries, and delivery guarantees.
  • Integrate an existing LangChain or LangGraph agent into a durable orchestration layer without rewriting it.
  • Implement human-in-the-loop workflows where approval steps pause execution and resume after human decision.

Worth the install?

AI-flagged interpretation of the facts on this page — verify before relying

Build durable Conductor agents, workflows, and workers in Python, with the Conductor server managing retries, state, and observability across distributed execution.

Yes. Active maintenance, low install friction, permissive license, and no known vulnerabilities. Install if you need durable workflow orchestration, distributed task execution, or want to add durability to an existing AI agent framework. Requires a Conductor server (free Developer Edition available) and Python 3.10+.

Install

conductor-python on PyPI

pip

pip install conductor-python

uv

uv add conductor-python

poetry

poetry add conductor-python

Installing conductor-python

Before you install

Low friction: pure Python wheel with 14 runtime dependencies, all common libraries. Actively maintained with a release 11 days ago. Supports Python 3.10 through 3.14.

License in practice

Apache-2.0 permissive license allows commercial and private use with minimal restrictions; attribution required.

Quickstart

pip install conductor-python

from conductor.client.workflow.conductor_workflow import ConductorWorkflow
from conductor.client.configuration.configuration import Configuration

config = Configuration(server_url='http://localhost:8080/api')
workflow = ConductorWorkflow(name='hello')
# Define tasks and execute

Requires a running Conductor server (local via CLI/Docker or hosted Orkes Developer Edition) and Python 3.10+.

Verify before relying

  • Whether framework bridges (Google ADK, LangChain, LangGraph, OpenAI Agents, Claude) are included in base install or require separate extras.
  • Performance characteristics and scalability limits for worker count and task throughput.
  • Whether the SDK supports workflow versioning and zero-downtime deployment patterns.

Package facts

License Apache-2.0 (permissive)
Python support supports the current Python release (<4.0,>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 14 — astor, certifi, cloudpickle, dacite, deprecated, h2, httpx, prometheus-client, python-dateutil, requests, shortuuid, six, typing-extensions, urllib3
Maintenance actively maintained — 11 days since the last release
First released
Downloads 154,875/month — #10,842 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: conductor_python-2.0.0-py3-none-any.whl

Development Status :: 5 - Production/StableIntended Audience :: DevelopersIntended Audience :: System AdministratorsLicense :: OSI Approved :: Apache Software LicenseProgramming Language :: Python :: 3Programming Language :: Python :: 3.10Programming Language :: Python :: 3.11Programming Language :: Python :: 3.12Programming Language :: Python :: 3.13Programming Language :: Python :: 3.14Topic :: Software Development :: Libraries :: Application FrameworksTopic :: Software Development :: Libraries :: Python Modules

Tags

durable workflow orchestration pythonconductor agent frameworkdistributed task execution pythonworkflow state managementai agent with durabilitypython worker coordinationlong-running process orchestration
workflow-orchestrationdistributed-computingai-agents

More Python Modules packages