发布时间:2019-07-19 09:56:49编辑:auto阅读(1677)
#!/usr/bin/python
import re
import urllib
import urllib.request #python3中urlopen、urlritrieve都在request库里面了,所以要导入此库
def htmlGet(url):
page = urllib.request.urlopen(url)
html = page.read()
return html
def imgGet(html):
res = r'src="(https.*?.jpg)"'
imgre = re.compile(res)
imglist = re.findall(imgre,html.decode("utf-8")) #html不加后面的会报错typeerror,因为编码格式的变化,这里需要指定一下
x = 0
for i in imglist:
urllib.request.urlretrieve(i,"%s.jpg" % x)
x+=1
html = htmlGet("http://***")
imgGet(html)
上一篇: python提取文件名改进
下一篇: Python字符串,列表
47484
45786
36784
34317
28955
25589
24436
19606
19102
17627
5458°
6041°
5563°
5632°
6566°
5370°
5370°
5878°
5851°
7163°