我想提取這個響應的內容:如何提取特定的段落標記
<div class="bio-container">
<p class="bio profile" >
Chinedu is a good boy
</p>
</div>
請假設也存在不同的階級屬性,其他paragrpah標籤,但我想提取這一帶班屬性「生物配置文件」
我只是想提取chinedu是一個好男孩的文件。
我試圖desc = bs.find ('p', {'class' : 'bio profile'})
但不工作
這是我想申請上述答案我確切的代碼:
import urllib
from bs4 import BeautifulSoup as bsoup
import string
httpResponse = urllib.urlopen("https://twitter.com/drericcole")
html = httpResponse.read()
bs = bsoup(html)
desc = bs.find("p", class_="bio profile-field")
print desc.get_text().strip()
,但我得到一個錯誤的語句
print desc.get_text().strip()
AttributeError: 'NoneType' object has no attribute 'get_text'
將''bio profile-field''改成''bio profile'''。 – Manhattan