2017-09-07 10 views
1
from bs4 import BeautifulSoup 
html_doc=''' 
html_doc = """ 
<html><head><title>The Dormouse's story</title></head> 
<body> 
<p class="title"><b>The Dormouse's story</b></p> 

<p class="story">Once upon a time there were three little sisters; and their names were 
<a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>, 
<a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and 
<a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>; 
and they lived at the bottom of a well.</p> 

<p class="story">...</p> 
""" 
''' 

soup = BeautifulSoup(html_doc) 

print(soup.prettify()) 

これは私のコードです。それは非常に簡単ですが、私はまだ次のエラーが発生しています:ImportError:名前 'CharsetMetaAttributeValue'をインポートできません。

ImportError: cannot import name 'CharsetMetaAttributeValue'

私は誰に教えてください?

+1

"from bs4.element import CharsetMetaAttributeValue"をエラーなく実行できますか?あなたのインストールで何か問題がなければ。また、名前の競合を探します。 –

答えて

0
from bs4 import BeautifulSoup 
html_doc=''' 
html_doc = """ 
<html><head><title>The Dormouse's story</title></head> 
<body> 
<p class="title"><b>The Dormouse's story</b></p> 

<p class="story">Once upon a time there were three little sisters; and their names were 
<a href="http://example.com/elsie" class="sister" id="link1">Elsie</a>, 
<a href="http://example.com/lacie" class="sister" id="link2">Lacie</a> and 
<a href="http://example.com/tillie" class="sister" id="link3">Tillie</a>; 
and they lived at the bottom of a well.</p> 

<p class="story">...</p> 
""" 
''' 

soup = BeautifulSoup(html_doc) 

print(soup.prettify()) 

このコードはうまく動作し、bs4モジュールを再インストールしてみてください。問題が解決する可能性があります。デフォルトではhtml.parserの代わりにlxmlパーサーを試してみてください。

+0

ありがとう〜 私はbs4を再インストールして問題を解決しました。 – nikepinapple

関連する問題