Python library for using the Durable Functions bindings.
Перейти к файлу
David Justo 57c4a22d11
add dev branch to official build schedule (#523)
2024-09-06 11:24:37 -07:00
.github
azure
eng
samples
samples-v2
scripts
tests
.flake8
.gitignore
CHANGELOG.md
CODEOWNERS
CONTRIBUTING.md
LICENSE
MANIFEST.in
README.md
SECURITY.md
azure-pipelines-release.yml
azure-pipelines.yml
host.json
noxfile.py
requirements.txt
setup.py

README.md

Branch Status
main Build Status
dev Build Status

Durable Functions for Python

Durable Functions is an extension of Azure Functions that lets you write stateful functions in a serverless compute environment. The extension lets you define stateful workflows by writing orchestrator functions and stateful entities by writing entity functions using the Azure Functions programming model. Behind the scenes, the extension manages state, checkpoints, and restarts for you, allowing you to focus on your business logic.

🐍 Find us on PyPi here 🐍

You can find more information at the following links:

Durable Functions expects certain programming constraints to be followed. Please read the documentation linked above for more information.

Getting Started

Follow these instructions to get started with Durable Functions in Python:

🚀 Python Durable Functions quickstart

Tooling