python爬虫爬取网页信息教程(python爬虫爬取微博评论案例详解)
python爬虫爬取网页信息教程
python爬虫爬取微博评论案例详解前几天,杨超越编程大赛火了,大家都在报名参加,而我也是其中的一员。
在我们的项目中,我负责的是数据爬取这块,我主要是把对于杨超越 的每一条评论的相关信息。
数据格式:{"name":评论人姓名,"comment_time":评论时间,"comment_info":评论内容,"comment_url":评论人的主页}
以上就是我们需要的信息。
爬虫前的分析:
以上是杨超越的微博主页,这是我们首先需要获取到的内容。
因为我们需要等到这个主页内这些微博详情页 的链接,但是我们向下刷新,会发现微博的主页信息是ajax动态加载出来的,
这张图片就是我们向下刷新获取到 的新的链接,这个就是我们需要获取到的信息页面信息。
接下来 就是获取详情页面的信息,详情页中含有评论的相关信息,通过向下刷新,我们也会发现,相关的评论信息也是通过ajax加载出来的 ,
ok,以上就是我们针对整个流程大致的一个分析过程。
具体操作流程:
我们首相将主页获取完成以后,我们就会发现,其中 的内容带有相关的反爬措施,获取到的源码中的信息含有很多的转义符“\”,并且其中的相关“<”和“>”是通过html的语言直接编写的,这样会导致我们的页面解析出现一定的问题,我们可以用replace方法直接将这些转义符全部去掉,然后我们就可以对这个页面进行正则处理,同时我也尝试过用其他的解析方法,但是其中遇到了很多 的问题,所以我就不过多的介绍了。
当我们获取到了每一篇微博的链接以后,还需要获取一个很关键的值 id ,这个值有什么用呢,其主要的作用就是在评论页面的ajax页面的拼接地址上需要使用到。接下来就是需要寻找出我们找到的这两个ajax的url有什么特点或者是规律:
当我们从这些ajax中找到规律以后,不难发现,这个爬虫差不多大功告成了。
下面我就展示一下我的代码:
注意:请在headers中添加自己的cookie
|
# -*- coding: utf-8 -*- # created : 2018/8/26 18:33 # author :guoli import requests import json import time from lxml import etree import html import re from bs4 import beautifulsoup class weibospider: def __init__( self ): # 获取首页的相关信息: self .start_url = 'https://weibo.com/u/5644764907?page=1&is_all=1' self .headers = { "accept" : "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/.jpg" alt="python爬虫爬取网页信息教程(python爬虫爬取微博评论案例详解)" border="0" /> "accept-encoding" : "gzip, deflate, br" , "accept-language" : "zh-cn,zh;q=0.9,en;q=0.8" , "cache-control" : "max-age=0" , "cookie" : 使用自己本机的cookie, "referer" : "https://www.weibo.com/u/5644764907?topnav=1&wvr=6&topsug=1" , "upgrade-insecure-requests" : "1" , "user-agent" : "mozilla/5.0 (windows nt 10.0; wow64) applewebkit/537.36 (khtml, like gecko) chrome/72.0.3626.96 safari/537.36" , } self .proxy = { 'http' : 'http://180.125.70.78:9999' , 'http' : 'http://117.90.4.230:9999' , 'http' : 'http://111.77.196.229:9999' , 'http' : 'http://111.177.183.57:9999' , 'http' : 'http://123.55.98.146:9999' , } def parse_home_url( self , url): # 处理解析首页面的详细信息(不包括两个通过ajax获取到的页面) res = requests.get(url, headers = self .headers) response = res.content.decode().replace( "\\", " ") # every_url = re.compile('target="_blank" href="(/\d+/\w+\?from=\w+&wvr=6&mod=weibotime)" rel="external nofollow" ', re.s).findall(response) every_id = re. compile ( 'name=(\d+)' , re.s).findall(response) # 获取次级页面需要的id home_url = [] for id in every_id: base_url = 'https://weibo.com/aj/v6/comment/big?ajwvr=6&id={}&from=singleweibo' url = base_url. format ( id ) home_url.append(url) return home_url def parse_comment_info( self , url): # 爬取直接发表评论的人的相关信息(name,info,time,info_url) res = requests.get(url, headers = self .headers) response = res.json() count = response[ 'data' ][ 'count' ] html = etree.html(response[ 'data' ][ 'html' ]) name = html.xpath( "//li[@class='list_li s_line1 clearfix']/li[@class='wb_face w_fl']/a/img/@alt" ) # 评论人的姓名 info = html.xpath( "//li[@node-type='replywrap']/li[@class='wb_text']/text()" ) # 评论信息 info = " ".join(info).replace(" ", " ").split(" \n") info.pop( 0 ) comment_time = html.xpath( "//li[@class='wb_from s_txt2']/text()" ) # 评论时间 name_url = html.xpath( "//li[@class='wb_face w_fl']/a/@href" ) # 评论人的url name_url = [ "https:" + i for i in name_url] comment_info_list = [] for i in range ( len (name)): item = {} item[ "name" ] = name[i] # 存储评论人的网名 item[ "comment_info" ] = info[i] # 存储评论的信息 item[ "comment_time" ] = comment_time[i] # 存储评论时间 item[ "comment_url" ] = name_url[i] # 存储评论人的相关主页 comment_info_list.append(item) return count, comment_info_list def write_file( self , path_name, content_list): for content in content_list: with open (path_name, "a" , encoding = "utf-8" ) as f: f.write(json.dumps(content, ensure_ascii = false)) f.write( "\n" ) def run( self ): start_url = 'https://weibo.com/u/5644764907?page={}&is_all=1' start_ajax_url1 = 'https://weibo.com/p/aj/v6/mblog/mbloglist?ajwvr=6&domain=100406&is_all=1&page={0}&pagebar=0&pl_name=pl_official_myprofilefeed__20&id=1004065644764907&script_uri=/u/5644764907&pre_page={0}' start_ajax_url2 = 'https://weibo.com/p/aj/v6/mblog/mbloglist?ajwvr=6&domain=100406&is_all=1&page={0}&pagebar=1&pl_name=pl_official_myprofilefeed__20&id=1004065644764907&script_uri=/u/5644764907&pre_page={0}' for i in range ( 12 ): # 微博共有12页 home_url = self .parse_home_url(start_url. format (i + 1 )) # 获取每一页的微博 ajax_url1 = self .parse_home_url(start_ajax_url1. format (i + 1 )) # ajax加载页面的微博 ajax_url2 = self .parse_home_url(start_ajax_url2. format (i + 1 )) # ajax第二页加载页面的微博 all_url = home_url + ajax_url1 + ajax_url2 for j in range ( len (all_url)): print (all_url[j]) path_name = "第{}条微博相关评论.txt" . format (i * 45 + j + 1 ) all_count, comment_info_list = self .parse_comment_info(all_url[j]) self .write_file(path_name, comment_info_list) for num in range ( 1 , 10000 ): if num * 15 < int (all_count) + 15 : comment_url = all_url[j] + "&page={}" . format (num + 1 ) print (comment_url) try : count, comment_info_list = self .parse_comment_info(comment_url) self .write_file(path_name, comment_info_list) except exception as e: print ( "error:" , e) time.sleep( 60 ) count, comment_info_list = self .parse_comment_info(comment_url) self .write_file(path_name, comment_info_list) del count time.sleep( 0.2 ) print ( "第{}微博信息获取完成!" . format (i * 45 + j + 1 )) if __name__ = = '__main__' : weibo = weibospider() weibo.run() |
以上所述是小编给大家介绍的python爬虫爬取微博评论详解整合,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对开心学习网网站的支持!
原文链接:https://blog.csdn.net/qq_41733098/article/details/88539402
- python如何编写定时器(python 定时器,轮询定时器的实例)
- python对mysql数据分析(python使用adbapi实现MySQL数据库的异步存储)
- python函数基本操作(Python定义函数功能与用法实例详解)
- python分词操作(Python英文文本分词无空格模块wordninja的使用实例)
- pythonmatplotlib绘制立体图形(python3使用matplotlib绘制散点图)
- python3爬虫实例代码(python3通过selenium爬虫获取到dj商品的实例代码)
- python 并发传输文件(python单线程文件传输的实例C/S)
- python之pil模块使用(Python3安装Pillow与PIL的方法)
- pythonprint什么意思啊(Python中print和return的作用及区别解析)
- nginx事件模型有几种(Python实现监控Nginx配置文件的不同并发送邮件报警功能示例)
- python中的reload(搞清楚 Python traceback的具体使用方法)
- python ssh登录服务器(python利用跳板机ssh远程连接redis的方法)
- python实现栈和队列(Python利用heapq实现一个优先级队列的方法)
- python发送微信消息脚本(python实现微信每日一句自动发送给喜欢的人)
- python入门知识点总结(深入解析Python小白学习操作列表)
- python class转json(Python对象转换为json的方法步骤)
- 荣耀手表 GS 3 真机亮相 不支持无线充电(荣耀手表GS3)
- 通过体温就能为智能手表充电 原来是用NASA在空间站用的黑科技(通过体温就能为智能手表充电)
- 智能手表兼容Windows和Android 无需充电挑战苹果(智能手表兼容Windows和Android)
- 一天一冲也算表 麦步,一款待机 21 天的智能手表体验评测(一天一冲也算表)
- 魅族智能手表充电座曝光 Type-C 接口,线座分离设计(魅族智能手表充电座曝光)
- 华为 Watch GT2 Pro 智能手表曝光,新增支持无线充电(华为WatchGT2)
热门推荐
- thinkphp5框架怎么打开(thinkphp5.1框架模板布局与模板继承用法分析)
- css中ul li的用法
- win7搭建ftp服务器(个人主机如何搭建FTP服务器?win7版本)
- 查询mysql 死锁(MySQL线上死锁分析实战)
- mysql与oracle如何直接连接(Oracle更换为MySQL遇到的问题及解决)
- asp.net网站如何优化
- html的css中怎么选择第三个子元素(CSS中 opacity的设置影响了index层数的改变的问题总结推荐)
- python批量创建字典(Python编写合并字典并实现敏感目录的小脚本)
- html5基本代码文字颜色(html5默认气泡修改的代码详解)
- dede友情链接改为logo轮播教程(织梦dede调用四级栏目的实现方法)
排行榜
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9