您的当前位置:首页正文

python批量下载图片

2024-01-10 来源:步旅网


#encoding:utf-8

#批量下载图片

import re,os

import urllib

os.chdir('f:/picture')

def getHtml(url):

page=urllib.urlopen(url)

html=page.read()

return html

def getImg(html):

reg=r'src=\"(http://.*?\\.jpg)\"'

image=re.compile(reg)

imlist=re.findall(image,html)

x=0

for imgurl in imlist:

urllib.urlretrieve(imgurl,'%s.jpg'%x)

x+=1

html=getHtml('输入网址')

print getImg(html)

因篇幅问题不能全部显示,请点此查看更多更全内容