grpc/examples/python/data_transmission
Esun Kim 7be821ac47 Yapf all target python sources 2020-01-03 09:25:10 -08:00
..
README.cn.md Fix: remove the space on the left of colons 2019-09-17 09:37:56 +08:00
README.en.md fix the wrong word 2019-10-01 05:13:33 +08:00
client.py Yapf all target python sources 2020-01-03 09:25:10 -08:00
demo.proto Fix: add copyright headers in `demo.proto` 2019-09-11 10:23:31 +08:00
demo_pb2.py Fix: Cancel the modification of the package search path and Remove useless notes 2019-08-27 10:17:08 +08:00
demo_pb2_grpc.py Fix: Cancel the modification of the package search path and Remove useless notes 2019-08-27 10:17:08 +08:00
server.py Yapf all target python sources 2020-01-03 09:25:10 -08:00

README.en.md

Data transmission demo for using gRPC in Python

Four ways of data transmission when gRPC is used in Python. Official Guide

  • unary-unary

    In a single call, the client can only send request once, and the server can only respond once.

    client.py: simple_method

    server.py: SimpleMethod

  • stream-unary

    In a single call, the client can transfer data to the server an arbitrary number of times, but the server can only return a response once.

    client.py: client_streaming_method

    server.py: ClientStreamingMethod

  • unary-stream

    In a single call, the client can only transmit data to the server at one time, but the server can return the response many times.

    client.py: server_streaming_method

    server.py: ServerStreamingMethod

  • stream-stream

    In a single call, both client and server can send and receive data to each other multiple times.

    client.py: bidirectional_streaming_method

    server.py: BidirectionalStreamingMethod