Skip to content

Latest commit

 

History

History
36 lines (19 loc) · 1.15 KB

README.md

File metadata and controls

36 lines (19 loc) · 1.15 KB

gRPC-Python-QuickStart

clean gRPC-Python start kit

Simple working exmample for Python gRPC

Because example given from the gRPC offical site is too large to handle for those who just want to make with python.

I will add my own sample and also cover most of the examples from gRPC repository

1. Hello World - from gRPC/gRPC

Basic example from gRPC/gRPC

hello_world_image

2. chat with GUI chat

Using basic gRPC server and client(Sync) with GUI(tkinter)

chat_example_image

3. chat with GUI chat_stream

Uses same GUI script(gui.py from 2.chat with GUI) but use streaming connection

working in progress

interceptor concept image

gRPC Interceptors for client and server side