This module produces a parse tree of an XML document using the Expat library.

REQUIREMENTS (Debian packages)
------------

- python (2.3 or greater)
- python-dev

INSTALLATION
------------

- Run 'python setup.py install' to build and install the pytao module to the
  standard location.  To install to a custom location, use the --prefix and
  --exec-prefix options.  For example:

    python setup.py install --prefix=~/usr

- If you install to a custom location, make sure that you have the
  PYTHONPATH environment variable set appropriately.  For example,
  include a line like this in your ~/.bash_profile:

    export PYTHONPATH="/home/jrennie/usr/lib/python2.3/site-packages"

- After installation, you can use the test suite to ensure a proper
  installation and make sure that you have your PYTHONPATH set
  properly:

    python test/test_xml.py

BASIC USAGE
-----------

#!/usr/bin/env python
import xmlParseTree
f = 'file.xml'
t = xmlParseTree.parse(f)
print t
