Linux ams-business-8.hostwindsdns.com 4.18.0-553.80.1.lve.el8.x86_64 #1 SMP Wed Oct 22 19:29:36 UTC 2025 x86_64
LiteSpeed
Server IP : 192.236.177.161 & Your IP : 216.73.216.50
Domains :
Cant Read [ /etc/named.conf ]
User : ajzdfbpz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python3.6 /
site-packages /
html5lib /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2024-02-12 23:54
_trie
[ DIR ]
drwxr-xr-x
2024-02-12 23:54
filters
[ DIR ]
drwxr-xr-x
2024-02-12 23:54
treeadapters
[ DIR ]
drwxr-xr-x
2024-02-12 23:54
treebuilders
[ DIR ]
drwxr-xr-x
2024-02-12 23:54
treewalkers
[ DIR ]
drwxr-xr-x
2024-02-12 23:54
__init__.py
785
B
-rw-r--r--
2016-07-15 01:24
_ihatexml.py
16.31
KB
-rw-r--r--
2016-07-15 01:24
_inputstream.py
31.73
KB
-rw-r--r--
2016-07-15 01:24
_tokenizer.py
74.77
KB
-rw-r--r--
2016-07-15 01:24
_utils.py
3.99
KB
-rw-r--r--
2016-07-15 01:24
constants.py
81.43
KB
-rw-r--r--
2016-07-15 01:24
html5parser.py
114.4
KB
-rw-r--r--
2016-07-15 01:24
serializer.py
13.83
KB
-rw-r--r--
2016-07-15 01:24
Save
Rename
""" 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"] # this has to be at the top level, see how setup.py parses this __version__ = "0.999999999"