From e4e82ef1c670e18d3b69a61012f28948a211fc93 Mon Sep 17 00:00:00 2001 From: fluzzi Date: Mon, 4 Apr 2022 14:14:25 -0300 Subject: [PATCH] updates --- docs/connpy/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/connpy/index.html b/docs/connpy/index.html index dc8795f..4d7b124 100644 --- a/docs/connpy/index.html +++ b/docs/connpy/index.html @@ -84,7 +84,7 @@ options:

the automation module

Standalone module

import connpy
-router = connpy.node("unique name","ip/hostname", user="username", password="pass")
+router = connpy.node("unique name","ip/hostname", user="user", password="pass")
 router.run(["term len 0","show run"])
 print(router.output)
 hasip = router.test("show ip int brief","1.1.1.1")
@@ -204,7 +204,7 @@ the automation module
 ### Standalone module
 ```
 import connpy
-router = connpy.node("unique name","ip/hostname", user="username", password="pass")
+router = connpy.node("unique name","ip/hostname", user="user", password="pass")
 router.run(["term len 0","show run"])
 print(router.output)
 hasip = router.test("show ip int brief","1.1.1.1")