首页 > 代码库 > python实现人人网登录的例子
python实现人人网登录的例子
python实现人人网登录的例子
例子,python实现登录人人网。原文地址:http://www.jbxue.com/article/python/22994.html
#!/usr/bin/python# www.jbxue.com
import reimport urllib2import cookielibdef 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模拟登录演示实例
- Python模拟新浪微博登录(urllib、cookielib、urllib2模拟登录)
- python模拟登录新浪微博抓取数据(cookielib和urllib2)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。