Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

add element with attributes in minidom python

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 ?

like image 748
Amjad Syed Avatar asked Jul 28 '13 18:07

Amjad Syed


1 Answers

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>
like image 88
William A. Romero R. Avatar answered Sep 23 '22 12:09

William A. Romero R.