Python:BeautifulSoup通过其类提取div标签之间的字符串

前端之家收集整理的这篇文章主要介绍了Python:BeautifulSoup通过其类提取div标签之间的字符串前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
import urllib,urllib2
from bs4 import BeautifulSoup,Comment
url='http://www.amazon.in/product-reviews/B00CE2LUKQ/ref=cm_cr_pr_top_link_1?ie=UTF8&showViewpoints=0&sortBy=bySubmissionDateDescending'
content = urllib2.urlopen(url).read()
soup = BeautifulSoup(content,"html.parser")
rows =soup.find_all('div',attrs={"class" : "reviewText"})
print rows

代码用于从网站提取评论.我只需要文本 – 但我用div标签得到它们.

关于如何单独提取文本,我需要帮助.我需要单独的文本 – 在div类标签之间.

解决方法

for row in soup.find_all('div',attrs={"class" : "reviewText"}):
    print row.text

要么:

[row.text for row in rows]
原文链接:https://www.f2er.com/python/186168.html

猜你在找的Python相关文章