Differences between revisions 1 and 2
Revision 1 as of 2007-04-25 02:57:15
Size: 1431
Editor: adsl-75-3-84-21
Comment: learn by example
Revision 2 as of 2008-11-15 13:59:36
Size: 1431
Editor: localhost
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
[[TableOfContents(2)]] <<TableOfContents(2)>>

Learning python by example

Python XML & XSLT

Create and add elements

from xml.dom.minidom import parseString
  • creating new document, and root element at the same time.

doc = parseString(u'<top/>'.encode('UTF-8'))
  • print doc.toprettyxml() will show you how it looks
  • this would create:

<?xml version="1.0" ?>
<top/>
  • Now we reference to our <top/> element by:

top_element=doc.documentElement
  • We create another element by:

element1=doc.createElementNS(None,u'section1')
  • Add it under our top element by:

top_element.appendChild(element1)
  • Create another element and add it under element1

element1.appendChild(doc.createElementNS(None,u'subsection1'))
  • How to create a text node:

text1=doc.createTextNode(u'My first text')
  • Since we have no reference to subsection1. We start at reference to element1

element1.firstChild.appendChild(text1)
  • add second subelement:

element1.appendChild(doc.createElementNS(None,u'subsection2'))
  • create next text element, and add it to subsection2

text2=doc.createTextNode(u'My second text')
element1.lastChild.appendChild(text2)
  • We are working with references. To switch text in subsections, you could do:

element1.firstChild.appendChild(text2)
element1.lastChild.appendChild(text1)

LearnPython (last edited 2008-11-15 13:59:36 by localhost)

Unable to edit the page? See the FrontPage for instructions.