具体代码如下所示:
#coding:utf-8 #!/usr/bin/python3 from selenium import webdriver import time import re import importlib2 import sys importlib2.reload(sys) def startSpider(): driver = webdriver.Chrome('/Users/zachary/zachary/chromedriver.exe') #这个是chormedriver的地址 driver.get('https://qzone.qq.com/') driver.switch_to.frame('login_frame') driver.find_element_by_id('switcher_plogin').click() driver.find_element_by_id('u').clear() driver.find_element_by_id('u').send_keys('QQ号') #这里填写你的QQ号 driver.find_element_by_id('p').clear() driver.find_element_by_id('p').send_keys('QQ密码') #这里填写你的QQ密码 driver.find_element_by_id('login_button').click() time.sleep(2) #设置爬取内容保存路径 f = open('/Users/zachary/Documents/shuoshuo.txt','w') #---------------获得g_qzonetoken 和 gtk html = driver.page_source '''g_qzonetoken=re.search('window\.g_qzonetoken = \(function\(\)\{ try\{return (.*"e794139a284d6ea9e0b26826e541b55df37d0667a3544f534de25aebdb64628d3ab75e1d7104bbb22a" cookie = {}#初始化cookie字典 for elem in driver.get_cookies():#取cookies cookie[elem['name']] = elem['value'] gtk=getGTK(cookie)#通过getGTK函数计算gtk #print(g_qzonetoken) #print(gtk) #--------------获得好友列表 注意下面的链接 driver.get('https://user.qzone.qq.com/proxy/domain/r.qzone.qq.com/cgi-bin/tfriend/friend_hat_get.cgi"(.\d*)\":\{\\n"realname":"(.*"}',re.S) QQ_name_list = re.findall(abtract_pattern,str(friend_list)) #数组 print(QQ_name_list) numList=dict()# numList => (QQnum:QQname) #列表 for i in QQ_name_list: numList[str(i[0])]=str(i[1]) begin = 0 last_source = "" tag = 1 first = 0 firstTime="" #如果要爬取自己的说说,手动添加自己的qq号 #numList['你的qq号']='你的名字' #print(numList) for key in numList.keys(): QQnum = key QQname = numList[QQnum] if QQnum == "好友qq号": #根据qq号查找指定好友说说 count = 1 begin = 0 while tag==1 : #-------------进入好友说说页面 #'+QQnum+' '+str(begin)+' #print("Begin:"+str(begin)) driver.get('https://user.qzone.qq.com/proxy/domain/taotao.qq.com/cgi-bin/emotion_cgi_msglist_v6"message":"(.*","name":',re.S) message = re.findall(abtract_pattern,str(msg_list_json)) if message!=[]: if str(message[0])=='对不起,主人设置了保密,您没有权限查看':#对不起,主人设置了保密,您没有权限查看 break #print(msg_list_json) #解析JSON #webDriver没有现成的JSON解析器,所以采用获取源码的方式,然后使用正则表达式获取具体细节 msg_list_json = msg_list_json.split("msglist")[1]#拆分json,缩小范围,也能加快解析速度 msg_list_json = msg_list_json.split("smoothpolicy")[0] msg_list_json = msg_list_json.split("commentlist")[1:] #说说动态分4种:1、文字说说(或带有配图的文字说说) # 2、只有图片的说说 # 3、转发,并配有文字 # 4、转发,不配文字 for text in msg_list_json: # 1、先检查说说,用户是否发送了文字,如果没有文字,正则表达式匹配无效 abtract_pattern = re.compile('\}\],"content":"(.*","createTime":"(.*","created_time":(.*"',re.S) msg_time = re.findall(abtract_pattern,str(text)) if msg_time!=[]: # 2、如果作者说说有文字,那么检查是否有转发内容 msg = str(msg_time[0][0]) sendTime = str(msg_time[0][1]) abtract_pattern = re.compile('\}\],"content":"(.*"},"rt_createTime":"(.*","',re.S) text = text.split("created_time")[1] msg_time2 = re.findall(abtract_pattern,str(text)) #合并发送内容 格式:评论+转发内容 if msg_time2!=[]: msg = msg +" 转发内容:"+str(msg_time2[0][0]) else: # 3、说说内容为空,检查是否为 =>只有图片的说说 or 转发,不配文字 #获取正文发送时间 (发送时间分为:正文发送时间 or 转发时间) abtract_pattern = re.compile('"conlist":null,"content":"","createTime":"(.*",',re.S) msgNull_time = re.findall(abtract_pattern,str(text)) if msgNull_time!=[]: #如果有正文发送时间,那么就是这条说说仅含有图片 =>只有图片的说说 msg = "图片" sendTime = str(msgNull_time[0]) else: #如果没有正文发送时间,那么就是说这条说为 =>转发,不配文字 abtract_pattern = re.compile('\}\],"content":"(.*"},"rt_createTime":"(.*","',re.S) msg_time = re.findall(abtract_pattern,str(text)) msg =" 转发内容:"+str(msg_time[0][0]) sendTime = str(msg_time[0][1]) #写入本地文件 #f.write('{},{},{},{}\n'.format(str(QQname),str(QQnum),sendTime,msg)) print(str(count)+" : "+str(QQname)+" : "+str(QQnum)+" : "+sendTime+" : "+msg) count = count + 1 begin = begin + 40 def getGTK(cookie): hashes = 5381 for letter in cookie['p_skey']: hashes += (hashes << 5) + ord(letter) return hashes & 0x7fffffff startSpider() print("爬取结束")
总结
以上所述是小编给大家介绍的Python爬取qq空间说说的实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对网站的支持!
华山资源网 Design By www.eoogi.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
华山资源网 Design By www.eoogi.com
暂无评论...
更新日志
2024年11月15日
2024年11月15日
- 黄乙玲1988-无稳定的爱心肝乱糟糟[日本东芝1M版][WAV+CUE]
- 群星《我们的歌第六季 第3期》[320K/MP3][70.68MB]
- 群星《我们的歌第六季 第3期》[FLAC/分轨][369.48MB]
- 群星《燃!沙排少女 影视原声带》[320K/MP3][175.61MB]
- 乱斗海盗瞎6胜卡组推荐一览 深暗领域乱斗海盗瞎卡组分享
- 炉石传说乱斗6胜卡组分享一览 深暗领域乱斗6胜卡组代码推荐
- 炉石传说乱斗本周卡组合集 乱斗模式卡组最新推荐
- 佟妍.2015-七窍玲珑心【万马旦】【WAV+CUE】
- 叶振棠陈晓慧.1986-龙的心·俘虏你(2006复黑限量版)【永恒】【WAV+CUE】
- 陈慧琳.1998-爱我不爱(国)【福茂】【WAV+CUE】
- 咪咕快游豪礼放送,百元京东卡、海量欢乐豆就在咪咕咪粉节!
- 双11百吋大屏焕新“热”,海信AI画质电视成最大赢家
- 海信电视E8N Ultra:真正的百吋,不止是大!
- 曾庆瑜1990-曾庆瑜历年精选[派森][WAV+CUE]
- 叶玉卿1999-深情之选[飞图][WAV+CUE]