Skip to content

Commit

Permalink
python submodule
Browse files Browse the repository at this point in the history
Signed-off-by: Hannah Hunter <[email protected]>
  • Loading branch information
hhunter-ms committed Oct 31, 2024
1 parent 54aacd9 commit 7963bd0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdkdocs/python
Submodule python updated 34 files
+2 −2 .github/workflows/fossa.yaml
+1 −1 README.md
+70 −1 dapr/aio/clients/grpc/client.py
+19 −3 dapr/aio/clients/grpc/interceptors.py
+116 −0 dapr/aio/clients/grpc/subscription.py
+75 −1 dapr/clients/grpc/client.py
+22 −5 dapr/clients/grpc/interceptors.py
+145 −0 dapr/clients/grpc/subscription.py
+92 −0 dapr/common/pubsub/subscription.py
+8 −8 dapr/proto/common/v1/common_pb2.py
+31 −39 dapr/proto/common/v1/common_pb2.pyi
+0 −25 dapr/proto/common/v1/common_pb2_grpc.py
+12 −12 dapr/proto/runtime/v1/appcallback_pb2.py
+69 −87 dapr/proto/runtime/v1/appcallback_pb2.pyi
+32 −137 dapr/proto/runtime/v1/appcallback_pb2_grpc.py
+280 −256 dapr/proto/runtime/v1/dapr_pb2.py
+575 −375 dapr/proto/runtime/v1/dapr_pb2.pyi
+269 −841 dapr/proto/runtime/v1/dapr_pb2_grpc.py
+122 −2 daprdocs/content/en/python-sdk-docs/python-client.md
+3 −3 examples/invoke-binding/README.md
+122 −0 examples/pubsub-streaming-async/README.md
+52 −0 examples/pubsub-streaming-async/publisher.py
+50 −0 examples/pubsub-streaming-async/subscriber-handler.py
+67 −0 examples/pubsub-streaming-async/subscriber.py
+121 −0 examples/pubsub-streaming/README.md
+43 −0 examples/pubsub-streaming/publisher.py
+44 −0 examples/pubsub-streaming/subscriber-handler.py
+76 −0 examples/pubsub-streaming/subscriber.py
+55 −2 tests/clients/fake_dapr_server.py
+125 −0 tests/clients/test_dapr_grpc_client.py
+123 −2 tests/clients/test_dapr_grpc_client_async.py
+109 −0 tests/clients/test_subscription.py
+1 −1 tools/requirements.txt
+2 −0 tox.ini

0 comments on commit 7963bd0

Please sign in to comment.