2.7.7.1. Python Client Implementation

Client Initialization. 

with grpc.insecure_channel ("localhost:8888") as channel:

Single Argument Method Call. 

stub = AnExampleServiceStub (channel)
response = stub.OneToOne (request)

# Response available here ...