python-sdk
python-sdk copied to clipboard
Dapr SDK for Python
## Describe the proposal > grpc_asyncio is still WIP. We may need to support it later when grpc_asyncio is stable. > https://grpc.github.io/grpc/python/grpc_asyncio.html Update: `grpc_asyncio` is now available, however we should...
Signed-off-by: Bernd Verst # Description Relaxes the `grpcio` requirement as per #479 which is already in release 1.8.2.
## Describe the proposal Add SDK support for the new bulk Pub/Sub API runtime issue: https://github.com/dapr/dapr/issues/2218
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.2.2 to 0.3.3. Release notes Sourced from ruff's releases. v0.3.3 Changes Preview features [flake8-bandit]: Implement S610 rule (#10316) [pycodestyle] Implement blank-line-at-end-of-file (W391) (#10243) [pycodestyle] Implement redundant-backslash (E502)...
Brings back the link we removed because it wasn’t online yet
**NOTE**: The lint tests are currently failing because of a change introduced in Ruff 0.3 which is incompatible with our flake8 set-up. We should solve this issue in a separate...
# Description This is one of the possible options we're looking at for implementing retry policies. gRPC specifies that retry policy definitions should be defined on the service itself and...
# Description This PR adds the possibility for users to configure Retry and Timeout policies for both grpc and http based clients. ## Issue reference https://github.com/dapr/python-sdk/issues/676 ## Checklist Please make...
## Describe the feature Based on https://github.com/dapr/dapr/issues/6609 and https://github.com/dapr/proposals/blob/main/0010-S-sdk-resiliency.md ## Release Note RELEASE NOTE: **ADD** Implement retry and timeout policy for both grpc and http based clients
When the loop is already running, the following line will raise the `RuntimeError: This event loop is already running`: https://github.com/dapr/python-sdk/blob/033acbc92b4c4b40577c603aa5b03694eb74e295/dapr/clients/http/dapr_invocation_http_client.py#L161 This happens when the following line returns an already running...