blob: 5d0fea5f8a313f4c8fe37f110227dc4dbce14915 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
"""Simple API for XML (SAX) implementation for Python.
This module provides an implementation of the SAX 2 interface;
information about the Java version of the interface can be found at
http://www.megginson.com/SAX/. The Python version of the interface is
documented at <...>.
This package contains the following modules:
saxutils -- Implementation of the convenience functions normally used
to work with SAX.
saxlib -- Implementation of the shared SAX 2 classes.
drv_pyexpat -- Driver that allows use of the Expat parser with the classes
defined in saxlib.
"""
from handler import *
from expatreader import *
from _exceptions import *
from saxutils import *
from _exceptions import SAXParseException
import xmlreader
|