import urllib,urllib2from bs4 import BeautifulSoup,Commenturl='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]总结
以上是内存溢出为你收集整理的Python:BeautifulSoup通过其类提取div标签之间的字符串全部内容,希望文章能够帮你解决Python:BeautifulSoup通过其类提取div标签之间的字符串所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)