python3 抓取图片
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python3 抓取图片相关的知识,希望对你有一定的参考价值。
import re
import urllib.request
# import urllib
import os
def getHtml(url):
page = urllib.request.urlopen(url)
html = page.read()
return html.decode(‘UTF-8‘)
def getImg(html):
reg = r‘src="(.+?\.jpg)" pic_ext‘ # 要加括号,作为元组返回,抓取淘宝的图片png(先看源码中图片的地址路径)reg = r‘data-lazy="(.+?\.png)" ‘
imgre = re.compile(reg)
imglist = imgre.findall(html)
x = 0
path = ‘D:\\pythonTest\\images‘
if not os.path.isdir(path):
os.makedirs(path)
paths = path + ‘\\‘ # 保存在test路径下
for imgurl in imglist:
urllib.request.urlretrieve(imgurl, ‘{}{}.jpg‘.format(paths, x))
x = x + 1
html = getHtml("http://tieba.baidu.com/p/2460150866") # 淘宝的:html = getHtml(r"http://www.taobao.com/")
getImg(html)
以上是关于python3 抓取图片的主要内容,如果未能解决你的问题,请参考以下文章