AttributeError: 'str' object has no attribute 'is_xml'
时间: 2023-11-04 15:01:19 浏览: 87
XML error
4星 · 用户满意度95%
这个错误是由于在使用BeautifulSoup(bs4)模块时,调用函数参数错误导致的。在您的代码中,应该将参数"from_encoding"传递给BeautifulSoup函数,而不是"encode"。您需要将代码修改为以下形式:
soup = BeautifulSoup(html_cont, mode, from_encoding=encode)
这样就可以解决这个错误了。
阅读全文