This project aims to be a base building block for gNMI projects written in Python.
The process of building pythonic libraries and applications using gRPC and Protocol Buffers have been fragmented. This often means that a developer needs to copy over proto files, generate Python source from these using protoc and use them in-tree for their project. There already exists several projects built in this fashion. While functional, these can be hard to reuse or maintain, often times resulting stale code and no versioning.
gnmi-proto builds on top of the improvement already done by betterproto and in turn by the grpclib library. Here, we make available, as versioned packages, code generated from gNMI protocol buffers.
The default implementation makes use of the betterprotoprotoc plugin to generate clean modern code. In addition, this also provides a gnmi.proto.legacy module exposing code generated by protoc using the the in-built Python generator.
The following code expects a server at 127.0.0.1:9339 with the test configuration. Refer to gNMI Target Server section in CONTRIBUTING.md for information on how to set it up.
importgnmi.protoimportgrpclib.clientasyncdefmain(): channel=grpclib.client.Channel(host="127.0.0.1", port=9339, ssl=None) service=gnmi.proto.gNMIStub( channel, metadata={"username": "admin", "password": "secret"} ) response=awaitservice.capabilities() print(response.to_json(indent=2)) request=gnmi.proto.GetRequest( path=[gnmi.proto.Path(elem=[gnmi.proto.PathElem(name="interfaces")])], ) response=awaitservice.get(request) print(response.to_json(indent=2)) if__name__=="__main__": importasyncioasyncio.run(main())importgnmi.proto.legacyimportgrpcdefmain(): channel=grpc.insecure_channel("127.0.0.1:9339") metadata= [("username", "admin"), ("password", "secret")] service=gnmi.proto.legacy.gNMIStub(channel) response=service.Capabilities(gnmi.proto.legacy.CapabilityRequest()) print(response) response=service.Get( gnmi.proto.legacy.GetRequest( path=[ gnmi.proto.legacy.Path( elem=[gnmi.proto.legacy.PathElem(name="interfaces")] ) ], ), metadata=metadata, ) print(response) if__name__=="__main__": main()