python使用grpc实现rpc接口调用(附源码)
1,安装所需库:$ pip install grpcio$ pip install grpcio-tools$ pip install protobuf2,编写proto文件syntax = "proto3"; //定义使用proto3的语法协议package weather_test; //定义包名 message WeatherRequest { //定义客户端请求参数,其中"1","2"是指参数的序列号,新加参数需要递增 string cit




