好得很程序员自学网

<tfoot draggable='sEl'></tfoot>

Python下载指定页面上图片

本文实例讲述了Python下载指定页面上图片的方法。分享给大家供大家参考,具体如下:

#!/usr/bin/python 
#coding:utf8
import re
import urllib
def getHtml(url):
  page = urllib.urlopen(url)
  html = page.read()
  return html
def getImg(html):
  reg = r'src="(.*?\.jpg)" '
  imgre = re测试数据pile(reg)
  imglist = re.findall(imgre,html)
  x = 0
  for imgurl in imglist:
    urllib.urlretrieve(imgurl,'%s.jpg' % x)
    x += 1
html = getHtml("http://tieba.baidu测试数据/p/2394357724")
getImg(html) 

更多Python下载指定页面上图片相关文章请关注PHP中文网!

查看更多关于Python下载指定页面上图片的详细内容...

  阅读:60次