python爬虫(爬取蜂鸟网高像素图片)_空网页,错误处理

__author__ = 'AllenMinD'
import requests,urllib,os
from bs4 import  BeautifulSoup

ans = 1 #counting

for page in range(0,43):
    flag = 1 #web exists or not
    if page<10:
        url = 'http://bbs.fengniao.com/forum/pic/slide_101_8903443_8017670'+str(page)+'.html'
    else:
        url = 'http://bbs.fengniao.com/forum/pic/slide_101_8903443_801767'+str(page)+'.html'
    source_code = requests.get(url)
    plain_text = source_code.text

    soup = BeautifulSoup(plain_text,'lxml')

    file_name = ''
    download_link = []
    for pic_tag in soup.find_all('a'):
        if pic_tag.get('href') == '/forum/8903443.html':
            file_name  = pic_tag.get('title')
        if pic_tag.get('class') == ['pictureDownload']:
            if pic_tag.get('href') == '': #if this page is None
                flag = 0
                break
            else:
                download_link.append(pic_tag.get('href'))

    if flag == 0 : #this page is None
        continue

    folder_path = 'D:/spider_things/2016.4.8/' + file_name + '/'

    if not os.path.exists(folder_path):
        os.makedirs(folder_path)

    for item in download_link:
        try:
            urllib.urlretrieve(item,folder_path + str(ans) + '.jpg')
            print 'you have downloaded' , ans , 'pic(s)'
            ans = ans + 1
        except urllib.ContentTooShortError,e: #if the picture is too big , pass it
            continue


这次同样是爬去蜂鸟网的图片,但是中途遇到了2个新问题:

1. 空网页:

蜂鸟网的有些图片集的图片连接不是连号的,这时候就要用一个if语句来跳过一些没有图片的连接

if pic_tag.get('href') == '': #if this page is None
                flag = 0
                break
.....

if flag == 0 : #this page is None
        continue

2.错误处理

爬取这次图片的时候发现,有些图片太大了,超出了urllib.urlretrieve方法所规定的范围,即出现报错:urllib.ContentTooShortError

这时候,要利用try...except 来处理

try...except的格式是:

try:
    ......
except 错误类型(如urllib.ContentTooShortError),e:
    ......


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值