您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 

11 行
320 B

  1. __doc__ = """Legacy interface to the BeautifulSoup HTML parser.
  2. """
  3. __all__ = ["parse", "convert_tree"]
  4. from .soupparser import convert_tree, parse as _parse
  5. def parse(file, beautifulsoup=None, makeelement=None):
  6. root = _parse(file, beautifulsoup=beautifulsoup, makeelement=makeelement)
  7. return root.getroot()