当前位置:  开发笔记 > 编程语言 > 正文

如何在Python中从<span class =“ className”>我想要的文本</ span>中获取文本

如何解决《如何在Python中从<spanclass=“className”>我想要的文本</span>中获取文本》经验,为你挑选了1个好方法。

如何根据标题获得文本,根据标题获得21,427以下屏幕截图。

我尝试了一下,但没有成功:

rating_count = soup.find("span", attrs={'class':'rating_count'})
print rating_count

这是输出



1> David A..:

这将完全满足您的需求。

from BeautifulSoup import BeautifulSoup

data='TEXT I WANT'
soup=BeautifulSoup(data)
t=soup.find('span',{'class':'rating-count'})
print t.text

编辑:

根据您提供的代码。好像没有定义标题,因此Google不会发送您要查找的信息。因此,BeautifulSoup无法找到跨度,因为它实际上不存在。试试这个,对我有用:

pkg = "com.mavdev.focusoutfacebook"
url = "https://play.google.com/store/apps/details?id=" + pkg
opener = urllib2.build_opener()
opener.addheaders = [('User-agent', 'Mozilla/5.0')]
data = opener.open(url).read()

soup=BeautifulSoup(data)

t=soup.find('span',{'class':'rating-count'})
print t.text

结果:

>>> 
1,397

推荐阅读
赛亚兔备_393
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有