✏️ 正在编辑: ElementSoup.py
路径:
/opt/cloudlinux/venv/lib/python3.11/site-packages/lxml/html/ElementSoup.py
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
__doc__ = """Legacy interface to the BeautifulSoup HTML parser. """ __all__ = ["parse", "convert_tree"] from .soupparser import convert_tree, parse as _parse def parse(file, beautifulsoup=None, makeelement=None): root = _parse(file, beautifulsoup=beautifulsoup, makeelement=makeelement) return root.getroot()
💾 保存文件
← 返回文件管理器