ホームページ >バックエンド開発 >Python チュートリアル >Renren ログイン例共有の Python 実装
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 = オープナー.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 '現在のステータス: ', result[0]
れんれん()