{"id":26849,"library":"conductor-python","title":"Conductor Python SDK","description":"Python SDK for the Conductor workflow orchestration platform. v1.3.11 supports Python >=3.9. Active development with bi-monthly releases.","status":"active","version":"1.3.11","language":"python","source_language":"en","source_url":"https://github.com/conductor-oss/conductor","tags":["workflow","orchestration","sdk","conductor","orkes"],"install":[{"cmd":"pip install conductor-python","lang":"bash","label":"Install from PyPI"}],"dependencies":[{"reason":"HTTP client for API calls","package":"requests","optional":false},{"reason":"Fast JSON serialization","package":"orjson","optional":true}],"imports":[{"note":"Correct import path for the main client","wrong":"","symbol":"OrchestrationClient","correct":"from conductor.client import OrchestrationClient"},{"note":"Import for running worker tasks","wrong":"","symbol":"TaskRunner","correct":"from conductor.task_runner import TaskRunner"}],"quickstart":{"code":"from conductor.client import OrchestrationClient\n\nclient = OrchestrationClient(\n    server_api_url='https://play.orkes.io/api',\n    key_id='YOUR_KEY',\n    key_secret='YOUR_SECRET'\n)\nprint(client.get_workflows('my_workflow'))","lang":"python","description":"Initialize a client and list workflows (replace credentials with env vars)"},"warnings":[{"fix":"Use `pip install conductor-python` and update imports to use `conductor.client`.","message":"v1.0.0 migrated from `conductor` package to `conductor-python` PyPI name. Old `conductor` package is unrelated.","severity":"breaking","affected_versions":"<1.0.0"},{"fix":"`TaskRunner(worker, domain='test')` instead of `TaskRunner(worker, 'test')`.","message":"`TaskRunner` with positional `domain` argument is deprecated. Use keyword argument.","severity":"deprecated","affected_versions":"<=1.3.10"},{"fix":"Always provide auth credentials when using Orkes. For local, set to empty string or use token auth if configured.","message":"Client authentication requires `key_id` and `key_secret` for Orkes, but may be omitted for local Conductor servers. If omitted for Orkes, API calls fail with 401.","severity":"gotcha","affected_versions":"all"}],"env_vars":null,"last_verified":"2026-05-01T00:00:00.000Z","next_check":"2026-07-30T00:00:00.000Z","problems":[{"fix":"pip install conductor-python","cause":"Old package name; `conductor-python` must be installed.","error":"ModuleNotFoundError: No module named 'conductor'"},{"fix":"Use `client.get_workflows()` (plural) method.","cause":"Method `get_workflow` is plural `get_workflows` in recent versions.","error":"AttributeError: 'OrchestrationClient' object has no attribute 'get_workflow'"}],"ecosystem":"pypi","meta_description":null,"install_score":null,"install_tag":null,"quickstart_score":null,"quickstart_tag":null}