There’s nothing beyond a partial proof of concept at the moment.
I have a hyper-h2 HTTP2 server extension running in Nameko, and I’m attempting to hook up the GRPC components. It’s really just an experiment at this point because I am new to both GRPC and HTTP2.
I want the eventual API to look something like:
class Service:
@grpc(GreeterStub.SayHello)
def say_hello(self, request, context):
return HelloReply(message="Hello, %s!" % request.name)