grpc Quick Start

Mickey·2022년 7월 29일
0

gRPC

목록 보기
1/1

https://grpc.io/docs/languages/python/quickstart/

Install

pip upgrade

$ python -m pip install --upgrade pip

install gRPC

$ python -m pip install grpcio

install gRPC tools

Python의 gRPC 도구에는 프로토콜 버퍼 컴파일러 protoc 및 .proto 서비스 정의에서 서버 및 클라이언트 코드를 생성하기 위한 특수 플러그인이 포함

$ python -m pip install grpcio-tools

Download the example

# Clone the repository to get the example code:
$ git clone -b v1.46.3 --depth 1 --shallow-submodules https://github.com/grpc/grpc
# Navigate to the "hello, world" Python example:
$ cd grpc/examples/python/helloworld

Run Hello World

examples/python/helloworld 디렉토리로 이동

$ python greeter_server.py
$ python greeter_client.py

profile
Mickey

0개의 댓글