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

Python 简单业务爬虫

时间:2018-04-26 15:32:56      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:python   爬虫   


如何快速下载贴吧图片呢?

#!/usr/bin/python
# -*- coding: UTF-8 -*-
import urllib
import re

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

def getImg(html):
    reg = r'src="(.+?\.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

html = getHtml("http://tieba.baidu.com/p/2460150866")                                                                                                                  

print getImg(html)


Python 简单业务爬虫

标签:python   爬虫   

原文地址:http://blog.51cto.com/dengaosky/2108112

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