I am experimenting with the Skaffold Event API. From a python application I would like to listen to the events over HTTP that are exposed through port 50052 on the /v1/events endpoint.
I have compiled the .proto files to python by roughly following this gRPC guide and I can listen to the events by connecting to the gRPC server on 50051 using the generated code.
I have tried the python library hyper to listen push events through an HTTP2 connection with no luck.
I would like to avoid the overhead of generating code. Is it possible to listen to the Events API through other means?