python实现人人网登录示例分享
时间:2022-06-25 09:17:51
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()
标签:人人网登录
0
投稿
猜你喜欢
利用Python在一个文件的头部插入数据的实例
2023-02-06 13:04:33
asp如何制作一个搜索引擎链接程序?
2010-07-07 12:26:00
sql带分隔符的截取字符串示例
2024-01-13 04:52:12
基于Python实现体育彩票选号器功能代码实例
2021-06-15 17:48:54
SQL提供的进行数据传输的实用程序—BCP
2009-01-23 13:45:00
python实现Oracle查询分组的方法示例
2021-03-30 10:59:54
用VB生成DLL封装ASP代码一个例子:连接access数据库等
2008-04-07 13:06:00
《写给大家看的设计书》阅读笔记之对齐原则
2009-07-09 16:32:00
python中GIL的原理及用法总结
2023-03-11 07:43:13
MySQL给字符串加一个高效索引的实现
2024-01-18 17:13:34
Python scipy的二维图像卷积运算与图像模糊处理操作示例
2022-12-13 11:56:41
asp datediff 时间相减
2011-03-25 10:34:00
根据表名和索引获取需要的列名的存储过程
2024-01-23 04:24:14
URL编码“陷阱”
2008-03-04 16:57:00
一文带你搞懂JS中导入模块import和require的区别
2023-07-21 03:24:18
Python 中的range(),以及列表切片方法
2022-04-22 16:22:53
pytest中文文档之编写断言
2023-05-05 04:11:34
Python 炫技操作之合并字典的七种方法
2022-07-16 05:56:12
python机器学习实战之K均值聚类
2022-12-22 21:50:31
python交互式图形编程实例(三)
2021-10-10 17:34:39