首页 > 代码库 > python爬虫抓取色影无忌月赛获奖图片

python爬虫抓取色影无忌月赛获奖图片

因为平时爱好摄影,所以喜欢看看色影无忌论坛的获奖摄影作品,所以写了个小script用来抓取上面的获奖图片,亲自测试可以使用。
# -*- coding: UTF-8 -*-
#作者Rocky Chen 
import re, urllib, sys, os, time, urllib2, cookielib, string


class Download:
    def __init__(self, url):
        self.url=url




    def getPhotos(self):
        #获取的是跳转收的各个页面的图片 如: http://vision.xitek.com/monthly/yuesaipingxuan/201404/14-149893.html
        user_agent = 'Mozilla/4.0 (compatible; MSIE 5.5; Windows NT)'
        header = { 'User-Agent' : user_agent }
        req=urllib2.Request(self.url,headers=header);
        resp=urllib2.urlopen(req)
        web_content=resp.read()
        print web_content
        all_link = re.findall(r'<div class="mshow"><a href=http://www.mamicode.com/"(.+?)" target="_blank">', web_content)>


自动抓取一月到十二月的获奖图片

python爬虫抓取色影无忌月赛获奖图片