python爬取表情包资源代码
?
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,在项目中创建一个名字为表情包的文件就可以了。?
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。 如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:veading@qq.com进行投诉反馈,一经查实,立即删除!