# grpc-gcp-python **Repository Path**: mirrors_GoogleCloudPlatform/grpc-gcp-python ## Basic Information - **Project Name**: grpc-gcp-python - **Description**: No description available - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2026-02-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # gRPC for GCP extensions Copyright 2018 [The gRPC Authors](https://github.com/grpc/grpc/blob/master/AUTHORS) ## About This Repository This repo is created to support GCP specific extensions for gRPC. To use the extension features, please refer to [grpcio-gcp](src). This repo also contains supporting infrastructures such as end2end tests and benchmarks for accessing cloud APIs with gRPC client libraries. ## Testing Download from github ```sh $ git clone https://github.com/GoogleCloudPlatform/grpc-gcp-python.git $ cd grpc-gcp-python $ git submodule update --init --recursive ``` Setup credentials. See [Getting Started With Authentication](https://cloud.google.com/docs/authentication/getting-started) for more details. ```sh $ export GOOGLE_APPLICATION_CREDENTIALS=path/to/key.json ``` Install the gRPC-GCP extension ```sh $ src/setup.sh ``` Install the gRPC-GCP extension test & benchmark suite ```sh $ tests/setup.sh ``` Run end to end integration tests. ```sh $ tests/integration.sh ``` Run end to end benchmark with gRPC-GCP extension. ```sh $ tests/benchmark.sh --gcp ``` Run end to end benchmark without gRPC-GCP extension. For comparison purspose. ```sh $ tests/benchmark.sh ``` Run grpc channel unit tests. ```sh $ tests/unit.sh ``` Run stress test against grpc client calls with weights. ```sh $ tests/stress.sh --gcp --weighted_cases 'list_sessions:100' ```