Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13634cf commit e85c350Copy full SHA for e85c350
2 files changed
Lib/xml/__init__.py
@@ -0,0 +1,13 @@
1
+"""Core XML support for Python.
2
+
3
+This package contains three sub-packages:
4
5
+dom -- The W3C Document Object Model. This supports DOM Level 1 +
6
+ Namespaces.
7
8
+parser -- Python wrappers for XML parsers (currently only supports Expat).
9
10
+sax -- The Simple API for XML, developed by XML-Dev, led by David
11
+ Megginson. This supports the SAX 2 API.
12
13
+"""
Lib/xml/dom/__init__.py
@@ -0,0 +1,10 @@
+"""W3C Document Object Model implementation for Python.
+The Python mapping of the Document Object Model is documented in <...>.
+This package contains the following modules:
+minidom -- A simple implementation of the Level 1 DOM with namespace
+ support added (based on the Level 2 specification).
0 commit comments