手机
当前位置:查字典教程网 >脚本专栏 >python >python实现人人网登录示例分享
python实现人人网登录示例分享
摘要:复制代码代码如下:importreimporturllib2importcookielibdefrenren():cj=cookielib....

复制代码 代码如下:

import re

import urllib2

import cookielib

def renren():

cj = cookielib.LWPCookieJar()

opener = urllib2.build_opener(urllib2.HTTPCookieProcessor(cj))

email = ''

pwd = ''

#登录..

print 'login......'

url = "http://www.renren.com/PLogin.do"

postdata = "email="+email+"&password="+pwd+"&origURL=http%3A%2F%2Fwww.renren.com%2FSysHome.do&domain=renren.com"

req = urllib2.Request(url,postdata)

res = opener.open(req).read()

print 'succeed!'

#得到当前状态

s = r'(?s)id="currentStatus">.*?<a ui-async="async" title="([^"]*)'

match = re.search(s, res, re.DOTALL)

if match:

result = match.groups(1)

print 'current status: ', result[0]

renren()

【python实现人人网登录示例分享】相关文章:

python读写文件操作示例程序

Python实现的金山快盘的签到程序

python实现系统状态监测和故障转移实例方法

python多线程扫描端口示例

python的urllib模块显示下载进度示例

Python的一些用法分享

python抓取豆瓣图片并自动保存示例学习

python实现2014火车票查询代码分享

Python 用户登录验证的小例子

python 字符串split的用法分享

精品推荐
分类导航