码迷,mamicode.com
首页 > 其他好文 > 详细

简单爬虫-初次尝试

时间:2016-06-23 12:30:00      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:

import urllib
import re
def getHtml(url):
    page = urllib.urlopen(url)
    html = page.read()
    return html
def getImg(html):
    reg = rsrc="(.+?\.jpg)" pic_ext
    imgre = re.compile(reg)
    imglist = re.findall(imgre,html)
    x = 0
    for imgurl in imglist:
        urllib.urlretrieve(imgurl,%s.jpg %x)
        x += 1
    return imglist
url = "http://user.qzone.qq.com/645886209/4"
html = getHtml(url)  
print getImg(html)
urllib.urlretrieve(http://imgsrc.baidu.com/forum/w%3D580/sign=294db374d462853592e0d229a0ee76f2/e732c895d143ad4b630e8f4683025aafa40f0611.jpg,0.jpg)

 

简单爬虫-初次尝试

标签:

原文地址:http://www.cnblogs.com/Kermit-Li/p/5610062.html

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