SILENT KILLERPanel

Current Path: > > lib > python3.8 > site-packages > pip > _vendor > html5lib >


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: //lib/python3.8/site-packages/pip/_vendor/html5lib/

NameTypeSizeLast ModifiedActions
__pycache__ Directory - -
_trie Directory - -
filters Directory - -
treeadapters Directory - -
treebuilders Directory - -
treewalkers Directory - -
__init__.py File 1162 bytes October 17 2023 18:30:24.
_ihatexml.py File 16705 bytes October 17 2023 18:30:24.
_inputstream.py File 32552 bytes October 17 2023 18:30:24.
_tokenizer.py File 76580 bytes October 17 2023 18:30:24.
_utils.py File 4015 bytes October 17 2023 18:30:24.
constants.py File 83518 bytes October 17 2023 18:30:24.
html5parser.py File 118963 bytes October 17 2023 18:30:24.
serializer.py File 15758 bytes October 17 2023 18:30:24.

Reading File: //lib/python3.8/site-packages/pip/_vendor/html5lib//__init__.py

"""
HTML parsing library based on the `WHATWG HTML specification
<https://whatwg.org/html>`_. 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::

    from pip._vendor import html5lib
    with open("my_document.html", "rb") as f:
        tree = html5lib.parse(f)

For convenience, this module re-exports the following names:

* :func:`~.html5parser.parse`
* :func:`~.html5parser.parseFragment`
* :class:`~.html5parser.HTMLParser`
* :func:`~.treebuilders.getTreeBuilder`
* :func:`~.treewalkers.getTreeWalker`
* :func:`~.serializer.serialize`
"""

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
#: Distribution version number.
__version__ = "1.0.1"

SILENT KILLER Tool