python使用BeautifulSoup分析网页信息的方法
这段python代码查找网页上的所有链接,分析所有的span标签,并查找class包含titletext的span的内容
import urllib2
#specify the url you want to query
url = "http://www.python.org"
#Query the website and return the html to the variable 'page'
page = urllib2.urlopen(url)
#import the Beautiful soup functions to parse the data returned from the website
from BeautifulSoup import BeautifulSoup
#Parse the html in the 'page' variable, and store it in Beautiful Soup format
soup = BeautifulSoup(page)
#to print the soup.head is the head tag and soup.head.title is the title tag
print soup.head
print soup.head.title
#to print the length of the page, use the len function
print len(page)
#create a new variable to store the data you want to find.
tags = soup.findAll('a')
#to print all the links
print tags
#to get all titles and print the contents of each title
titles = soup.findAll('span', attrs = { 'class' : 'titletext' })
for title in allTitles:
print title.contents
希望本文所述对大家的Python程序设计有所帮助。
声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
相关文章
相关视频
专题推荐
-
独孤九贱-php全栈开发教程
全栈 170W+
主讲:Peter-Zhu 轻松幽默、简短易学,非常适合PHP学习入门
-
玉女心经-web前端开发教程
入门 80W+
主讲:灭绝师太 由浅入深、明快简洁,非常适合前端学习入门
-
天龙八部-实战开发教程
实战 120W+
主讲:西门大官人 思路清晰、严谨规范,适合有一定web编程基础学习
下一篇: cakephp执行流程代码解读
推荐阅读
-
Python使用scrapy抓取网站sitemap信息的方法
-
Python使用re模块实现信息筛选的方法
-
python使用htmllib分析网页内容的方法
-
Python获取基金网站网页内容、使用BeautifulSoup库分析html操作示例
-
C#使用WebClient登录网站并抓取登录后的网页信息实现方法
-
python基于BeautifulSoup实现抓取网页指定内容的方法
-
Python获取基金网站网页内容、使用BeautifulSoup库分析html操作示例
-
python使用BeautifulSoup分页网页中超链接的方法
-
python使用BeautifulSoup分析网页信息的方法
-
python使用正则表达式提取网页URL的方法
网友评论
文明上网理性发言,请遵守 新闻评论服务协议
我要评论