
                     PURE PYTHON XPATH EVALUATOR

		  http://sf.net/projects/pdis-xpath/

INSTALLATION 

You can install from cheeseshop (PyPI):

    $ easy_install PDIS-XPath

Or you can build and install python eggs from source

    $ tar xvfz PDIS-XPath-X.Y.Z.tgz
    $ cd PDIS-XPath-X.Y.Z
    $ sudo python setup.py install

If you want to install the "old-fashioned" way, you may use the following:

    $ sudo python setup.py install \
    >   --single-version-externally-managed \
    >   --record /dev/null

If you have a mix of PDIS eggs and PDIS standard library installations, you
will need to do the following in python before using PDIS-XPath:

    >>> from pkg_resources import require
    >>> require('PDIS-XPath')
    >>> from pdis import xpath
    [etc]
