爬淘宝店铺MM的头像图片

Posted jiangxiaochuan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了爬淘宝店铺MM的头像图片相关的知识,希望对你有一定的参考价值。

别的不多说,直接上代码:

 

#!usr/bin/python3
# -*-coding:UTF-8 -*-

import requests
import re
from collections import deque

url=‘‘
header={

‘User-Agent‘:‘Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (Khtml, like Gecko) Chrome/58.0.3029.110 Safari/537.36 Edge/16.16299‘

}
post_data={

}
cookies={}


queue=deque()
set=set()

def Get_one_page(num = 0):

for i in list(range(1,10000)):
url=‘https://mm.taobao.com/json/request_top_list.htm?page=‘+str(i)
print(url,end=‘\t‘)
try:
response=requests.get(url,headers=header,verify=False,timeout=2000)
except:
continue

demo=re.compile(‘<img.*?src="(.*?\.[jpgn]{3})".*?>‘,flags=0)
Img_src_list=re.findall(demo,response.content.decode(‘gbk‘))

for src in Img_src_list:
src=‘http:‘+src

try:
bin = requests.get(src).content
except:
continue
num += 1
path = ‘F:\\图片\\淘宝客服图片‘ + ‘\\\\‘ + str(num) + ‘.jpg‘

with open(path, ‘wb+‘) as fp:
fp.write(bin)
print(‘已取得%d张图片‘%num)


if __name__==‘__main__‘:


Get_one_page()

以上是关于爬淘宝店铺MM的头像图片的主要内容,如果未能解决你的问题,请参考以下文章

Python如何爬取淘宝MM呢?教你一招

Python爬虫爬淘宝MM图片

第一个python爬虫——保存淘宝mm图片

Python爬虫实战四之抓取淘宝MM照片

怎么修改淘宝店铺宝贝图片尺寸的宽度

python 爬虫实战4 爬取淘宝MM照片