Differences between revisions 7 and 8
Revision 7 as of 2009-01-18 20:58:44
Size: 516
Editor: StefanBehnel
Comment:
Revision 8 as of 2009-06-21 12:29:43
Size: 780
Editor: StefanBehnel
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
'''Note''': some of these also describe the use of PyXML, which is an outdated XML package that is no longer maintained and should not be used in new code. = ElementTree and lxml: =
Line 3: Line 3:
Introduction to different XML libraries: http://diveintopython.org/xml_processing/index.html

Python XML FAQ: http://www.rexx.com/~dkuhlman/pyxmlfaq.html
''Start here if you want to write new code for XML processing''
Line 11: Line 9:
''Python XML Processing with'' `lxml`: http://www.nmt.edu/tcc/help/pubs/pylxml Python XML Processing with `lxml`: http://www.nmt.edu/tcc/help/pubs/pylxml

= DOM/SAX: =

''Start here if you need to maintain existing DOM/SAX code that uses the `xml.dom` and `xml.sax` packages, or want to process XML using these packages''

'''Note''': some of these also describe the use of PyXML, which is an outdated XML package that is no longer maintained and should not be used in new code.

Python XML FAQ: http://www.rexx.com/~dkuhlman/pyxmlfaq.html

Introduction to different XML libraries: http://diveintopython.org/xml_processing/index.html

ElementTree and lxml:

Start here if you want to write new code for XML processing

ElementTree tutorial: http://effbot.org/zone/element.htm

lxml tutorial: http://codespeak.net/lxml/tutorial.html

Python XML Processing with lxml: http://www.nmt.edu/tcc/help/pubs/pylxml

DOM/SAX:

Start here if you need to maintain existing DOM/SAX code that uses the xml.dom and xml.sax packages, or want to process XML using these packages

Note: some of these also describe the use of PyXML, which is an outdated XML package that is no longer maintained and should not be used in new code.

Python XML FAQ: http://www.rexx.com/~dkuhlman/pyxmlfaq.html

Introduction to different XML libraries: http://diveintopython.org/xml_processing/index.html

Tutorials on XML processing with Python (last edited 2019-06-20 18:47:48 by IgorRocha)

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