napalm/command-sequences

Defines a series of commands to run on NAPALM managed device.

An array/list of commands to run on the NAPALM managed device by the napalm-commands blueprint.

The sequences can be valid Python lines, and must also be valid NAPALM directives to execute.

Example:

json.dumps(print(device.get_facts()))
print(device.get_interfaces_counters())

Warning

This is dangerous.