前言
最近发现一个十分有趣的网站(狗头保命),一些影视剧里让人血脉膨胀的镜头制作成的gif图片,满满的都是全是爱,作为一个合格的小爬虫,不把它都放进‘作业’文档里怎么行
爬取目标
网址:GIF出处
工具使用
开发工具:pycharm 开发环境:python3.7, Windows10 使用工具包:requests,lxml
重点内容学习
- requests使用
- xpath解析数据
- 获取gif数据
项目思路解析
首先明确自己需要采集的目标数据网址 通过requests工具包发送网络请求 翻页通过改变url
http://gifcc.com/forum-38-{}.html
转换当前页面数据 通过xpath方式提取网页数据 提取的数据为a标签的值 我们需要的是动态图 gif在详情页面
url = 'http://gifcc.com/forum-38-{}.html'.format(page)
response = RequestTools(url).text
html = etree.HTML(response)
atarget = html.xpath('//div[@class="c cl"]/a/@href')
for i in atarget:
urls = 'http://gifcc.com/' + i
再次对详情页面发送网络请求 进入详情页面,通过xpath方式提取出对应的标题以及对应gif图片地址
图片的名字也可以自行定义
response = RequestTools(url).text
html = etree.HTML(response)
try:
gifurl = html.xpath('//td[@class="t_f"]/div[1]/div/div/div/div/div/div[1]/img/@src')[0]
gifcontent = RequestTools(gifurl)
title = gifurl.split('/')[-1]
Save(gifcontent, title)
except Exception as e:
print(e)
请求对应的图片地址 获取到gif图片数据 保存对应图片信息
def Save(gifcontent, title):
f = open('./GIF/' + title, 'wb')
f.write(gifcontent.content)
f.close()
print('{}下载完成...'.format(title))
简易源码分享
import requests
from lxml import etree
def RequestTools(url):
headers = {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.101 Safari/537.36'
}
response = requests.get(url, headers=headers)
return response
def Save(gifcontent, title):
f = open('./GIF/' + title, 'wb')
f.write(gifcontent.content)
f.close()
print('{}下载完成...'.format(title))
def DateilsPage(url):
response = RequestTools(url).text
html = etree.HTML(response)
try:
gifurl = html.xpath('//td[@class="t_f"]/div[1]/div/div/div/div/div/div[1]/img/@src')[0]
gifcontent = RequestTools(gifurl)
title = gifurl.split('/')[-1]
Save(gifcontent, title)
except Exception as e:
print(e)
def main(page):
url = 'http://gifcc.com/forum-38-{}.html'.format(page)
response = RequestTools(url).text
html = etree.HTML(response)
atarget = html.xpath('//div[@class="c cl"]/a/@href')
for i in atarget:
urls = 'http://gifcc.com/' + i
DateilsPage(urls)
if __name__ == '__main__':
for page in range(1, 11):
main(page)
我是白又白i,一名喜欢分享知识的程序媛??
如果没有接触过编程这块的朋友看到这篇博客,发现不懂的或想要学习Python的,可以直接留言+私我鸭【非常感谢你的点赞、收藏、关注、评论,一键四连支持】
|