This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| - name: Get current SNMP Community Configuration | |
| ios_command: | |
| port: "{{ port | default('22') }}" | |
| commands: "show running | inc snmp-server community" | |
| register: snmp_community_before #registers the result of above command into this variable |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo " " | |
| echo "----Directory Management Made Easy----" | |
| echo " " | |
| ch=0 | |
| while [ $choice -lt 6 ] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import xml.etree.ElementTree as ET | |
| tree = ET.parse('persons.xml') | |
| root = tree.getroot() | |
| print(ET.tostring(root, encoding='utf8').decode('utf8')) | |
| print('\nNumber of Elements:') | |
| print(len(root)) | |
| print('\nNumber of Sub-Elements:') | |
| print(len(root[0])) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <breakfast_menu> | |
| <food> | |
| <name>Belgian Waffles</name> | |
| <price>$5.95</price> | |
| <description> | |
| Two of our famous Belgian Waffles with plenty of real maple syrup | |
| </description> | |
| <calories>650</calories> | |
| </food> | |
| <food> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "breakfast_menu": { | |
| "food": [ | |
| { | |
| "name": "Belgian Waffles", | |
| "price": "$5.95", | |
| "description": "Two of our famous Belgian Waffles with plenty of real maple syrup", | |
| "calories": "650" | |
| }, | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "breakfast_menu": [ | |
| "food": { | |
| { | |
| "name": "Belgian Waffles", | |
| "price": "$5.95", | |
| "description": "Two of our famous Belgian Waffles with plenty of real maple syrup", | |
| "calories": "650" | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "breakfast_menu": [ | |
| "food": { | |
| { | |
| "name": "Belgian Waffles", | |
| "price": "$5.95", | |
| "description": "Two of our famous Belgian Waffles with plenty of real maple syrup", | |
| "calories": "650" | |
| }, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "breakfast_menu": { | |
| "food" [ : | |
| { | |
| "name": "Belgian Waffles", | |
| "price": "$5.95", | |
| "description": "Two of our famous Belgian Waffles with plenty of real maple syrup", | |
| "calories": "650" | |
| }, | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "breakfast_menu": { | |
| "food": [ | |
| { | |
| "name": "Belgian Waffles" | |
| "price": "$5.95", | |
| "description": "Two of our famous Belgian Waffles with plenty of real maple syrup", | |
| "calories": "650" | |
| }, | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "bookstore": { | |
| "book": [ | |
| { | |
| "title": { | |
| "_lang": "en", | |
| "__text": "Everyday Italian" | |
| }, | |
| "author": "Giada De Laurentiis", | |
| "year": "2005", |