https://grpc.io/docs/languages/python/quickstart/
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
# 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
examples/python/helloworld 디렉토리로 이동
$ python greeter_server.py
$ python greeter_client.py