Skip to content

Latest commit

 

History

History
38 lines (28 loc) · 992 Bytes

README.md

File metadata and controls

38 lines (28 loc) · 992 Bytes

service_demo

Build Status license

Python3 server and client examples for gRPC, Thrift and RPyC.

Service Example

  • TimeService implents get_time RPC call.
  • get_time returns the current server time in string format.

Implementations

  • grpc
  • thrift
  • thriftpy
  • rpyc
  • (Upcoming) grpc streaming
  • (Upcoming) thrift streaming
  • (Upcoming) rpyc streaming

How to use

  1. Create an virtualenv and install requirements.

    cd grpc
    pip3 install -r requirements.txt
  2. Run Server in one terminal window:

    python3 server.py
  3. Run Client in another terminal:

    python3 client.py