1 | n/a | """Core XML support for Python. |
---|
2 | n/a | |
---|
3 | n/a | This package contains four sub-packages: |
---|
4 | n/a | |
---|
5 | n/a | dom -- The W3C Document Object Model. This supports DOM Level 1 + |
---|
6 | n/a | Namespaces. |
---|
7 | n/a | |
---|
8 | n/a | parsers -- Python wrappers for XML parsers (currently only supports Expat). |
---|
9 | n/a | |
---|
10 | n/a | sax -- The Simple API for XML, developed by XML-Dev, led by David |
---|
11 | n/a | Megginson and ported to Python by Lars Marius Garshol. This |
---|
12 | n/a | supports the SAX 2 API. |
---|
13 | n/a | |
---|
14 | n/a | etree -- The ElementTree XML library. This is a subset of the full |
---|
15 | n/a | ElementTree XML release. |
---|
16 | n/a | |
---|
17 | n/a | """ |
---|
18 | n/a | |
---|
19 | n/a | |
---|
20 | n/a | __all__ = ["dom", "parsers", "sax", "etree"] |
---|