python實現簡單爬蟲功能(爬取一個頁面的圖片)

參考:http://www.cnblogs.com/fnng/p/3576154.html   一,獲取整個頁面數據   首先我們可以先獲取要下載圖片的整個頁面信息。 getjpg.py #coding=utf-8import urllib def getHtml(url): page = urllib.urlopen(url) html = page.read() return html htm
相關文章
相關標籤/搜索