python实现QQ空间自动点赞功能


Posted in Python onApril 09, 2019

本文实例为大家分享了python实现QQ空间自动点赞的具体代码,供大家参考,具体内容如下

项目github地址

使用python实现qq空间自动点赞功能。

需自行安装库并配置环境。

我想实现的是每6个小时就自动更新一次cookie。这也是和网上其他版本相比具有的优点。不用手动输入cookie。更加自动。(不负责任的说,这个功能没有测试过。)

程序运行方法:将代码存为.py文件,运行即可。

输入QQ密码的时候采用了linux登录的方式——没有回显。

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
import time
import requests
import demjson
import re
import datetime
import getpass
 
 
qq = ''
pwd = ''
 
 
def print_time():
 print(datetime.datetime.now(), end=' ')
 
 
def get_gtk(p_skey):
 hash=5381
 for i in p_skey:
  hash += (hash << 5)+ord(i)
 
 print_time()
 print('生成gtk')
 return hash & 0x7fffffff
 
 
def change_cookie(cookie):
 s = ''
 for c in cookie:
  s = s + c['name'] + '=' + c['value'] + '; '
 
 return s
 
 
def check_time():
 now = datetime.datetime.now()
 hour = str(now)[11:13]
 minute = str(now)[14:16]
 second = str(now)[17:19]
 
 if 0 == int(hour) % 6 and minute == '00' and int(second) < 30:
  return True
 else:
  return False
 
 
def get_cookie():
 chrome_options = Options()
 chrome_options.add_argument('--headless')
 driver = webdriver.Chrome(chrome_options=chrome_options)
 
 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)
 driver.find_element_by_id('p').clear()
 driver.find_element_by_id('p').send_keys(pwd)
 driver.find_element_by_id('login_button').click()
 
 time.sleep(1)
 
 driver.find_element_by_id('QZ_Body').click()
 
 cookie = driver.get_cookies()
 
 # print(cookie)
 
 driver.close()
 driver.quit()
 
 print_time()
 print('提取cookie')
 
 return cookie
 
 
def get_args():
 cookie = get_cookie()
 
 for c in cookie:
  if c['name'] == 'p_skey':
   p_skey = c['value']
   break
 
 cookie = change_cookie(cookie)
 
 # print(p_skey)
 
 gtk = get_gtk(p_skey)
 
 return cookie, gtk
 
 
def do_like(d, gtk, headers):
 url = 'https://user.qzone.qq.com/proxy/domain/w.qzone.qq.com/cgi-bin/likes/internal_dolike_app?g_tk=' + str(gtk)
 
 body = {
  'qzreferrer': 'http://user.qzone.qq.com/' + qq,
  'opuin': qq,
  'from': 1,
  'active': 0,
  'fupdate': 1
 }
 
 try:
  html = d['html']
 
  # print(html)
  # unikey = re.search(r'data-unikey=\"http:[^"]*\"', html).group(0)
  # curkey = re.search(r'data-curkey=\"http:[^"]*\"', html).group(0)
  # print(unikey, curkey)
 
  temp = re.search('data-unikey="(http[^"]*)"[^d]*data-curkey="([^"]*)"[^d]*data-clicklog=("like")[^h]*href="javascript:;" rel="external nofollow" rel="external nofollow" ', html);
 
  if temp is None:
   return
 
  unikey = temp.group(1);
  curkey = temp.group(2);
 
  # print(unikey, curkey)
 
  body['unikey'] = unikey
  body['curkey'] = curkey
  body['appid'] = d['appid']
  body['typeid'] = d['typeid']
  body['fid'] = d['key']
 
  r = requests.post(url, data=body, headers=headers)
 
  if 200 == r.status_code:
   print_time()
   print('给 ' + d['nickname'] + ' 点赞')
 
 except:
  return
 
 
def get_content(headers, gtk):
 try:
  r = requests.get('http://ic2.s8.qzone.qq.com/cgi-bin/feeds/feeds3_html_more?uin=0924761163&scope=0&view=1&daylist=&uinlist=&gid=&flag=1&filter=all&applist=all&refresh=0&aisortEndTime=0&aisortOffset=0&getAisort=0&aisortBeginTime=0&pagenum=1&externparam=offset%3D6%26total%3D97%26basetime%3D1470323193%26feedsource%3D0&firstGetGroup=0&icServerTime=0&mixnocache=0&scene=0&begintime=0&count=10&dayspac=0&sidomain=cnc.qzonestyle.gtimg.cn&useutf8=1&outputhtmlfeed=1&getob=1&g_tk=' + str(gtk), headers=headers)
 
  r = r.text[10:-2]
 
  r = demjson.decode(r)
 
  data = r['data']['data']
 
  print_time()
  print('获取了 ' + str(len(data)) + ' 条说说')
 
  return data
 except:
  return []
 
 
def main():
 
 print_time()
 print('程序运行...')
 
 global qq
 global pwd
 
 qq = input('QQ:')
 pwd = getpass.getpass('Password:')
 
 headers = {
  'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36'
 }
 
 cookie, gtk = get_args()
 headers['Cookie'] = cookie
 
 while True:
  time.sleep(1)
 
  if check_time():
   cookie, gtk = get_args()
   headers['Cookie'] = cookie
 
   print_time()
   print('更新了 cookie 和 gtk')
 
  data = get_content(headers, gtk)
 
  for d in data:
   do_like(d, gtk, headers)
 
 
if __name__ == '__main__':
 main()

这个程序在本地跑没有问题,但是我希望它能在我的腾讯云服务器上一直运行。

我在辽宁,服务器在北京,导致登录qq空间时会有滑动验证码。

于是我按照网上的教程,结合qq空间滑动验证码的实际情况,实现了qq空间滑动验证码的破解。

值得一提的是,目前成功率是100%。

有的时候不能完全重合,但还是会成功。

具体思路我就不贴出来了,感兴趣的朋友可以私信我。

下面是整合了破解滑动验证码部分的代码。

from selenium import webdriver
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.action_chains import ActionChains
from PIL import Image
from io import BytesIO
import time
import requests
import demjson
import re
import datetime
import getpass
 
 
qq = ''
pwd = ''
 
 
def print_time():
 print(datetime.datetime.now(), end=' ')
 
 
def get_gtk(p_skey):
 hash=5381
 for i in p_skey:
  hash += (hash << 5)+ord(i)
 
 print_time()
 print('生成gtk')
 return hash & 0x7fffffff
 
 
def change_cookie(cookie):
 s = ''
 for c in cookie:
  s = s + c['name'] + '=' + c['value'] + '; '
 
 return s
 
 
def check_time():
 now = datetime.datetime.now()
 hour = str(now)[11:13]
 minute = str(now)[14:16]
 second = str(now)[17:19]
 
 if 0 == int(hour) % 6 and minute == '00' and int(second) < 30:
  return True
 else:
  return False
 
 
def get_image_difference(back_img, full_img):
 width, height = full_img.size
 
 for w in range(0, width):
  for h in range(0, height):
   back_pixel = back_img.getpixel((w, h))
   full_pixel = full_img.getpixel((w, h))
 
   if back_pixel != full_pixel and w > 340 and h > 10 and abs(back_pixel[0]-full_pixel[0])>50 and abs(back_pixel[1]-full_pixel[1])>50 and abs(back_pixel[2]-full_pixel[2])>50:
    return True, w
 
 return False, -1
 
 
def get_cookie():
 chrome_options = Options()
 chrome_options.add_argument('--headless')
 driver = webdriver.Chrome(chrome_options=chrome_options)
 
 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)
 driver.find_element_by_id('p').clear()
 driver.find_element_by_id('p').send_keys(pwd)
 driver.find_element_by_id('login_button').click()
 
 time.sleep(3)
 frame = driver.find_element_by_xpath('//*[@id="newVcodeIframe"]/iframe')
 driver.switch_to.frame(frame)
 
 #
 back_url = driver.find_element_by_id('slideBkg').get_attribute('src')
 full_url = back_url.replace('hycdn_1', 'hycdn_0')
 
 r = requests.get(back_url)
 file = BytesIO(r.content)
 back_img = Image.open(file)
 
 r.status_code = 500
 while 200 != r.status_code:
  r = requests.get(full_url)
 
 file = BytesIO(r.content)
 full_img = Image.open(file)
 
 r, w = get_image_difference(back_img, full_img)
 if r is False:
  return
 
 # print(w)
 # 280 * 158
 # 680 * 390
 # 55 * 55
 # 136 * 136
 # 214
 
 slide = driver.find_element_by_id('tcaptcha_drag_thumb')
 ActionChains(driver).click_and_hold(slide).perform()
 ActionChains(driver).move_by_offset(xoffset=w / 680 * 250, yoffset=0).perform()
 ActionChains(driver).release(slide).perform()
 
 # print(back_img.size)
 # print(cut_img.size)
 # print(full_img.size)
 
 time.sleep(2)
 
 driver.find_element_by_id('QZ_Body').click()
 
 cookie = driver.get_cookies()
 
 # print(cookie)
 
 driver.close()
 driver.quit()
 
 print_time()
 print('提取cookie')
 
 return cookie
 
 
def get_args():
 cookie = get_cookie()
 
 for c in cookie:
  if c['name'] == 'p_skey':
   p_skey = c['value']
   break
 
 cookie = change_cookie(cookie)
 
 # print(p_skey)
 
 gtk = get_gtk(p_skey)
 
 return cookie, gtk
 
 
def do_like(d, gtk, headers):
 url = 'https://user.qzone.qq.com/proxy/domain/w.qzone.qq.com/cgi-bin/likes/internal_dolike_app?g_tk=' + str(gtk)
 
 body = {
  'qzreferrer': 'http://user.qzone.qq.com/' + qq,
  'opuin': qq,
  'from': 1,
  'active': 0,
  'fupdate': 1
 }
 
 try:
  html = d['html']
 
  # print(html)
  # unikey = re.search(r'data-unikey=\"http:[^"]*\"', html).group(0)
  # curkey = re.search(r'data-curkey=\"http:[^"]*\"', html).group(0)
  # print(unikey, curkey)
 
  temp = re.search('data-unikey="(http[^"]*)"[^d]*data-curkey="([^"]*)"[^d]*data-clicklog=("like")[^h]*href="javascript:;" rel="external nofollow" rel="external nofollow" ', html);
 
  if temp is None:
   return
 
  unikey = temp.group(1);
  curkey = temp.group(2);
 
  # print(unikey, curkey)
 
  body['unikey'] = unikey
  body['curkey'] = curkey
  body['appid'] = d['appid']
  body['typeid'] = d['typeid']
  body['fid'] = d['key']
 
  r = requests.post(url, data=body, headers=headers)
 
  if 200 == r.status_code:
   print_time()
   print('给 ' + d['nickname'] + ' 点赞')
 
 except:
  return
 
 
def get_content(headers, gtk):
 
 try:
  r = requests.get('http://ic2.s8.qzone.qq.com/cgi-bin/feeds/feeds3_html_more?uin=0924761163&scope=0&view=1&daylist=&uinlist=&gid=&flag=1&filter=all&applist=all&refresh=0&aisortEndTime=0&aisortOffset=0&getAisort=0&aisortBeginTime=0&pagenum=1&externparam=offset%3D6%26total%3D97%26basetime%3D1470323193%26feedsource%3D0&firstGetGroup=0&icServerTime=0&mixnocache=0&scene=0&begintime=0&count=10&dayspac=0&sidomain=cnc.qzonestyle.gtimg.cn&useutf8=1&outputhtmlfeed=1&getob=1&g_tk=' + str(gtk), headers=headers)
 
  r = r.text[10:-2]
 
  r = demjson.decode(r)
 
  data = r['data']['data']
 
  print_time()
  print('获取了 ' + str(len(data)) + ' 条说说')
 
  return data
 except:
  return []
 
 
def main():
 
 print_time()
 print('程序运行...')
 
 global qq
 global pwd
 
 qq = input('QQ:')
 pwd = getpass.getpass('Password:')
 
 headers = {
  'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36'
 }
 
 cookie, gtk = get_args()
 headers['Cookie'] = cookie
 
 while True:
  time.sleep(1)
 
  if check_time():
   cookie, gtk = get_args()
   headers['Cookie'] = cookie
 
   print_time()
   print('更新了 cookie 和 gtk')
 
  data = get_content(headers, gtk)
 
  for d in data:
   do_like(d, gtk, headers)
 
 
if __name__ == '__main__':
 main()

上面两份代码整体思路没问题,但是偶尔会有一些小bug。

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
python 切片和range()用法说明
Mar 24 Python
在Heroku云平台上部署Python的Django框架的教程
Apr 20 Python
自己使用总结Python程序代码片段
Jun 02 Python
python使用os.listdir和os.walk获得文件的路径的方法
Dec 16 Python
Python使用装饰器进行django开发实例代码
Feb 06 Python
pandas数据分组和聚合操作方法
Apr 11 Python
解决python中使用plot画图,图不显示的问题
Jul 04 Python
用python写一个定时提醒程序的实现代码
Jul 22 Python
PyQt 图解Qt Designer工具的使用方法
Aug 06 Python
找Python安装目录,设置环境路径以及在命令行运行python脚本实例
Mar 09 Python
python实现跨年表白神器--你值得拥有
Jan 04 Python
Python入门基础之数字字符串与列表
Feb 01 Python
Python实现的多进程拷贝文件并显示百分比功能示例
Apr 09 #Python
Python使用crontab模块设置和清除定时任务操作详解
Apr 09 #Python
Python实现的读取文件内容并写入其他文件操作示例
Apr 09 #Python
Python实现根据日期获取当天凌晨时间戳的方法示例
Apr 09 #Python
Python匿名函数及应用示例
Apr 09 #Python
用Python中的turtle模块画图两只小羊方法
Apr 09 #Python
python3实现表白神器
Apr 09 #Python
You might like
php自定义函数之递归删除文件及目录
2010/08/08 PHP
php内核解析:PHP中的哈希表
2014/01/30 PHP
php的sprintf函数的用法 控制浮点数格式
2014/02/14 PHP
解决PHP Opcache 缓存刷新、代码重载出现无法更新代码的问题
2020/08/24 PHP
jquery获取复选框被选中的值
2014/04/10 Javascript
jQuery 鼠标经过(hover)事件的延时处理示例
2014/04/14 Javascript
js进行表单验证实例分析
2015/02/10 Javascript
JavaScript控制网页层收起和展开效果的方法
2015/04/15 Javascript
js实现右键菜单功能
2016/11/28 Javascript
JavaScript实现Fly Bird小游戏
2016/12/15 Javascript
微信小程序引用公共js里的方法的实例详解
2017/08/17 Javascript
教你用Cordova打包Vue项目的方法
2017/10/17 Javascript
vue-cli开发环境实现跨域请求的方法
2018/04/07 Javascript
VUE.js实现动态设置输入框disabled属性
2019/10/28 Javascript
javascript 对象 与 prototype 原型用法实例分析
2019/11/11 Javascript
Nodejs 数组的队列以及forEach的应用详解
2021/02/25 NodeJs
[02:03]永远的信仰DOTA2 中国军团历届国际邀请赛回顾
2016/06/26 DOTA
[08:06]DOTA2-DPC中国联赛 正赛 PSG.LGD vs Elephant 选手采访
2021/03/11 DOTA
python实现去除下载电影和电视剧文件名中的多余字符的方法
2014/09/23 Python
python 换位密码算法的实例详解
2017/07/19 Python
python添加模块搜索路径方法
2017/09/11 Python
Python坐标线性插值应用实现
2019/11/13 Python
Python @property装饰器原理解析
2020/01/22 Python
Python如何给函数库增加日志功能
2020/08/04 Python
python爬虫破解字体加密案例详解
2021/03/02 Python
乌克兰移动电子产品和相关配件的在线商店:iTMag
2020/03/16 全球购物
如何在存储过程中使用Loop
2016/01/05 面试题
保险内勤岗位职责
2014/04/05 职场文书
工作会议方案
2014/05/21 职场文书
卫生院健康教育实施方案
2014/06/07 职场文书
陕西导游词
2015/02/04 职场文书
2015年大学生党员承诺书
2015/04/27 职场文书
大学优秀学生主要事迹材料
2015/11/04 职场文书
担保书范文
2019/07/09 职场文书
假如给我三天光明:舟逆水而行,人遇挫而达 
2019/10/29 职场文书
Go获取两个时区的时间差
2022/04/20 Golang