• Home
Name Date Size #Lines LOC

..--

bazel/cc_proto_descriptor_library/testdata/06-Sep-2024-7842

contrib/envoy/extensions/06-Sep-2024-1,338930

envoy/06-Sep-2024-29,09121,241

google/06-Sep-2024-3,7292,714

opencensus/06-Sep-2024-374261

opentelemetry/06-Sep-2024-429289

udpa/06-Sep-2024-256150

validate/06-Sep-2024-7764

xds/06-Sep-2024-948621

BUILD.bazelD06-Sep-20241.1 KiB3834

MANIFEST.inD06-Sep-202424 21

README.rstD06-Sep-2024774 117

__init__.pyD06-Sep-20240 10

build.pyD06-Sep-20246.9 KiB200141

generated_file_import_test.pyD06-Sep-202443.2 KiB737736

grpc_version.pyD06-Sep-2024733 192

setup.pyD06-Sep-20242 KiB6337

README.rst

1Package "xds-protos" is a collection of ProtoBuf generated Python files for xDS protos (or the `data-plane-api <https://github.com/envoyproxy/data-plane-api>`_). You can find the source code of this project in `grpc/grpc <https://github.com/grpc/grpc>`_. For any question or suggestion, please post to https://github.com/grpc/grpc/issues.
2
3Each generated Python file can be imported according to their proto package. For example, if we are trying to import a proto located at "envoy/service/status/v3/csds.proto", whose proto package is "package envoy.service.status.v3", then we can import it as:
4
5::
6
7  # Import the message definitions
8  from envoy.service.status.v3 import csds_pb2
9  # Import the gRPC service and stub
10  from envoy.service.status.v3 import csds_pb2_grpc
11