1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
"""examples.structured_data.structured_data_genie"""
from scrapli.driver.core import IOSXEDriver
MY_DEVICE = {
"host": "172.18.0.11",
"auth_username": "scrapli",
"auth_password": "scrapli",
"auth_strict_key": False,
}
def main():
"""Simple example demonstrating getting structured data via textfsm/ntc-templates"""
with IOSXEDriver(**MY_DEVICE) as conn:
# Platform drivers will auto-magically handle disabling paging for you
result = conn.send_command("show run")
print(result.result)
print(result.genie_parse_output())
if __name__ == "__main__":
main()
|