-
Per the gNMI specs, keys are unordered. With the current implementation, the following can be received in a single subscribe update event:
```
network-instance[name=overlay]/bgp-rib/ipv4-unicast/rib…
-
At https://github.com/akarneliuk/pygnmi/blob/master/pygnmi/client.py#L61 the code assumes the target consists of a host:port string.
I have an application that needs to connect locally, as in grpc…
-
greetings! I am trying to use pygnmi for connecting to a cisco Nexus 9000 series switch. and with the gnmic tool for command line i can get my commands to work as long as i use "--skip-verify" in my c…
-
Hi Anton,
I am encountering an issue, when using get with an path which returns val.uint_val.
For val.json_ietf_val everything works for fine, but is just ignored.
gNMI response:
---------------…
-
The 'Subscribe' request in 'stream' mode is (supposed to be) a long-lived subscription, returning responses from the server as they arrive.
For some reason, the current implementation only seems t…
-
The 'with' construct in Python calls the __enter__ and __exit__ methods. The library assumes that, to a point that things only work using with: ...
-
Hello,
i'm attempting to use pygnmi to get some data from a Juniper MX204, and I am running into issues. I suspect it may be with my router config, that I might be missing something to get things …
-
Hi Anton,
I verified the pygnmi path syntax and I am not sure, whether the pygnmi path generator implementation matches the gnmi spec ...
in client.py docstring the path is specified_
path = […
-
Hi @akarneliuk ,
This could quite possibly be me doing something wrong as I am new to gNMI configuration. Nevertheless, I get the following error upon trying a basic get request using pygnmi. Here…
-
Hi there! First of all, thanks for this library: it looks awesome!
You know I've been trying what I think is the simplest example, as you show in the main page of the project:
```
# modules
fr…