码迷,mamicode.com
首页 > 编程语言 > 详细

python 爬虫

时间:2015-06-17 00:26:10      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

import urllib2 as url
import re
urls = ‘http://www.php100.com/html/it/‘
headers = {‘User-Agent‘:‘Mozilla/5.0 (X11; U; Linux i686)Gecko/20071127 Firefox/2.0.0.11‘} 
req = url.Request(urls,headers=headers) 
htm = url.urlopen(urls)
content = htm.read()

res = r‘<h2>(.*)<\/h2>‘
r = re.compile(res,re.I)

res_title=r‘<title>(.*)</title>‘
r_title = re.compile(res_title,re.I)
arr_title = r_title.findall(content)
print arr_title[0]

arr = r.findall(content)
for i in arr:
    print i

  

python 爬虫

标签:

原文地址:http://www.cnblogs.com/legend-song/p/4582154.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!