python抓取网页中的图片示例
(编辑:jimmy 日期: 2024/11/17 浏览:3 次 )
复制代码 代码如下:
#coding:utf8
import re
import urllib
def getHTML(url):
page = urllib.urlopen(url)
html = page.read()
return html
def getImg(html,imgType):
reg = r'src="/UploadFiles/2021-04-08/(.*?\.+'+imgType+'!slider)"> imgre = re.compile(reg)
imgList = re.findall(imgre, html)
x=0
for imgurl in imgList:
print imgurl
urllib.urlretrieve(imgurl, '%s.%s' % (x, imgType))
x =x+1
html= getHTML("https://www.jb51.net")
getImg(html,'jpg')
下一篇:python遍历文件夹并删除特定格式文件的示例