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

python之小爬虫

时间:2017-06-29 22:29:30      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:gre   rac   mpi   log   抓取   read   程序   port   爬虫   

#!/usr/bin/python
#抓取网页上的图片保存
import urllib
import urllib.request                                 //python3版本将urllib2分成urllib.request和urllib.error
import re

def gethtml(url):
    page = urllib.request.urlopen(url)
    html = page.read()
    return html

def getImages(html):
    reg = r‘src="(.*?\.jpg)"‘
    imgre = re.compile(reg)
    imglist = re.findall(imgre,html.decode(‘utf-8‘))
    x = 0
    for i in imglist:
        urllib.request.urlretrieve(i,r‘E:\python_practice\%s.jpg‘%(x))
        x = x + 1

html=gethtml("http://www.u148.net/article/35256.html")
getImages(html)

 该小程序是根据某个视频教学中写的,记录下,能跑成功一个小爬虫的程序,很是鸡冻。

python之小爬虫

标签:gre   rac   mpi   log   抓取   read   程序   port   爬虫   

原文地址:http://www.cnblogs.com/evablogs/p/7096355.html

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