python實現蜘蛛功能批量下載手機壁紙

來源:互聯網
上載者:User

在百度貼吧發現一些比較好看的手機壁紙,想下載來用用,但是一張張儲存覺得太麻煩,所以寫個python程式來批量爬取下載圖片。

要爬取的頁面http://tieba.baidu.com/p/1904141161?pid=24952618510#24952618510

程式碼:

#!/usr/bin/env pythonimport reimport urllibdef getHtml(url):page=urllib.urlopen(url)html=page.read()return htmldef getImg(html):reg=r'src="(.*?\.jpg)" width'imgre=re.compile(reg)imglist=re.findall(imgre,html)x=0for imgre in imglist:urllib.urlretrieve(imgre,'%s.jpg'%x)x+=1html=getHtml("http://tieba.baidu.com/p/1904141161?pid=24952618510#24952618510")print getImg(html)

650) this.width=650;" width="758" height="505" title="pic.jpg" style="width:669px;height:443px;" src="http://www.bkjia.com/uploads/allimg/131228/1532555T9-0.jpg" />

下載成功,隨便開啟一個效果還不錯,玩的開心!

本文出自 “老徐的私房菜” 部落格,謝絕轉載!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.