Skip to content

Instantly share code, notes, and snippets.

@afaqk9394
Created November 3, 2019 06:39
Show Gist options
  • Select an option

  • Save afaqk9394/de5dc6b8874d1bee3c30d80bca1770b7 to your computer and use it in GitHub Desktop.

Select an option

Save afaqk9394/de5dc6b8874d1bee3c30d80bca1770b7 to your computer and use it in GitHub Desktop.
list of all ACI nodes
from acitoolkit.acisession import Session
from acitoolkit.aciphysobject import Node
url = 'https://sandboxapicdc.cisco.com'
usr_name = 'admin'
password = 'ciscopsdt'
session = Session(url, usr_name, password)
nodes = Node.get(session)
for node in nodes:
print (node.name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment