gpt4 book ai didi

python - 如何摆脱 BeautifulSoup 用户警告?

转载 作者:IT老高 更新时间:2023-10-28 21:38:57 26 4
gpt4 key购买 nike

安装 BeautifulSoup 后,每当我从命令行运行 Python 时,都会出现以下警告:

D:\Application\python\lib\site-packages\beautifulsoup4-4.4.1-py3.4.egg\bs4\__init__.py:166:
UserWarning: No parser was explicitly specified, so I'm using the best
available HTML parser for this system ("html.parser"). This usually isn't a
problem, but if you run this code on another system, or in a different
virtual environment, it may use a different parser and behave differently.

To get rid of this warning, change this:

BeautifulSoup([your markup])

to this:

BeautifulSoup([your markup], "html.parser")

我不知道它为什么会出现以及如何解决它。

最佳答案

错误消息中明确说明了您的问题的解决方案。像下面这样的代码没有指定 XML/HTML/等。解析器。

BeautifulSoup( ... )

为了修复错误,您需要指定要使用的解析器,如下所示:

BeautifulSoup( ..., "html.parser" )

如果您愿意,也可以安装第 3 方解析器。

关于python - 如何摆脱 BeautifulSoup 用户警告?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33511544/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com