|
|
马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
使用BeautifulSoup4时 ,出现
Warning (from warnings module):
File "C:\Users\12415\AppData\Local\Programs\Python\Python35\lib\site-packages\bs4\__init__.py", line 181
markup_type=markup_type))
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.
The code that caused this warning is on line 1 of the file <string>. To get rid of this warning, change code that looks like this:
BeautifulSoup([your markup])
to this:
BeautifulSoup([your markup], "html.parser"
这是怎么回事?
BeautifulSoup([your markup])
to this:
BeautifulSoup([your markup], "html.parser"
按照这个改!
|
|