feat: Add gNMI discovery CLI tools for YANG path exploration #21

Merged
Damien merged 6 commits from feat-discoverytools into main 2026-01-07 12:00:05 +00:00
Showing only changes of commit 97cdc161da - Show all commits

View File

@@ -3,7 +3,6 @@ gNMI Client Wrapper for Fabric Orchestrator.
This module provides a high-level gNMI client using pygnmi with:
- Connection management
- Async context manager support
- Error handling with meaningful exceptions
"""
@@ -82,10 +81,6 @@ class GNMIClient:
Provides high-level methods for gNMI operations with proper
error handling and context manager support.
Usage:
async with GNMIClient(host="leaf1", port=6030, ...) as client:
caps = await client.capabilities()
Or synchronously:
with GNMIClient(host="leaf1", port=6030, ...) as client:
caps = client.capabilities()