Hackfut Security File Manager
Current Path:
/usr/lib/python2.6/site-packages/pip/_vendor/html5lib
usr
/
lib
/
python2.6
/
site-packages
/
pip
/
_vendor
/
html5lib
/
📁
..
📄
__init__.py
(714 B)
📄
__init__.pyc
(1.07 KB)
📄
__init__.pyo
(1.07 KB)
📄
constants.py
(84.84 KB)
📄
constants.pyc
(83.39 KB)
📄
constants.pyo
(83.39 KB)
📁
filters
📄
html5parser.py
(114.6 KB)
📄
html5parser.pyc
(119.75 KB)
📄
html5parser.pyo
(118.83 KB)
📄
ihatexml.py
(16.19 KB)
📄
ihatexml.pyc
(15.17 KB)
📄
ihatexml.pyo
(15.09 KB)
📄
inputstream.py
(30.92 KB)
📄
inputstream.pyc
(27.49 KB)
📄
inputstream.pyo
(27.04 KB)
📄
sanitizer.py
(17.25 KB)
📄
sanitizer.pyc
(15.04 KB)
📄
sanitizer.pyo
(15.04 KB)
📁
serializer
📄
tokenizer.py
(75.13 KB)
📄
tokenizer.pyc
(53.32 KB)
📄
tokenizer.pyo
(53.28 KB)
📁
treeadapters
📁
treebuilders
📁
treewalkers
📁
trie
📄
utils.py
(3.19 KB)
📄
utils.pyc
(3.53 KB)
📄
utils.pyo
(3.49 KB)
Editing: __init__.py
""" HTML parsing library based on the WHATWG "HTML5" specification. The parser is designed to be compatible with existing HTML found in the wild and implements well-defined error recovery that is largely compatible with modern desktop web browsers. Example usage: import html5lib f = open("my_document.html") tree = html5lib.parse(f) """ from __future__ import absolute_import, division, unicode_literals from .html5parser import HTMLParser, parse, parseFragment from .treebuilders import getTreeBuilder from .treewalkers import getTreeWalker from .serializer import serialize __all__ = ["HTMLParser", "parse", "parseFragment", "getTreeBuilder", "getTreeWalker", "serialize"] __version__ = "1.0b5"
Upload File
Create Folder