?
import requests
import re
from lxml import etree
def down_load(page):
? ? for page in range(page):
? ? ? ? page = page+1
? ? ? ? url = 'https://aidotu.com/search/dage-0-0-'+str(page)+'.html'
? ? ? ? headers = {'User-Agent':
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/118.0.0.0 Safari/537.36',
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?}
? ? ? ? response = requests.get(url=url,headers=headers)
? ? ? ? response.encoding = 'utf-8'
? ? ? ? tree = etree.HTML(response.text)
? ? ? ? name_list = tree.xpath('//div[@class="layui-col-sm3 layui-col-xs6"]//a//@title')
? ? ? ? src_list = tree.xpath('//div[@class="layui-col-sm3 layui-col-xs6"]//a//img//@src')
? ? ? ? new_list = []
? ? ? ? for src in src_list:
? ? ? ? ? ? href = 'http:'+src
? ? ? ? ? ? new_list.append(href)
? ? ? ? for name,href in zip(name_list,new_list):
? ? ? ? ? ? response = requests.get(url=href,headers=headers)
? ? ? ? ? ? content = response.content
? ? ? ? ? ? with open('表情包//'+name+'.jpg',mode='wb') as fp:
? ? ? ? ? ? ? ? fp.write(content)
down_load(6)
结果展现:
亲测有效哦,没有反扒,自己换一个headers,在项目中创建一个名字为表情包的文件就可以了。?