"""Tree adapters let you convert from one tree structure to another Example: .. code-block:: python from pip._vendor import html5lib from pip._vendor.html5lib.treeadapters import genshi doc = '<html><body>Hi!</body></html>' treebuilder = html5lib.getTreeBuilder('etree') parser = html5lib.HTMLParser(tree=treebuilder) tree = parser.parse(doc) TreeWalker = html5lib.getTreeWalker('etree') genshi_tree = genshi.to_genshi(TreeWalker(tree)) """ from __future__ import absolute_import, division, unicode_literals from . import sax __all__ = ["sax"] try: from . import genshi # noqa except ImportError: pass else: __all__.append("genshi")
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
__pycache__ | Folder | 0755 |
|
|
.__init__.pyo.40009 | File | 988 B | 0644 |
|
.genshi.pyo.40009 | File | 1.86 KB | 0644 |
|
__init__.py | File | 679 B | 0644 |
|
__init__.pyc | File | 988 B | 0644 |
|
__init__.pyo | File | 988 B | 0644 |
|
genshi.py | File | 1.67 KB | 0644 |
|
genshi.pyc | File | 1.86 KB | 0644 |
|
genshi.pyo | File | 1.86 KB | 0644 |
|
sax.py | File | 1.73 KB | 0644 |
|
sax.pyc | File | 1.86 KB | 0644 |
|
sax.pyo | File | 1.79 KB | 0644 |
|