The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#) https://grpc.io/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Sergii Tkachenko de6ed9ba9f
[Python] Migrate from yapf to black (#33138)
1 year ago
..
BUILD Make Buildifier Sanity Test Strict (#27807) 3 years ago
README.cn.md Fix: remove the space on the left of colons 5 years ago
README.en.md fix the wrong word 5 years ago
alts_client.py [Python] Migrate from yapf to black (#33138) 1 year ago
alts_server.py [Python] Migrate from yapf to black (#33138) 1 year ago
client.py [Python] Migrate from yapf to black (#33138) 1 year ago
demo.proto Fix: add copyright headers in `demo.proto` 5 years ago
demo_pb2.py Update third_party/protobuf to 3.21.4 (#30377) 2 years ago
demo_pb2.pyi Update third_party/protobuf to 3.21.4 (#30377) 2 years ago
demo_pb2_grpc.py Update third_party/protobuf to 3.21.4 (#30377) 2 years ago
server.py [Python] Migrate from yapf to black (#33138) 1 year ago

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