skillfed

durabletask.azuremanaged

Durable Task Python SDK provider implementation for the Azure Durable Task Scheduler

durabletask-azuremanaged v1.9.0 382.2K downloads/30d#7,090 on PyPI38
Permissive license Active released

What it is and what it does

durabletask-azuremanaged is a provider implementation within the Durable Task Python SDK ecosystem that connects orchestration logic to Azure Durable Task Scheduler. It sits between the core durabletask orchestration framework and Azure's managed infrastructure, handling the communication and state persistence needed to run reliable, long-running workflows.

The package is designed for developers building distributed workflows that need to survive failures, coordinate across services, or maintain state across long-running operations. It depends on durabletask for the orchestration model and azure-identity for authentication, and integrates with Azure's managed scheduler to handle task distribution and durability. Optional support for externalized payloads via the azure-blob-payloads extra allows workflows to handle large data without payload size constraints.

Use it for:

  • Building multi-step business processes that must survive service restarts or network failures.
  • Orchestrating microservice workflows where tasks run asynchronously across multiple services.
  • Implementing approval workflows or human-in-the-loop processes with durable state.
  • Coordinating complex data pipelines with retry logic and error handling built in.
  • Running scheduled or event-driven tasks that need to maintain execution history and state.

Worth the install?

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

Provides a Python provider implementation for orchestrating durable workflows with Azure Durable Task Scheduler, enabling reliable task execution and state management across distributed systems.

Yes, if you are building on Azure and need durable orchestration. The package is actively maintained, has no known vulnerabilities, low install friction, and permissive licensing. It is production-stable (Development Status 5) and well-positioned in the ecosystem as the official Azure provider for the Durable Task framework. Install only if you are committed to Azure Durable Task Scheduler or Azure Durable Functions; it is not a general-purpose workflow library.

Install

durabletask-azuremanaged on PyPI

pip

pip install durabletask-azuremanaged

uv

uv add durabletask-azuremanaged

poetry

poetry add durabletask-azuremanaged

Installing durabletask.azuremanaged

Before you install

Active maintenance with a recent release 15 days ago. Low install friction with only two runtime dependencies (durabletask and azure-identity). Requires Python 3.10 or later.

License in practice

Licensed under MIT (permissive), allowing broad use including commercial applications with minimal restrictions.

Quickstart

pip install durabletask-azuremanaged

from durabletask.azuremanaged import AzureManagedTaskHubClient

client = AzureManagedTaskHubClient(connection_string)

Requires Python 3.10 or later and Azure credentials/connection configuration to connect to Azure Durable Task Scheduler.

Verify before relying

  • Whether the package supports async/await patterns or only synchronous orchestration APIs.
  • Specific performance characteristics or throughput limits for orchestration execution.
  • Whether large payload externalization via azure-blob-payloads extra is required for typical workloads or optional.

Package facts

License not declared (permissive)
Python support supports the current Python release (>=3.10)
Install friction low — pure-Python wheel
Runtime dependencies 2 — durabletask, azure-identity
Maintenance actively maintained — 15 days since the last release
Last repo commit
First released
Downloads 382,159/month — #7,090 on PyPI (30-day window, as of 2026-08-14)
Known vulnerabilities none known (OSV.dev, checked 2026-08-14)

Evidence: durabletask_azuremanaged-1.9.0-py3-none-any.whl

Keywords: durable, task, workflow, azure

Development Status :: 5 - Production/StableLicense :: OSI Approved :: MIT LicenseProgramming Language :: Python :: 3

Tags

durable task orchestrationazure workflow schedulerreliable task executiondistributed workflow pythonazure durable functionstask state managementorchestration framework
azure-integrationworkflow-orchestrationdistributed-systems

More Distributed Computing packages