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

用 Python 写一个爬图片的程序---------纪念我的第一个爬虫程序

时间:2016-04-16 12:21:56      阅读:294      评论:0      收藏:0      [点我收藏+]

标签:

 终于到这题了,话不多说。直接上代码。

#coding:utf-8
#By :晓明酱
#Date:2016/4/16
#参考:http://blog.csdn.net/xiaowanggedege/article/details/8650034
import urllib,re

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

def get_img(html):
    reg = rsrc="(.*?\.jpg)"
    imgre = re.compile(reg)                    #创建模式对象
    imglist = re.findall(imgre, html)        #列出所有的匹配项
    i = 0
    for imgurl in imglist:
        urllib.urlretrieve(imgurl, rD://img/%s.jpg%i)
        i+=1
html = get_html(http://tieba.baidu.com/p/4483145121)
print get_img(html)

用 Python 写一个爬图片的程序---------纪念我的第一个爬虫程序

标签:

原文地址:http://www.cnblogs.com/xaomng/p/5397991.html

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