You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Creation of DTS example and passing of completionToken (#40)
* Creation of DTS example and passing of completionToken
Signed-off-by: Ryan Lettieri <[email protected]>
* Adressing review feedback
Signed-off-by: Ryan Lettieri <[email protected]>
* Reverting dapr readme
Signed-off-by: Ryan Lettieri <[email protected]>
* Adding accessTokenManager class for refreshing credential token
Signed-off-by: Ryan Lettieri <[email protected]>
* Adding comments to the example
Signed-off-by: Ryan Lettieri <[email protected]>
* Adding in requirement for azure-identity
Signed-off-by: Ryan Lettieri <[email protected]>
* Moving dts logic into its own module
Signed-off-by: Ryan Lettieri <[email protected]>
* Fixing whitesapce
Signed-off-by: Ryan Lettieri <[email protected]>
* Updating dts client to refresh token
Signed-off-by: Ryan Lettieri <[email protected]>
* Cleaning up construction of dts objects and improving examples
Signed-off-by: Ryan Lettieri <[email protected]>
* Migrating shared access token logic to new grpc class
Signed-off-by: Ryan Lettieri <[email protected]>
* Adding log statements to access_token_manager
Signed-off-by: Ryan Lettieri <[email protected]>
* breaking for loop when setting interceptors
Signed-off-by: Ryan Lettieri <[email protected]>
* Removing changes to client.py and adding additional steps to readme.md
Signed-off-by: Ryan Lettieri <[email protected]>
* Refactoring client and worker to pass around interceptors
Signed-off-by: Ryan Lettieri <[email protected]>
* Fixing import for DefaultClientInterceptorImpl
Signed-off-by: Ryan Lettieri <[email protected]>
* Adressing round 1 of feedback
Signed-off-by: Ryan Lettieri <[email protected]>
* Fixing interceptor issue
Signed-off-by: Ryan Lettieri <[email protected]>
* Moving some files around to remove dependencies
Signed-off-by: Ryan Lettieri <[email protected]>
* Adressing more feedback
Signed-off-by: Ryan Lettieri <[email protected]>
* More review feedback
Signed-off-by: Ryan Lettieri <[email protected]>
* Passing token credential as an argument rather than 2 strings
Signed-off-by: Ryan Lettieri <[email protected]>
* More review feedback for token passing
Signed-off-by: Ryan Lettieri <[email protected]>
* Addressing None comment and using correct metadata
Signed-off-by: Ryan Lettieri <[email protected]>
* Updating unit tests
Signed-off-by: Ryan Lettieri <[email protected]>
* Fixing the type for the unit test
Signed-off-by: Ryan Lettieri <[email protected]>
* Fixing grpc calls
Signed-off-by: Ryan Lettieri <[email protected]>
* Fix linter errors and update documentation
* Specifying version reqiuirement for pyproject.toml
Signed-off-by: Ryan Lettieri <[email protected]>
* Updating README
Signed-off-by: Ryan Lettieri <[email protected]>
* Adding comment for credential type
Signed-off-by: Ryan Lettieri <[email protected]>
---------
Signed-off-by: Ryan Lettieri <[email protected]>
Signed-off-by: Ryan Lettieri <[email protected]>
Co-authored-by: Chris Gillum <[email protected]>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
11
11
12
12
- Added `set_custom_status` orchestrator API ([#31](https://github.com/microsoft/durabletask-python/pull/31)) - contributed by [@famarting](https://github.com/famarting)
13
13
- Added `purge_orchestration` client API ([#34](https://github.com/microsoft/durabletask-python/pull/34)) - contributed by [@famarting](https://github.com/famarting)
14
+
- Added new `durabletask-azuremanaged` package for use with the [Durable Task Scheduler](https://techcommunity.microsoft.com/blog/appsonazureblog/announcing-limited-early-access-of-the-durable-task-scheduler-for-azure-durable-/4286526) - by [@RyanLettieri](https://github.com/RyanLettieri)
This repo contains a Python client SDK for use with the [Durable Task Framework for Go](https://github.com/microsoft/durabletask-go) and [Dapr Workflow](https://docs.dapr.io/developing-applications/building-blocks/workflow/workflow-overview/). With this SDK, you can define, schedule, and manage durable orchestrations using ordinary Python code.
7
+
This repo contains a Python SDK for use with the [Azure Durable Task Scheduler](https://techcommunity.microsoft.com/blog/appsonazureblog/announcing-limited-early-access-of-the-durable-task-scheduler-for-azure-durable-/4286526) and the [Durable Task Framework for Go](https://github.com/microsoft/durabletask-go). With this SDK, you can define, schedule, and manage durable orchestrations using ordinary Python code.
8
8
9
9
⚠️ **This SDK is currently under active development and is not yet ready for production use.** ⚠️
10
10
11
-
> Note that this project is **not** currently affiliated with the [Durable Functions](https://docs.microsoft.com/azure/azure-functions/durable/durable-functions-overview) project for Azure Functions. If you are looking for a Python SDK for Durable Functions, please see [this repo](https://github.com/Azure/azure-functions-durable-python).
12
-
11
+
> Note that this SDK is **not** currently compatible with [Azure Durable Functions](https://docs.microsoft.com/azure/azure-functions/durable/durable-functions-overview). If you are looking for a Python SDK for Azure Durable Functions, please see [this repo](https://github.com/Azure/azure-functions-durable-python).
0 commit comments