9 lines
197 B
Python
9 lines
197 B
Python
|
import grpc
|
||
|
import documents_pb2_grpc
|
||
|
import documents_pb2
|
||
|
|
||
|
print("正在连接...")
|
||
|
channel = grpc.insecure_channel('localhost:8081')
|
||
|
|
||
|
stub = documents_pb2_grpc.DocumentSearchServiceStub(channel)
|