Skip to content
Snippets Groups Projects
client.py 198 B
Newer Older
TYLER CARAZA-HARTER's avatar
TYLER CARAZA-HARTER committed
import grpc
import math_pb2_grpc, math_pb2

channel = grpc.insecure_channel("localhost:5440")
stub = math_pb2_grpc.CalcStub(channel)

resp = stub.Mult(math_pb2.MultReq(x=3, y=4))
print(resp.result)