BeautifulSoupをインストールした後、cmdでPythonを実行するたびに、この警告が表示されます。BeautifulSoupユーザーの警告を取り除くには?
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")
私は理想的ではないし、それを解決する方法はありません。
メッセージは何をする正確に何を言っている: 'BeautifulSoup([マークアップ]、 "html.parser")'。あなたはそれをして、あなたの出力が何であるかを見ましたか? BeautifulSoupはあなたの人生を楽にしようとしています。スープを聞く。 :) – idjaw
'soup = BeautifulSoup(html)'のようなコードを 'soup = BeautifulSoup(html、" html.parser ")'に変更してください。 –
ありがとうございました! :D – jellyfishhuang