I am new to GRPC, and want to know how should a GRCP server which can read from a file and send the data to a GRCP client in python?
Scenario implementation: I have an excel file with two columns, ID and value. My understanding for implementation of this scenario is : 1- I will have to define a message in a protocol buffer file having these two attributes. 2- Inside my protocol buffer file, I will define a service which will send the data to the client. 3- Using GRPC tools I will then create _pb2.py and _pb2_grpc.py files. 4- Now I will write the GRPC server file in python. Inside this file I will override or define the service I have written in the protocol buffer file. My confusion is regarding this step. Do I have to read the excel in this step using python or do I have to make a database connection and pull the excel data from a database? Many thanks! -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/grpc-io/a59b9544-13c0-42fd-afd8-284be0ea34cfn%40googlegroups.com.
