青年大学习完成截图爬虫


青年大学习截图爬虫脚本

1.自动爬取青年大学习完成截图

2.该脚本无法对微信记录进行修改,只能生成最新期的截图

3.直接下载.exe文件运行即可,脚本会在同目录下生成截图.jpg文件

Github项目地址
Github下载地址

核心源码

#中青报主页
    url = 'http://news.cyol.com/node_67071.htm'
    #发送get请求,获取网页
    response = requests.get(url, verify=False)
    print("响应状态%d"%response.status_code)
    #解析网页
    html = etree.HTML(response.text)
    newest = html.xpath('/html/body/div[@class="mianbody"]/dl[@class="listMM"]/dd[@class="picB"]/ul[@class="movie-list"]/li[1]/a/@href')[0]
    img_path = newest.replace('m.html', 'images/end.jpg').replace('index.html', 'images/end.jpg')

个人技术博客——二进制的伽利略’s Blog

http://galileocat.cn/


文章作者: galileocat
版权声明: 本博客所有文章除特別声明外,均采用 CC BY 4.0 许可协议。转载请注明来源 galileocat !