Jellyfin(8096), OrbStack(8097) 포트 충돌으로 변경. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
11 lines
320 B
Python
11 lines
320 B
Python
__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()
|