18

I want to add a child node with attributes to a specific tag. my xml is

<deploy>
</deploy>

and the output should be

<deploy>
  <script name="xyz" action="stop"/>
</deploy>

so far my code is:

dom = parse("deploy.xml")
script = dom.createElement("script")
dom.childNodes[0].appendChild(script)
dom.writexml(open(weblogicDeployXML, 'w'))
script.setAttribute("name", args.script)

How can I figure out how to find deploy tag and append child node with attributes ?

Anand S Kumar
  • 88,551
  • 18
  • 188
  • 176
Amjad Syed
  • 185
  • 1
  • 1
  • 8

1 Answers1

29

xml.dom.Element.setAttribute

xmlFile = minidom.parse( FILE_PATH )

for script in SCRIPTS:

    newScript = xmlFile.createElement("script")

    newScript.setAttribute("name"  , script.name)
    newScript.setAttribute("action", script.action)

    newScriptText = xmlFile.createTextNode( script.description )

    newScript.appendChild( newScriptText  )
    xmlFile.childNodes[0].appendChild( newScript )

print xmlFile.toprettyxml()

Output file:

<?xml version="1.0" ?>
<scripts>
    <script action="list" name="ls" > List a directory </script>
    <script action="copy" name="cp" > Copy a file/directory </script>
    <script action="move" name="mv" > Move a file/directory </script>
    .
    .
    .
</scripts>
codewing
  • 674
  • 8
  • 25