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
2. chat with GUI chat
Using basic gRPC server and client(Sync) with GUI(tkinter)
3. chat with GUI chat_stream
Uses same GUI script(gui.py from 2.chat with GUI
) but use streaming connection
working in progress
5. interceptor
gRPC Interceptors for client and server side