python實現美空圖片抓取機器人

來源:互聯網
上載者:User

最近挺閑,沒事逛美空看美女,忽然覺得為什麼不把照片都下到本地,沒事的時候慢慢看呢,於是就有了以下代碼:

#-*- coding:utf-8 -*-

import urllib
import re
import os

#IMG_REG = re.compile('<img[^>]*?src[^>]*?=[\"\'][^"]*?[\'\"]')
IMG_REG = re.compile('<img[^>]*?src2=[\"\'][^"]*?[\'\"]')
URL_REG = re.compile('<a href="(.*?)" title="(.*?)" hidefocus="true" target="_blank">')
LOCAL_DIR = 'c://tmp/pictrue/'

def cbk(a, b, c):
    per = 100 * a * b / c
    if per > 100:
        per = 100
    print '%.2f%%' % per
    
def getPictrueFromOnePage(url, dirPath):
    file = urllib.urlopen(url)
    content = file.read()
    for match in IMG_REG.findall(content):
        print match
        imgurl = match[match.index("http"):][:-1]
        filename = imgurl[imgurl.rindex("/") + 1:]
        print imgurl
        print filename
        local = dirPath + filename
        urllib.urlretrieve(imgurl, local, cbk)

def mainPorcess(url):
    content = urllib.urlopen(url).read()
    i = 0
    for matched in URL_REG.findall(content):
        i = i + 1
        subUrl = 'http://www.moko.cc' + matched[0]
        print subUrl
        path = LOCAL_DIR + matched[1].decode('utf-8').encode('gbk') + '\\'
        if not os.path.isdir(path):
            try:
                os.mkdir(path)
            except Exception as e:
                path = LOCAL_DIR + str(i) + '\\'
        print path
        getPictrueFromOnePage(subUrl, path)
    
    
if __name__ == '__main__':
    mainPorcess('http://www.moko.cc/channels/post/23/1.html')

它能自動下載照片並以美女的名字組建檔案夾來存貯照片。

這個程式有幾個缺陷:

1. 只能抓取美空頁面中按照美女姓名分類的二級目錄下的照片。

2. 只能抓取當前頁,不能自動翻頁

最後再說一句,python真是巨方便!!!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.