设为首页收藏本站

ZMX - IT技术交流论坛 - 无限Perfect,追求梦想 - itzmx.com

 找回密码
 注册论坛

QQ登录

只需一步,快速开始

新浪微博账号登陆

只需一步,快速开始

用百度帐号登录

只需两步,快速登录

搜索
查看: 2185|回复: 1

基于Python的QQ群签到

[复制链接]

签到天数: 81 天

[LV.6]常住居民II

发表于 2015/10/1 02:46 | 显示全部楼层 |阅读模式 |Firefox 40.0|Windows 8.1
天涯海角搜一下: 百度 谷歌 360 搜狗 有道 雅虎 必应 即刻
  1.     # -*- coding:utf-8 -*-
  2.     import urllib
  3.     import urllib2
  4.     """
  5.     作者 科学侧的妖怪贤者
  6.     python 2.7
  7.     """
  8.     gc=['123456789',]#QQ群号 数组
  9.     bkn='534**63**'#在post数据包中的一个key 需手动填写
  10.     poi='poi??person of idiot?'
  11.     q=0
  12.     signQQUrl = "http://qiandao.qun.qq.com/cgi-bin/sign";
  13.     for q in range(0,len(gc)):
  14.       q+1
  15.       para = {
  16.         'gc':gc[q],
  17.         'is_sign':'0',
  18.         'bkn':bkn,
  19.         'poi':poi,
  20.         };
  21.       postData = urllib.urlencode(para);
  22.       req = urllib2.Request(signQQUrl, postData);
  23.       req.add_header('User-Agent', 'Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.8.1.14) Gecko/20080404 (FoxPlus) Firefox/2.0.0.14')
  24.       req.add_header('Content-Type', 'application/x-www-form-urlencoded');
  25.       req.add_header('Cache-Control', 'no-cache');
  26.       req.add_header('Accept', '*/*');
  27.       req.add_header('Connection', 'Keep-Alive');
  28.       req.add_header('Cookie', 'mark');
  29.       #cookie需在http://qiandao.qun.qq.com/执行document.cookie获得 或在抓包时顺带获得
  30.       resp = urllib2.urlopen(req);
  31.       respInfo = resp.info();
复制代码


出自:http://bbs.xiankaba.org

评分

参与人数 1樱币 +2 收起 理由
AkariAkaza + 2 赞一个!

查看全部评分

欢迎光临IT技术交流论坛:http://bbs.itzmx.com/
回复

使用道具 举报

签到天数: 81 天

[LV.6]常住居民II

 楼主| 发表于 2015/10/1 02:49 | 显示全部楼层 |Firefox 40.0|Windows 8.1
卧槽 发出去了
欢迎光临IT技术交流论坛:http://bbs.itzmx.com/
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册论坛 新浪微博账号登陆用百度帐号登录

本版积分规则

手机版|Archiver|Mail me|网站地图|IT技术交流论坛 ( 闽ICP备13013206号-7 )

GMT+8, 2024/11/22 18:22 , Processed in 0.196345 second(s), 23 queries , MemCache On.

Powered by itzmx! X3.4

© 2011- sakura

快速回复 返回顶部 返回列表