Home  >  Article  >  Backend Development  >  使用python检测手机QQ在线状态的脚本代码

使用python检测手机QQ在线状态的脚本代码

WBOY
WBOYOriginal
2016-06-16 08:46:521164browse
复制代码 代码如下:

import time,datetime   
import urllib2  
def chk_qq(qqnum):
    chkurl = 'http://wpa.qq.com/pa?p=1:'+`qqnum`+':1'
    a = urllib2.urlopen(chkurl)   
    length=a.headers.get("content-length")   
    a.close()   
    print datetime.datetime.now()   
    if length=='2329':   
        return 'Online'  
    elif length=='2262':   
        return 'Offline'  
    else:   
        return 'Unknown Status!' 
qq = 12345678
stat = chk_qq(qq)   
print `qq` + ' is ' + stat
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn