├── .codecov.yml ├── .devcontainer ├── Dockerfile ├── devcontainer.json └── postCreateCommand.sh ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── config.yml │ ├── feature_request.md │ ├── question.md │ ├── workflow_bug_report.md │ ├── workflow_feature_request.md │ └── workflow_question.md ├── dependabot.yml ├── holopin.yml ├── pull_request_template.md ├── scripts │ └── automerge.py └── workflows │ ├── build-push-to-main.yaml │ ├── build-tag.yaml │ ├── build.yaml │ ├── dapr-bot-schedule.yml │ ├── dapr-bot.yml │ ├── fossa.yaml │ └── validate_examples.yaml ├── .gitignore ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── dapr ├── __init__.pyi ├── actor │ ├── __init__.py │ ├── actor_interface.py │ ├── client │ │ ├── __init__.py │ │ └── proxy.py │ ├── id.py │ ├── py.typed │ └── runtime │ │ ├── __init__.py │ │ ├── _call_type.py │ │ ├── _method_context.py │ │ ├── _reminder_data.py │ │ ├── _state_provider.py │ │ ├── _timer_data.py │ │ ├── _type_information.py │ │ ├── _type_utils.py │ │ ├── actor.py │ │ ├── config.py │ │ ├── context.py │ │ ├── manager.py │ │ ├── method_dispatcher.py │ │ ├── mock_actor.py │ │ ├── mock_state_manager.py │ │ ├── reentrancy_context.py │ │ ├── remindable.py │ │ ├── runtime.py │ │ ├── state_change.py │ │ └── state_manager.py ├── aio │ └── clients │ │ ├── __init__.py │ │ ├── grpc │ │ ├── __init__.py │ │ ├── _request.py │ │ ├── _response.py │ │ ├── client.py │ │ ├── interceptors.py │ │ └── subscription.py │ │ └── py.typed ├── clients │ ├── __init__.py │ ├── _constants.py │ ├── base.py │ ├── exceptions.py │ ├── grpc │ │ ├── __init__.py │ │ ├── _conversation_helpers.py │ │ ├── _crypto.py │ │ ├── _helpers.py │ │ ├── _jobs.py │ │ ├── _request.py │ │ ├── _response.py │ │ ├── _state.py │ │ ├── client.py │ │ ├── conversation.py │ │ ├── interceptors.py │ │ └── subscription.py │ ├── health.py │ ├── http │ │ ├── __init__.py │ │ ├── client.py │ │ ├── conf.py │ │ ├── dapr_actor_http_client.py │ │ ├── dapr_invocation_http_client.py │ │ └── helpers.py │ ├── py.typed │ └── retry.py ├── common │ └── pubsub │ │ └── subscription.py ├── conf │ ├── __init__.py │ ├── global_settings.py │ ├── helpers.py │ └── py.typed ├── proto │ ├── README.md │ ├── __init__.py │ ├── common │ │ ├── __init__.py │ │ └── v1 │ │ │ ├── __init__.py │ │ │ ├── common_pb2.py │ │ │ ├── common_pb2.pyi │ │ │ └── common_pb2_grpc.py │ ├── py.typed │ └── runtime │ │ ├── __init__.py │ │ └── v1 │ │ ├── __init__.py │ │ ├── appcallback_pb2.py │ │ ├── appcallback_pb2.pyi │ │ ├── appcallback_pb2_grpc.py │ │ ├── dapr_pb2.py │ │ ├── dapr_pb2.pyi │ │ └── dapr_pb2_grpc.py ├── serializers │ ├── __init__.py │ ├── base.py │ ├── json.py │ ├── py.typed │ └── util.py └── version │ ├── __init__.py │ └── version.py ├── dev-requirements.txt ├── docs ├── Makefile ├── actor │ ├── actor.client.rst │ ├── actor.rst │ ├── actor.runtime.rst │ └── modules.rst ├── clients │ ├── clients.grpc.rst │ ├── clients.http.rst │ ├── clients.rst │ └── modules.rst ├── conf.py ├── index.rst ├── make.bat ├── proto │ ├── modules.rst │ ├── proto.common.rst │ ├── proto.common.v1.rst │ ├── proto.dapr.rst │ ├── proto.dapr.v1.rst │ ├── proto.daprclient.rst │ ├── proto.daprclient.v1.rst │ ├── proto.rst │ ├── proto.runtime.rst │ └── proto.runtime.v1.rst └── serializers │ ├── modules.rst │ └── serializers.rst ├── examples ├── README.md ├── configuration │ ├── README.md │ ├── components │ │ └── configurationstore.yaml │ └── configuration.py ├── conversation │ ├── .env.example │ ├── README.md │ ├── TOOL-CALL-QUICKSTART.md │ ├── config │ │ └── conversation-echo.yaml │ ├── conversation_alpha1.py │ ├── conversation_alpha2.py │ └── real_llm_providers_example.py ├── crypto │ ├── README.md │ ├── components │ │ └── crypto-localstorage.yaml │ ├── crypto-async.py │ ├── crypto.py │ └── desert.jpg ├── demo_actor │ ├── README.md │ ├── demo_actor │ │ ├── Dockerfile │ │ ├── demo_actor.py │ │ ├── demo_actor_client.py │ │ ├── demo_actor_flask.py │ │ ├── demo_actor_interface.py │ │ ├── demo_actor_service.py │ │ ├── requirements.txt │ │ └── test_demo_actor.py │ └── deploy │ │ ├── demo_actor_client.yml │ │ ├── demo_actor_service.yml │ │ └── redis.yml ├── demo_workflow │ ├── README.md │ ├── app.py │ ├── components │ │ └── state_redis.yaml │ └── demo_workflow │ │ └── requirements.txt ├── distributed_lock │ ├── README.md │ ├── components │ │ └── lockstore.yaml │ └── lock.py ├── error_handling │ ├── README.md │ ├── components │ │ └── state_redis.yaml │ └── error_handling.py ├── grpc_proxying │ ├── README.md │ ├── config.yaml │ ├── deploy │ │ ├── invoke-caller.yaml │ │ └── invoke-receiver.yaml │ ├── helloworld_service_pb2.py │ ├── helloworld_service_pb2_grpc.py │ ├── invoke-caller.py │ ├── invoke-receiver.py │ └── proto │ │ └── helloworld_service.proto ├── invoke-binding │ ├── README.md │ ├── components │ │ ├── kafka-binding.yaml │ │ ├── pubsub.yaml │ │ └── statestore.yaml │ ├── docker-compose-single-kafka.yml │ ├── invoke-input-binding.py │ └── invoke-output-binding.py ├── invoke-custom-data │ ├── README.md │ ├── invoke-caller.py │ ├── invoke-receiver.py │ └── proto │ │ ├── response.proto │ │ ├── response_pb2.py │ │ └── response_pb2_grpc.py ├── invoke-http │ ├── README.md │ ├── invoke-caller.py │ └── invoke-receiver.py ├── invoke-simple │ ├── Dockerfile │ ├── README.md │ ├── deploy │ │ ├── invoke-caller.yaml │ │ └── invoke-receiver.yaml │ ├── invoke-caller.py │ ├── invoke-receiver.py │ └── requirements.txt ├── jobs │ ├── README.md │ ├── job_management.py │ └── job_processing.py ├── metadata │ ├── README.md │ ├── app.py │ └── components │ │ ├── lockstore.yaml │ │ ├── pubsub.yaml │ │ └── statestore.yaml ├── pubsub-simple │ ├── README.md │ ├── publisher.py │ └── subscriber.py ├── pubsub-streaming-async │ ├── README.md │ ├── publisher.py │ ├── subscriber-handler.py │ └── subscriber.py ├── pubsub-streaming │ ├── README.md │ ├── publisher.py │ ├── subscriber-handler.py │ └── subscriber.py ├── secret_store │ ├── README.md │ ├── components │ │ └── localsecretstore.yaml │ ├── config.yaml │ ├── example.py │ └── secrets.json ├── state_store │ ├── README.md │ ├── components │ │ ├── pubsub.yaml │ │ └── statestore.yaml │ └── state_store.py ├── state_store_query │ ├── README.md │ ├── components │ │ └── mongodb.yml │ ├── dataset.json │ ├── query-token.json │ ├── query.json │ └── state_store_query.py ├── validate.sh ├── w3c-tracing │ ├── Dockerfile │ ├── README.md │ ├── img │ │ ├── service.png │ │ ├── zipkin-details.png │ │ ├── zipkin-landing.png │ │ └── zipkin-result.png │ ├── invoke-caller.py │ ├── invoke-receiver.py │ └── requirements.txt └── workflow │ ├── README.md │ ├── child_workflow.py │ ├── cross-app1.py │ ├── cross-app2.py │ ├── cross-app3.py │ ├── fan_out_fan_in.py │ ├── human_approval.py │ ├── monitor.py │ ├── requirements.txt │ ├── simple.py │ ├── simple_aio_client.py │ └── task_chaining.py ├── ext ├── dapr-ext-fastapi │ ├── LICENSE │ ├── README.rst │ ├── dapr │ │ └── ext │ │ │ └── fastapi │ │ │ ├── __init__.py │ │ │ ├── actor.py │ │ │ ├── app.py │ │ │ └── version.py │ ├── setup.cfg │ ├── setup.py │ └── tests │ │ ├── __init__.py │ │ ├── test_app.py │ │ └── test_dapractor.py ├── dapr-ext-grpc │ ├── LICENSE │ ├── README.rst │ ├── dapr │ │ └── ext │ │ │ └── grpc │ │ │ ├── __init__.py │ │ │ ├── _health_servicer.py │ │ │ ├── _servicer.py │ │ │ ├── app.py │ │ │ └── version.py │ ├── setup.cfg │ ├── setup.py │ └── tests │ │ ├── __init__.py │ │ ├── test_app.py │ │ ├── test_health_servicer.py │ │ ├── test_servicier.py │ │ └── test_topic_event_response.py ├── dapr-ext-langgraph │ ├── LICENSE │ ├── README.rst │ ├── dapr │ │ └── ext │ │ │ └── langgraph │ │ │ ├── __init__.py │ │ │ ├── dapr_checkpointer.py │ │ │ └── version.py │ ├── setup.cfg │ ├── setup.py │ └── tests │ │ ├── __init__.py │ │ └── test_checkpointer.py ├── dapr-ext-workflow │ ├── LICENSE │ ├── README.rst │ ├── dapr │ │ └── ext │ │ │ └── workflow │ │ │ ├── __init__.py │ │ │ ├── aio │ │ │ ├── __init__.py │ │ │ └── dapr_workflow_client.py │ │ │ ├── dapr_workflow_client.py │ │ │ ├── dapr_workflow_context.py │ │ │ ├── logger │ │ │ ├── __init__.py │ │ │ ├── logger.py │ │ │ └── options.py │ │ │ ├── retry_policy.py │ │ │ ├── util.py │ │ │ ├── version.py │ │ │ ├── workflow_activity_context.py │ │ │ ├── workflow_context.py │ │ │ ├── workflow_runtime.py │ │ │ └── workflow_state.py │ ├── setup.cfg │ ├── setup.py │ └── tests │ │ ├── __init__.py │ │ ├── test_dapr_workflow_context.py │ │ ├── test_workflow_activity_context.py │ │ ├── test_workflow_client.py │ │ ├── test_workflow_client_aio.py │ │ ├── test_workflow_runtime.py │ │ └── test_workflow_util.py └── flask_dapr │ ├── LICENSE │ ├── README.rst │ ├── flask_dapr │ ├── __init__.py │ ├── actor.py │ ├── app.py │ └── version.py │ ├── setup.cfg │ ├── setup.py │ └── tests │ └── test_app.py ├── mypy.ini ├── py.typed ├── pyproject.toml ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── actor │ ├── __init__.py │ ├── fake_actor_classes.py │ ├── fake_client.py │ ├── test_actor.py │ ├── test_actor_factory.py │ ├── test_actor_id.py │ ├── test_actor_manager.py │ ├── test_actor_reentrancy.py │ ├── test_actor_runtime.py │ ├── test_actor_runtime_config.py │ ├── test_client_proxy.py │ ├── test_method_dispatcher.py │ ├── test_mock_actor.py │ ├── test_mock_state_manager.py │ ├── test_reminder_data.py │ ├── test_state_manager.py │ ├── test_timer_data.py │ ├── test_type_information.py │ ├── test_type_utils.py │ └── utils.py ├── clients │ ├── __init__.py │ ├── certs.py │ ├── fake_dapr_server.py │ ├── fake_http_server.py │ ├── test_client_interceptor.py │ ├── test_conversation.py │ ├── test_conversation_helpers.py │ ├── test_dapr_grpc_client.py │ ├── test_dapr_grpc_client_async.py │ ├── test_dapr_grpc_client_async_secure.py │ ├── test_dapr_grpc_client_secure.py │ ├── test_dapr_grpc_helpers.py │ ├── test_dapr_grpc_request.py │ ├── test_dapr_grpc_request_async.py │ ├── test_dapr_grpc_response.py │ ├── test_dapr_grpc_response_async.py │ ├── test_exceptions.py │ ├── test_heatlhcheck.py │ ├── test_http_helpers.py │ ├── test_http_service_invocation_client.py │ ├── test_jobs.py │ ├── test_retries_policy.py │ ├── test_retries_policy_async.py │ ├── test_secure_http_service_invocation_client.py │ ├── test_subscription.py │ ├── test_timeout_interceptor.py │ └── test_timeout_interceptor_async.py ├── conf │ └── helpers_test.py └── serializers │ ├── __init__.py │ ├── test_default_json_serializer.py │ └── test_util.py ├── tools ├── regen_grpcclient.sh └── requirements.txt └── tox.ini /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.devcontainer/postCreateCommand.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.devcontainer/postCreateCommand.sh -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/workflow_bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.github/ISSUE_TEMPLATE/workflow_bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/workflow_feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.github/ISSUE_TEMPLATE/workflow_feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/workflow_question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.github/ISSUE_TEMPLATE/workflow_question.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/holopin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.github/holopin.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/scripts/automerge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.github/scripts/automerge.py -------------------------------------------------------------------------------- /.github/workflows/build-push-to-main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.github/workflows/build-push-to-main.yaml -------------------------------------------------------------------------------- /.github/workflows/build-tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.github/workflows/build-tag.yaml -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/dapr-bot-schedule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.github/workflows/dapr-bot-schedule.yml -------------------------------------------------------------------------------- /.github/workflows/dapr-bot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.github/workflows/dapr-bot.yml -------------------------------------------------------------------------------- /.github/workflows/fossa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.github/workflows/fossa.yaml -------------------------------------------------------------------------------- /.github/workflows/validate_examples.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.github/workflows/validate_examples.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/README.md -------------------------------------------------------------------------------- /dapr/__init__.pyi: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dapr/actor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/__init__.py -------------------------------------------------------------------------------- /dapr/actor/actor_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/actor_interface.py -------------------------------------------------------------------------------- /dapr/actor/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/client/__init__.py -------------------------------------------------------------------------------- /dapr/actor/client/proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/client/proxy.py -------------------------------------------------------------------------------- /dapr/actor/id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/id.py -------------------------------------------------------------------------------- /dapr/actor/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dapr/actor/runtime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/__init__.py -------------------------------------------------------------------------------- /dapr/actor/runtime/_call_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/_call_type.py -------------------------------------------------------------------------------- /dapr/actor/runtime/_method_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/_method_context.py -------------------------------------------------------------------------------- /dapr/actor/runtime/_reminder_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/_reminder_data.py -------------------------------------------------------------------------------- /dapr/actor/runtime/_state_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/_state_provider.py -------------------------------------------------------------------------------- /dapr/actor/runtime/_timer_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/_timer_data.py -------------------------------------------------------------------------------- /dapr/actor/runtime/_type_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/_type_information.py -------------------------------------------------------------------------------- /dapr/actor/runtime/_type_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/_type_utils.py -------------------------------------------------------------------------------- /dapr/actor/runtime/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/actor.py -------------------------------------------------------------------------------- /dapr/actor/runtime/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/config.py -------------------------------------------------------------------------------- /dapr/actor/runtime/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/context.py -------------------------------------------------------------------------------- /dapr/actor/runtime/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/manager.py -------------------------------------------------------------------------------- /dapr/actor/runtime/method_dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/method_dispatcher.py -------------------------------------------------------------------------------- /dapr/actor/runtime/mock_actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/mock_actor.py -------------------------------------------------------------------------------- /dapr/actor/runtime/mock_state_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/mock_state_manager.py -------------------------------------------------------------------------------- /dapr/actor/runtime/reentrancy_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/reentrancy_context.py -------------------------------------------------------------------------------- /dapr/actor/runtime/remindable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/remindable.py -------------------------------------------------------------------------------- /dapr/actor/runtime/runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/runtime.py -------------------------------------------------------------------------------- /dapr/actor/runtime/state_change.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/state_change.py -------------------------------------------------------------------------------- /dapr/actor/runtime/state_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/actor/runtime/state_manager.py -------------------------------------------------------------------------------- /dapr/aio/clients/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/aio/clients/__init__.py -------------------------------------------------------------------------------- /dapr/aio/clients/grpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/aio/clients/grpc/__init__.py -------------------------------------------------------------------------------- /dapr/aio/clients/grpc/_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/aio/clients/grpc/_request.py -------------------------------------------------------------------------------- /dapr/aio/clients/grpc/_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/aio/clients/grpc/_response.py -------------------------------------------------------------------------------- /dapr/aio/clients/grpc/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/aio/clients/grpc/client.py -------------------------------------------------------------------------------- /dapr/aio/clients/grpc/interceptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/aio/clients/grpc/interceptors.py -------------------------------------------------------------------------------- /dapr/aio/clients/grpc/subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/aio/clients/grpc/subscription.py -------------------------------------------------------------------------------- /dapr/aio/clients/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dapr/clients/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/__init__.py -------------------------------------------------------------------------------- /dapr/clients/_constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/_constants.py -------------------------------------------------------------------------------- /dapr/clients/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/base.py -------------------------------------------------------------------------------- /dapr/clients/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/exceptions.py -------------------------------------------------------------------------------- /dapr/clients/grpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/grpc/__init__.py -------------------------------------------------------------------------------- /dapr/clients/grpc/_conversation_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/grpc/_conversation_helpers.py -------------------------------------------------------------------------------- /dapr/clients/grpc/_crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/grpc/_crypto.py -------------------------------------------------------------------------------- /dapr/clients/grpc/_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/grpc/_helpers.py -------------------------------------------------------------------------------- /dapr/clients/grpc/_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/grpc/_jobs.py -------------------------------------------------------------------------------- /dapr/clients/grpc/_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/grpc/_request.py -------------------------------------------------------------------------------- /dapr/clients/grpc/_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/grpc/_response.py -------------------------------------------------------------------------------- /dapr/clients/grpc/_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/grpc/_state.py -------------------------------------------------------------------------------- /dapr/clients/grpc/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/grpc/client.py -------------------------------------------------------------------------------- /dapr/clients/grpc/conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/grpc/conversation.py -------------------------------------------------------------------------------- /dapr/clients/grpc/interceptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/grpc/interceptors.py -------------------------------------------------------------------------------- /dapr/clients/grpc/subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/grpc/subscription.py -------------------------------------------------------------------------------- /dapr/clients/health.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/health.py -------------------------------------------------------------------------------- /dapr/clients/http/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/http/__init__.py -------------------------------------------------------------------------------- /dapr/clients/http/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/http/client.py -------------------------------------------------------------------------------- /dapr/clients/http/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/http/conf.py -------------------------------------------------------------------------------- /dapr/clients/http/dapr_actor_http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/http/dapr_actor_http_client.py -------------------------------------------------------------------------------- /dapr/clients/http/dapr_invocation_http_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/http/dapr_invocation_http_client.py -------------------------------------------------------------------------------- /dapr/clients/http/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/http/helpers.py -------------------------------------------------------------------------------- /dapr/clients/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dapr/clients/retry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/clients/retry.py -------------------------------------------------------------------------------- /dapr/common/pubsub/subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/common/pubsub/subscription.py -------------------------------------------------------------------------------- /dapr/conf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/conf/__init__.py -------------------------------------------------------------------------------- /dapr/conf/global_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/conf/global_settings.py -------------------------------------------------------------------------------- /dapr/conf/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/conf/helpers.py -------------------------------------------------------------------------------- /dapr/conf/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dapr/proto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/proto/README.md -------------------------------------------------------------------------------- /dapr/proto/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/proto/__init__.py -------------------------------------------------------------------------------- /dapr/proto/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/proto/common/__init__.py -------------------------------------------------------------------------------- /dapr/proto/common/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/proto/common/v1/__init__.py -------------------------------------------------------------------------------- /dapr/proto/common/v1/common_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/proto/common/v1/common_pb2.py -------------------------------------------------------------------------------- /dapr/proto/common/v1/common_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/proto/common/v1/common_pb2.pyi -------------------------------------------------------------------------------- /dapr/proto/common/v1/common_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/proto/common/v1/common_pb2_grpc.py -------------------------------------------------------------------------------- /dapr/proto/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dapr/proto/runtime/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/proto/runtime/__init__.py -------------------------------------------------------------------------------- /dapr/proto/runtime/v1/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/proto/runtime/v1/__init__.py -------------------------------------------------------------------------------- /dapr/proto/runtime/v1/appcallback_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/proto/runtime/v1/appcallback_pb2.py -------------------------------------------------------------------------------- /dapr/proto/runtime/v1/appcallback_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/proto/runtime/v1/appcallback_pb2.pyi -------------------------------------------------------------------------------- /dapr/proto/runtime/v1/appcallback_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/proto/runtime/v1/appcallback_pb2_grpc.py -------------------------------------------------------------------------------- /dapr/proto/runtime/v1/dapr_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/proto/runtime/v1/dapr_pb2.py -------------------------------------------------------------------------------- /dapr/proto/runtime/v1/dapr_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/proto/runtime/v1/dapr_pb2.pyi -------------------------------------------------------------------------------- /dapr/proto/runtime/v1/dapr_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/proto/runtime/v1/dapr_pb2_grpc.py -------------------------------------------------------------------------------- /dapr/serializers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/serializers/__init__.py -------------------------------------------------------------------------------- /dapr/serializers/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/serializers/base.py -------------------------------------------------------------------------------- /dapr/serializers/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/serializers/json.py -------------------------------------------------------------------------------- /dapr/serializers/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dapr/serializers/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/serializers/util.py -------------------------------------------------------------------------------- /dapr/version/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/version/__init__.py -------------------------------------------------------------------------------- /dapr/version/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dapr/version/version.py -------------------------------------------------------------------------------- /dev-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/dev-requirements.txt -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/actor/actor.client.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/actor/actor.client.rst -------------------------------------------------------------------------------- /docs/actor/actor.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/actor/actor.rst -------------------------------------------------------------------------------- /docs/actor/actor.runtime.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/actor/actor.runtime.rst -------------------------------------------------------------------------------- /docs/actor/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/actor/modules.rst -------------------------------------------------------------------------------- /docs/clients/clients.grpc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/clients/clients.grpc.rst -------------------------------------------------------------------------------- /docs/clients/clients.http.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/clients/clients.http.rst -------------------------------------------------------------------------------- /docs/clients/clients.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/clients/clients.rst -------------------------------------------------------------------------------- /docs/clients/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/clients/modules.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/proto/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/proto/modules.rst -------------------------------------------------------------------------------- /docs/proto/proto.common.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/proto/proto.common.rst -------------------------------------------------------------------------------- /docs/proto/proto.common.v1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/proto/proto.common.v1.rst -------------------------------------------------------------------------------- /docs/proto/proto.dapr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/proto/proto.dapr.rst -------------------------------------------------------------------------------- /docs/proto/proto.dapr.v1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/proto/proto.dapr.v1.rst -------------------------------------------------------------------------------- /docs/proto/proto.daprclient.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/proto/proto.daprclient.rst -------------------------------------------------------------------------------- /docs/proto/proto.daprclient.v1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/proto/proto.daprclient.v1.rst -------------------------------------------------------------------------------- /docs/proto/proto.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/proto/proto.rst -------------------------------------------------------------------------------- /docs/proto/proto.runtime.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/proto/proto.runtime.rst -------------------------------------------------------------------------------- /docs/proto/proto.runtime.v1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/proto/proto.runtime.v1.rst -------------------------------------------------------------------------------- /docs/serializers/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/serializers/modules.rst -------------------------------------------------------------------------------- /docs/serializers/serializers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/docs/serializers/serializers.rst -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/configuration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/configuration/README.md -------------------------------------------------------------------------------- /examples/configuration/components/configurationstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/configuration/components/configurationstore.yaml -------------------------------------------------------------------------------- /examples/configuration/configuration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/configuration/configuration.py -------------------------------------------------------------------------------- /examples/conversation/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/conversation/.env.example -------------------------------------------------------------------------------- /examples/conversation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/conversation/README.md -------------------------------------------------------------------------------- /examples/conversation/TOOL-CALL-QUICKSTART.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/conversation/TOOL-CALL-QUICKSTART.md -------------------------------------------------------------------------------- /examples/conversation/config/conversation-echo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/conversation/config/conversation-echo.yaml -------------------------------------------------------------------------------- /examples/conversation/conversation_alpha1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/conversation/conversation_alpha1.py -------------------------------------------------------------------------------- /examples/conversation/conversation_alpha2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/conversation/conversation_alpha2.py -------------------------------------------------------------------------------- /examples/conversation/real_llm_providers_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/conversation/real_llm_providers_example.py -------------------------------------------------------------------------------- /examples/crypto/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/crypto/README.md -------------------------------------------------------------------------------- /examples/crypto/components/crypto-localstorage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/crypto/components/crypto-localstorage.yaml -------------------------------------------------------------------------------- /examples/crypto/crypto-async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/crypto/crypto-async.py -------------------------------------------------------------------------------- /examples/crypto/crypto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/crypto/crypto.py -------------------------------------------------------------------------------- /examples/crypto/desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/crypto/desert.jpg -------------------------------------------------------------------------------- /examples/demo_actor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/demo_actor/README.md -------------------------------------------------------------------------------- /examples/demo_actor/demo_actor/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/demo_actor/demo_actor/Dockerfile -------------------------------------------------------------------------------- /examples/demo_actor/demo_actor/demo_actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/demo_actor/demo_actor/demo_actor.py -------------------------------------------------------------------------------- /examples/demo_actor/demo_actor/demo_actor_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/demo_actor/demo_actor/demo_actor_client.py -------------------------------------------------------------------------------- /examples/demo_actor/demo_actor/demo_actor_flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/demo_actor/demo_actor/demo_actor_flask.py -------------------------------------------------------------------------------- /examples/demo_actor/demo_actor/demo_actor_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/demo_actor/demo_actor/demo_actor_interface.py -------------------------------------------------------------------------------- /examples/demo_actor/demo_actor/demo_actor_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/demo_actor/demo_actor/demo_actor_service.py -------------------------------------------------------------------------------- /examples/demo_actor/demo_actor/requirements.txt: -------------------------------------------------------------------------------- 1 | dapr-ext-fastapi>=1.16.0.dev 2 | -------------------------------------------------------------------------------- /examples/demo_actor/demo_actor/test_demo_actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/demo_actor/demo_actor/test_demo_actor.py -------------------------------------------------------------------------------- /examples/demo_actor/deploy/demo_actor_client.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/demo_actor/deploy/demo_actor_client.yml -------------------------------------------------------------------------------- /examples/demo_actor/deploy/demo_actor_service.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/demo_actor/deploy/demo_actor_service.yml -------------------------------------------------------------------------------- /examples/demo_actor/deploy/redis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/demo_actor/deploy/redis.yml -------------------------------------------------------------------------------- /examples/demo_workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/demo_workflow/README.md -------------------------------------------------------------------------------- /examples/demo_workflow/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/demo_workflow/app.py -------------------------------------------------------------------------------- /examples/demo_workflow/components/state_redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/demo_workflow/components/state_redis.yaml -------------------------------------------------------------------------------- /examples/demo_workflow/demo_workflow/requirements.txt: -------------------------------------------------------------------------------- 1 | dapr-ext-workflow>=1.16.0.dev 2 | -------------------------------------------------------------------------------- /examples/distributed_lock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/distributed_lock/README.md -------------------------------------------------------------------------------- /examples/distributed_lock/components/lockstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/distributed_lock/components/lockstore.yaml -------------------------------------------------------------------------------- /examples/distributed_lock/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/distributed_lock/lock.py -------------------------------------------------------------------------------- /examples/error_handling/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/error_handling/README.md -------------------------------------------------------------------------------- /examples/error_handling/components/state_redis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/error_handling/components/state_redis.yaml -------------------------------------------------------------------------------- /examples/error_handling/error_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/error_handling/error_handling.py -------------------------------------------------------------------------------- /examples/grpc_proxying/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/grpc_proxying/README.md -------------------------------------------------------------------------------- /examples/grpc_proxying/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/grpc_proxying/config.yaml -------------------------------------------------------------------------------- /examples/grpc_proxying/deploy/invoke-caller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/grpc_proxying/deploy/invoke-caller.yaml -------------------------------------------------------------------------------- /examples/grpc_proxying/deploy/invoke-receiver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/grpc_proxying/deploy/invoke-receiver.yaml -------------------------------------------------------------------------------- /examples/grpc_proxying/helloworld_service_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/grpc_proxying/helloworld_service_pb2.py -------------------------------------------------------------------------------- /examples/grpc_proxying/helloworld_service_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/grpc_proxying/helloworld_service_pb2_grpc.py -------------------------------------------------------------------------------- /examples/grpc_proxying/invoke-caller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/grpc_proxying/invoke-caller.py -------------------------------------------------------------------------------- /examples/grpc_proxying/invoke-receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/grpc_proxying/invoke-receiver.py -------------------------------------------------------------------------------- /examples/grpc_proxying/proto/helloworld_service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/grpc_proxying/proto/helloworld_service.proto -------------------------------------------------------------------------------- /examples/invoke-binding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-binding/README.md -------------------------------------------------------------------------------- /examples/invoke-binding/components/kafka-binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-binding/components/kafka-binding.yaml -------------------------------------------------------------------------------- /examples/invoke-binding/components/pubsub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-binding/components/pubsub.yaml -------------------------------------------------------------------------------- /examples/invoke-binding/components/statestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-binding/components/statestore.yaml -------------------------------------------------------------------------------- /examples/invoke-binding/docker-compose-single-kafka.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-binding/docker-compose-single-kafka.yml -------------------------------------------------------------------------------- /examples/invoke-binding/invoke-input-binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-binding/invoke-input-binding.py -------------------------------------------------------------------------------- /examples/invoke-binding/invoke-output-binding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-binding/invoke-output-binding.py -------------------------------------------------------------------------------- /examples/invoke-custom-data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-custom-data/README.md -------------------------------------------------------------------------------- /examples/invoke-custom-data/invoke-caller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-custom-data/invoke-caller.py -------------------------------------------------------------------------------- /examples/invoke-custom-data/invoke-receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-custom-data/invoke-receiver.py -------------------------------------------------------------------------------- /examples/invoke-custom-data/proto/response.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-custom-data/proto/response.proto -------------------------------------------------------------------------------- /examples/invoke-custom-data/proto/response_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-custom-data/proto/response_pb2.py -------------------------------------------------------------------------------- /examples/invoke-custom-data/proto/response_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-custom-data/proto/response_pb2_grpc.py -------------------------------------------------------------------------------- /examples/invoke-http/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-http/README.md -------------------------------------------------------------------------------- /examples/invoke-http/invoke-caller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-http/invoke-caller.py -------------------------------------------------------------------------------- /examples/invoke-http/invoke-receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-http/invoke-receiver.py -------------------------------------------------------------------------------- /examples/invoke-simple/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-simple/Dockerfile -------------------------------------------------------------------------------- /examples/invoke-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-simple/README.md -------------------------------------------------------------------------------- /examples/invoke-simple/deploy/invoke-caller.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-simple/deploy/invoke-caller.yaml -------------------------------------------------------------------------------- /examples/invoke-simple/deploy/invoke-receiver.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-simple/deploy/invoke-receiver.yaml -------------------------------------------------------------------------------- /examples/invoke-simple/invoke-caller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-simple/invoke-caller.py -------------------------------------------------------------------------------- /examples/invoke-simple/invoke-receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-simple/invoke-receiver.py -------------------------------------------------------------------------------- /examples/invoke-simple/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/invoke-simple/requirements.txt -------------------------------------------------------------------------------- /examples/jobs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/jobs/README.md -------------------------------------------------------------------------------- /examples/jobs/job_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/jobs/job_management.py -------------------------------------------------------------------------------- /examples/jobs/job_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/jobs/job_processing.py -------------------------------------------------------------------------------- /examples/metadata/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/metadata/README.md -------------------------------------------------------------------------------- /examples/metadata/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/metadata/app.py -------------------------------------------------------------------------------- /examples/metadata/components/lockstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/metadata/components/lockstore.yaml -------------------------------------------------------------------------------- /examples/metadata/components/pubsub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/metadata/components/pubsub.yaml -------------------------------------------------------------------------------- /examples/metadata/components/statestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/metadata/components/statestore.yaml -------------------------------------------------------------------------------- /examples/pubsub-simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/pubsub-simple/README.md -------------------------------------------------------------------------------- /examples/pubsub-simple/publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/pubsub-simple/publisher.py -------------------------------------------------------------------------------- /examples/pubsub-simple/subscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/pubsub-simple/subscriber.py -------------------------------------------------------------------------------- /examples/pubsub-streaming-async/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/pubsub-streaming-async/README.md -------------------------------------------------------------------------------- /examples/pubsub-streaming-async/publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/pubsub-streaming-async/publisher.py -------------------------------------------------------------------------------- /examples/pubsub-streaming-async/subscriber-handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/pubsub-streaming-async/subscriber-handler.py -------------------------------------------------------------------------------- /examples/pubsub-streaming-async/subscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/pubsub-streaming-async/subscriber.py -------------------------------------------------------------------------------- /examples/pubsub-streaming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/pubsub-streaming/README.md -------------------------------------------------------------------------------- /examples/pubsub-streaming/publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/pubsub-streaming/publisher.py -------------------------------------------------------------------------------- /examples/pubsub-streaming/subscriber-handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/pubsub-streaming/subscriber-handler.py -------------------------------------------------------------------------------- /examples/pubsub-streaming/subscriber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/pubsub-streaming/subscriber.py -------------------------------------------------------------------------------- /examples/secret_store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/secret_store/README.md -------------------------------------------------------------------------------- /examples/secret_store/components/localsecretstore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/secret_store/components/localsecretstore.yaml -------------------------------------------------------------------------------- /examples/secret_store/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/secret_store/config.yaml -------------------------------------------------------------------------------- /examples/secret_store/example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/secret_store/example.py -------------------------------------------------------------------------------- /examples/secret_store/secrets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/secret_store/secrets.json -------------------------------------------------------------------------------- /examples/state_store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/state_store/README.md -------------------------------------------------------------------------------- /examples/state_store/components/pubsub.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/state_store/components/pubsub.yaml -------------------------------------------------------------------------------- /examples/state_store/components/statestore.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/state_store/components/statestore.yaml -------------------------------------------------------------------------------- /examples/state_store/state_store.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/state_store/state_store.py -------------------------------------------------------------------------------- /examples/state_store_query/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/state_store_query/README.md -------------------------------------------------------------------------------- /examples/state_store_query/components/mongodb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/state_store_query/components/mongodb.yml -------------------------------------------------------------------------------- /examples/state_store_query/dataset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/state_store_query/dataset.json -------------------------------------------------------------------------------- /examples/state_store_query/query-token.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/state_store_query/query-token.json -------------------------------------------------------------------------------- /examples/state_store_query/query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/state_store_query/query.json -------------------------------------------------------------------------------- /examples/state_store_query/state_store_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/state_store_query/state_store_query.py -------------------------------------------------------------------------------- /examples/validate.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo "Home: $HOME" 3 | 4 | cd $1 && mm.py -l README.md 5 | -------------------------------------------------------------------------------- /examples/w3c-tracing/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/w3c-tracing/Dockerfile -------------------------------------------------------------------------------- /examples/w3c-tracing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/w3c-tracing/README.md -------------------------------------------------------------------------------- /examples/w3c-tracing/img/service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/w3c-tracing/img/service.png -------------------------------------------------------------------------------- /examples/w3c-tracing/img/zipkin-details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/w3c-tracing/img/zipkin-details.png -------------------------------------------------------------------------------- /examples/w3c-tracing/img/zipkin-landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/w3c-tracing/img/zipkin-landing.png -------------------------------------------------------------------------------- /examples/w3c-tracing/img/zipkin-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/w3c-tracing/img/zipkin-result.png -------------------------------------------------------------------------------- /examples/w3c-tracing/invoke-caller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/w3c-tracing/invoke-caller.py -------------------------------------------------------------------------------- /examples/w3c-tracing/invoke-receiver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/w3c-tracing/invoke-receiver.py -------------------------------------------------------------------------------- /examples/w3c-tracing/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/w3c-tracing/requirements.txt -------------------------------------------------------------------------------- /examples/workflow/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/workflow/README.md -------------------------------------------------------------------------------- /examples/workflow/child_workflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/workflow/child_workflow.py -------------------------------------------------------------------------------- /examples/workflow/cross-app1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/workflow/cross-app1.py -------------------------------------------------------------------------------- /examples/workflow/cross-app2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/workflow/cross-app2.py -------------------------------------------------------------------------------- /examples/workflow/cross-app3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/workflow/cross-app3.py -------------------------------------------------------------------------------- /examples/workflow/fan_out_fan_in.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/workflow/fan_out_fan_in.py -------------------------------------------------------------------------------- /examples/workflow/human_approval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/workflow/human_approval.py -------------------------------------------------------------------------------- /examples/workflow/monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/workflow/monitor.py -------------------------------------------------------------------------------- /examples/workflow/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/workflow/requirements.txt -------------------------------------------------------------------------------- /examples/workflow/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/workflow/simple.py -------------------------------------------------------------------------------- /examples/workflow/simple_aio_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/workflow/simple_aio_client.py -------------------------------------------------------------------------------- /examples/workflow/task_chaining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/examples/workflow/task_chaining.py -------------------------------------------------------------------------------- /ext/dapr-ext-fastapi/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-fastapi/LICENSE -------------------------------------------------------------------------------- /ext/dapr-ext-fastapi/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-fastapi/README.rst -------------------------------------------------------------------------------- /ext/dapr-ext-fastapi/dapr/ext/fastapi/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-fastapi/dapr/ext/fastapi/__init__.py -------------------------------------------------------------------------------- /ext/dapr-ext-fastapi/dapr/ext/fastapi/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-fastapi/dapr/ext/fastapi/actor.py -------------------------------------------------------------------------------- /ext/dapr-ext-fastapi/dapr/ext/fastapi/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-fastapi/dapr/ext/fastapi/app.py -------------------------------------------------------------------------------- /ext/dapr-ext-fastapi/dapr/ext/fastapi/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-fastapi/dapr/ext/fastapi/version.py -------------------------------------------------------------------------------- /ext/dapr-ext-fastapi/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-fastapi/setup.cfg -------------------------------------------------------------------------------- /ext/dapr-ext-fastapi/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-fastapi/setup.py -------------------------------------------------------------------------------- /ext/dapr-ext-fastapi/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/dapr-ext-fastapi/tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-fastapi/tests/test_app.py -------------------------------------------------------------------------------- /ext/dapr-ext-fastapi/tests/test_dapractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-fastapi/tests/test_dapractor.py -------------------------------------------------------------------------------- /ext/dapr-ext-grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-grpc/LICENSE -------------------------------------------------------------------------------- /ext/dapr-ext-grpc/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-grpc/README.rst -------------------------------------------------------------------------------- /ext/dapr-ext-grpc/dapr/ext/grpc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-grpc/dapr/ext/grpc/__init__.py -------------------------------------------------------------------------------- /ext/dapr-ext-grpc/dapr/ext/grpc/_health_servicer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-grpc/dapr/ext/grpc/_health_servicer.py -------------------------------------------------------------------------------- /ext/dapr-ext-grpc/dapr/ext/grpc/_servicer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-grpc/dapr/ext/grpc/_servicer.py -------------------------------------------------------------------------------- /ext/dapr-ext-grpc/dapr/ext/grpc/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-grpc/dapr/ext/grpc/app.py -------------------------------------------------------------------------------- /ext/dapr-ext-grpc/dapr/ext/grpc/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-grpc/dapr/ext/grpc/version.py -------------------------------------------------------------------------------- /ext/dapr-ext-grpc/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-grpc/setup.cfg -------------------------------------------------------------------------------- /ext/dapr-ext-grpc/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-grpc/setup.py -------------------------------------------------------------------------------- /ext/dapr-ext-grpc/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ext/dapr-ext-grpc/tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-grpc/tests/test_app.py -------------------------------------------------------------------------------- /ext/dapr-ext-grpc/tests/test_health_servicer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-grpc/tests/test_health_servicer.py -------------------------------------------------------------------------------- /ext/dapr-ext-grpc/tests/test_servicier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-grpc/tests/test_servicier.py -------------------------------------------------------------------------------- /ext/dapr-ext-grpc/tests/test_topic_event_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-grpc/tests/test_topic_event_response.py -------------------------------------------------------------------------------- /ext/dapr-ext-langgraph/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-langgraph/LICENSE -------------------------------------------------------------------------------- /ext/dapr-ext-langgraph/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-langgraph/README.rst -------------------------------------------------------------------------------- /ext/dapr-ext-langgraph/dapr/ext/langgraph/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-langgraph/dapr/ext/langgraph/__init__.py -------------------------------------------------------------------------------- /ext/dapr-ext-langgraph/dapr/ext/langgraph/dapr_checkpointer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-langgraph/dapr/ext/langgraph/dapr_checkpointer.py -------------------------------------------------------------------------------- /ext/dapr-ext-langgraph/dapr/ext/langgraph/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-langgraph/dapr/ext/langgraph/version.py -------------------------------------------------------------------------------- /ext/dapr-ext-langgraph/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-langgraph/setup.cfg -------------------------------------------------------------------------------- /ext/dapr-ext-langgraph/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-langgraph/setup.py -------------------------------------------------------------------------------- /ext/dapr-ext-langgraph/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-langgraph/tests/__init__.py -------------------------------------------------------------------------------- /ext/dapr-ext-langgraph/tests/test_checkpointer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-langgraph/tests/test_checkpointer.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/LICENSE -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/README.rst -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/dapr/ext/workflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/dapr/ext/workflow/__init__.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/dapr/ext/workflow/aio/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/dapr/ext/workflow/aio/__init__.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/dapr/ext/workflow/aio/dapr_workflow_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/dapr/ext/workflow/aio/dapr_workflow_client.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/dapr/ext/workflow/dapr_workflow_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/dapr/ext/workflow/dapr_workflow_client.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/dapr/ext/workflow/dapr_workflow_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/dapr/ext/workflow/dapr_workflow_context.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/dapr/ext/workflow/logger/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/dapr/ext/workflow/logger/__init__.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/dapr/ext/workflow/logger/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/dapr/ext/workflow/logger/logger.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/dapr/ext/workflow/logger/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/dapr/ext/workflow/logger/options.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/dapr/ext/workflow/retry_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/dapr/ext/workflow/retry_policy.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/dapr/ext/workflow/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/dapr/ext/workflow/util.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/dapr/ext/workflow/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/dapr/ext/workflow/version.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/dapr/ext/workflow/workflow_activity_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/dapr/ext/workflow/workflow_activity_context.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/dapr/ext/workflow/workflow_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/dapr/ext/workflow/workflow_context.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/dapr/ext/workflow/workflow_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/dapr/ext/workflow/workflow_runtime.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/dapr/ext/workflow/workflow_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/dapr/ext/workflow/workflow_state.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/setup.cfg -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/setup.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/tests/__init__.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/tests/test_dapr_workflow_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/tests/test_dapr_workflow_context.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/tests/test_workflow_activity_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/tests/test_workflow_activity_context.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/tests/test_workflow_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/tests/test_workflow_client.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/tests/test_workflow_client_aio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/tests/test_workflow_client_aio.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/tests/test_workflow_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/tests/test_workflow_runtime.py -------------------------------------------------------------------------------- /ext/dapr-ext-workflow/tests/test_workflow_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/dapr-ext-workflow/tests/test_workflow_util.py -------------------------------------------------------------------------------- /ext/flask_dapr/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/flask_dapr/LICENSE -------------------------------------------------------------------------------- /ext/flask_dapr/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/flask_dapr/README.rst -------------------------------------------------------------------------------- /ext/flask_dapr/flask_dapr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/flask_dapr/flask_dapr/__init__.py -------------------------------------------------------------------------------- /ext/flask_dapr/flask_dapr/actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/flask_dapr/flask_dapr/actor.py -------------------------------------------------------------------------------- /ext/flask_dapr/flask_dapr/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/flask_dapr/flask_dapr/app.py -------------------------------------------------------------------------------- /ext/flask_dapr/flask_dapr/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/flask_dapr/flask_dapr/version.py -------------------------------------------------------------------------------- /ext/flask_dapr/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/flask_dapr/setup.cfg -------------------------------------------------------------------------------- /ext/flask_dapr/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/flask_dapr/setup.py -------------------------------------------------------------------------------- /ext/flask_dapr/tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/ext/flask_dapr/tests/test_app.py -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/mypy.ini -------------------------------------------------------------------------------- /py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/actor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/__init__.py -------------------------------------------------------------------------------- /tests/actor/fake_actor_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/fake_actor_classes.py -------------------------------------------------------------------------------- /tests/actor/fake_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/fake_client.py -------------------------------------------------------------------------------- /tests/actor/test_actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/test_actor.py -------------------------------------------------------------------------------- /tests/actor/test_actor_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/test_actor_factory.py -------------------------------------------------------------------------------- /tests/actor/test_actor_id.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/test_actor_id.py -------------------------------------------------------------------------------- /tests/actor/test_actor_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/test_actor_manager.py -------------------------------------------------------------------------------- /tests/actor/test_actor_reentrancy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/test_actor_reentrancy.py -------------------------------------------------------------------------------- /tests/actor/test_actor_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/test_actor_runtime.py -------------------------------------------------------------------------------- /tests/actor/test_actor_runtime_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/test_actor_runtime_config.py -------------------------------------------------------------------------------- /tests/actor/test_client_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/test_client_proxy.py -------------------------------------------------------------------------------- /tests/actor/test_method_dispatcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/test_method_dispatcher.py -------------------------------------------------------------------------------- /tests/actor/test_mock_actor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/test_mock_actor.py -------------------------------------------------------------------------------- /tests/actor/test_mock_state_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/test_mock_state_manager.py -------------------------------------------------------------------------------- /tests/actor/test_reminder_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/test_reminder_data.py -------------------------------------------------------------------------------- /tests/actor/test_state_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/test_state_manager.py -------------------------------------------------------------------------------- /tests/actor/test_timer_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/test_timer_data.py -------------------------------------------------------------------------------- /tests/actor/test_type_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/test_type_information.py -------------------------------------------------------------------------------- /tests/actor/test_type_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/test_type_utils.py -------------------------------------------------------------------------------- /tests/actor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/actor/utils.py -------------------------------------------------------------------------------- /tests/clients/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/__init__.py -------------------------------------------------------------------------------- /tests/clients/certs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/certs.py -------------------------------------------------------------------------------- /tests/clients/fake_dapr_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/fake_dapr_server.py -------------------------------------------------------------------------------- /tests/clients/fake_http_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/fake_http_server.py -------------------------------------------------------------------------------- /tests/clients/test_client_interceptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_client_interceptor.py -------------------------------------------------------------------------------- /tests/clients/test_conversation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_conversation.py -------------------------------------------------------------------------------- /tests/clients/test_conversation_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_conversation_helpers.py -------------------------------------------------------------------------------- /tests/clients/test_dapr_grpc_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_dapr_grpc_client.py -------------------------------------------------------------------------------- /tests/clients/test_dapr_grpc_client_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_dapr_grpc_client_async.py -------------------------------------------------------------------------------- /tests/clients/test_dapr_grpc_client_async_secure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_dapr_grpc_client_async_secure.py -------------------------------------------------------------------------------- /tests/clients/test_dapr_grpc_client_secure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_dapr_grpc_client_secure.py -------------------------------------------------------------------------------- /tests/clients/test_dapr_grpc_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_dapr_grpc_helpers.py -------------------------------------------------------------------------------- /tests/clients/test_dapr_grpc_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_dapr_grpc_request.py -------------------------------------------------------------------------------- /tests/clients/test_dapr_grpc_request_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_dapr_grpc_request_async.py -------------------------------------------------------------------------------- /tests/clients/test_dapr_grpc_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_dapr_grpc_response.py -------------------------------------------------------------------------------- /tests/clients/test_dapr_grpc_response_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_dapr_grpc_response_async.py -------------------------------------------------------------------------------- /tests/clients/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_exceptions.py -------------------------------------------------------------------------------- /tests/clients/test_heatlhcheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_heatlhcheck.py -------------------------------------------------------------------------------- /tests/clients/test_http_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_http_helpers.py -------------------------------------------------------------------------------- /tests/clients/test_http_service_invocation_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_http_service_invocation_client.py -------------------------------------------------------------------------------- /tests/clients/test_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_jobs.py -------------------------------------------------------------------------------- /tests/clients/test_retries_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_retries_policy.py -------------------------------------------------------------------------------- /tests/clients/test_retries_policy_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_retries_policy_async.py -------------------------------------------------------------------------------- /tests/clients/test_secure_http_service_invocation_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_secure_http_service_invocation_client.py -------------------------------------------------------------------------------- /tests/clients/test_subscription.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_subscription.py -------------------------------------------------------------------------------- /tests/clients/test_timeout_interceptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_timeout_interceptor.py -------------------------------------------------------------------------------- /tests/clients/test_timeout_interceptor_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/clients/test_timeout_interceptor_async.py -------------------------------------------------------------------------------- /tests/conf/helpers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/conf/helpers_test.py -------------------------------------------------------------------------------- /tests/serializers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/serializers/__init__.py -------------------------------------------------------------------------------- /tests/serializers/test_default_json_serializer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/serializers/test_default_json_serializer.py -------------------------------------------------------------------------------- /tests/serializers/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tests/serializers/test_util.py -------------------------------------------------------------------------------- /tools/regen_grpcclient.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tools/regen_grpcclient.sh -------------------------------------------------------------------------------- /tools/requirements.txt: -------------------------------------------------------------------------------- 1 | grpcio-tools==1.62.3 2 | mypy-protobuf==3.7.0 3 | -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dapr/python-sdk/HEAD/tox.ini --------------------------------------------------------------------------------