Is there a full implementation? How is the library used, where is its website?
|
|
libxml2 has a number of advantages:
Downsides include:
If you are doing simple path selection, stick with ElementTree ( which is included in Python 2.5 ). If you need full spec compliance or raw speed and can cope with the distribution of native code, go with libxml2. Sample of libxml2 XPath Use
Sample of ElementTree XPath Use
|
|||||||||||||||
|
|
The lxml package supports xpath. It seems to work pretty well, although I've had some trouble with the self:: axis. There's also Amara, but I haven't used it personally. |
|||||||
|
|
Use LXML. LXML uses the full power of libxml2 and libxslt, but wraps them in more "Pythonic" bindings than the Python bindings that are native to those libraries. As such, it gets the full XPath 1.0 implementation. Native ElemenTree supports a limited subset of XPath, although it may be good enough for your needs. |
|||
|
|
|
Another option is py-dom-xpath, it works seamlessly with minidom and is pure Python so works on appengine.
|
|||||
|
|
The latest version of elementtree supports XPath pretty well. Not being an XPath expert I can't say for sure if the implementation is full but it has satisfied most of my needs when working in Python. I've also use lxml and PyXML and I find etree nice because it's a standard module. NOTE: I've since found lxml and for me it's definitely the best XML lib out there for Python. It does XPath nicely as well (though again perhaps not a full implementation). |
|||||
|
|
You can use: PyXML:
libxml2:
|
|||
|
|
|
Sounds like an lxml advertisement in here. ;) ElementTree is included in the std library. Under 2.6 and below its xpath is pretty weak, but in 2.7 much improved:
|
||||
|
|
|
PyXML works well. You didn't say what platform you're using, however if you're on Ubuntu you can get it with If you're on a Mac, xpath is already installed but not immediately accessible. You can set
In the worst case you may have to build it yourself. This package is no longer maintained but still builds fine and works with modern 2.x Pythons. Basic docs are here. |
||||
|
|
|
Another library is 4Suite: http://sourceforge.net/projects/foursuite/ I do not know how spec-compliant it is. But it has worked very well for my use. It looks abandoned. |
|||
|
|