Metadata-Version: 2.4
Name: xds-protos
Version: 1.80.0
Summary: Generated Python code from envoyproxy/data-plane-api
Author-email: The gRPC Authors <grpc-io@googlegroups.com>
License-Expression: Apache-2.0
Project-URL: Homepage, https://grpc.io
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Description-Content-Type: text/x-rst
Requires-Dist: grpcio>=1.74.0
Requires-Dist: protobuf<7.0.0,>=6.31.1
Dynamic: requires-dist
Dynamic: requires-python

Package "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.

Each 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:

::

  # Import the message definitions
  from envoy.service.status.v3 import csds_pb2
  # Import the gRPC service and stub
  from envoy.service.status.v3 import csds_pb2_grpc
