bridge is a Python XML library project to provide a high level and clean interface for manipulating XML documents.
bridge parses the xml document with the specified parser and builds its own in-memory representation of the XML document. The underlying engine resources will then be released.
This means that once loaded into an Element there is no relationship with the underlying used engine. It’s just pure Python elements being linked together in a tree.
bridge does not try to be the ultimate XML library. What it offers is simply a way to make applications independent from the preferred XML engine, increasing portability. bridge does not provide the full XML machinery and therefore does not support XPath nor XSLT. bridge simply loads an XML document and makes it easy to navigate through.