使用python編寫簡單網路爬蟲(一)

來源:互聯網
上載者:User

標籤:python 爬蟲 下載百度圖庫 美女壁紙

      總算有時間動手用所學的python知識編寫一個簡單的網路爬蟲了,這個例子主要實現用python爬蟲從百度圖庫中下載美女的圖片,並儲存在本地,閑話少說,直接貼出相應的代碼如下:

-------------------------------------------------------------------------------------------

#coding=utf-8# 匯入urllib和re模組 import urllibimport re# 定義擷取百度圖庫URL的類;  class GetHtml:    def __init__(self,url):        self.url = url    def getHtml(self):        page = urllib.urlopen(self.url)        html = page.read()        return html # 定義處理GetHtml類getHtml傳回值(百度圖庫中美女的圖片的連結地址)的類;# 該類主要實現圖片連結地址的提取和相應圖片的下載(下載後的圖片直接儲存在本地);         class GetImg:    def __init__(self,html):        self.html = html    def getImg(self):        reg = r‘"thumbLargeUrl" : "(.+?\.jpg)"‘        imgre = re.compile(reg,re.S|re.M)        imglist = re.findall(imgre,self.html)        # print imglist        x = 1        for imgurl in imglist:            urllib.urlretrieve(imgurl,‘%s.jpg‘ % x)            y = x+1            print ‘第%s張圖片下載完成,正在下載第%s張,請稍後……‘ %(x,y)            x+=1        x-=1        print ‘--------本次下載完成,共下載圖片%s張---------‘ %x# 定義程式的主入口  if __name__== ‘__main__‘:    url = "http://image.baidu.com/channel?c=%E7%BE%8E%E5%A5%B3#%E7%BE%8E%E5%A5%B3"    test = GetHtml(url)    p = test.getHtml()    m = GetImg(p)    m.getImg()

本文出自 “簡單新生活” 部落格,請務必保留此出處http://857768.blog.51cto.com/847768/1641193

使用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.