Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 1 | |
| 2 | .. _markup: |
| 3 | |
| 4 | ********************************** |
| 5 | Structured Markup Processing Tools |
| 6 | ********************************** |
| 7 | |
| 8 | Python supports a variety of modules to work with various forms of structured |
| 9 | data markup. This includes modules to work with the Standard Generalized Markup |
| 10 | Language (SGML) and the Hypertext Markup Language (HTML), and several interfaces |
| 11 | for working with the Extensible Markup Language (XML). |
| 12 | |
| 13 | It is important to note that modules in the :mod:`xml` package require that |
Georg Brandl | e6bcc91 | 2008-05-12 18:05:20 +0000 | [diff] [blame] | 14 | there be at least one SAX-compliant XML parser available. The Expat parser is |
| 15 | included with Python, so the :mod:`xml.parsers.expat` module will always be |
| 16 | available. |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 17 | |
| 18 | The documentation for the :mod:`xml.dom` and :mod:`xml.sax` packages are the |
| 19 | definition of the Python bindings for the DOM and SAX interfaces. |
| 20 | |
| 21 | |
| 22 | .. toctree:: |
| 23 | |
Georg Brandl | 9087b7f | 2008-05-18 07:53:01 +0000 | [diff] [blame] | 24 | html.parser.rst |
| 25 | html.entities.rst |
Georg Brandl | 116aa62 | 2007-08-15 14:28:22 +0000 | [diff] [blame] | 26 | pyexpat.rst |
| 27 | xml.dom.rst |
| 28 | xml.dom.minidom.rst |
| 29 | xml.dom.pulldom.rst |
| 30 | xml.sax.rst |
| 31 | xml.sax.handler.rst |
| 32 | xml.sax.utils.rst |
| 33 | xml.sax.reader.rst |
| 34 | xml.etree.elementtree.rst |