如何利用python登录知乎页面?

回复内容:

import requests
from bs4 import beautifulsoup
s = requests.session()
r = s.post(‘http://www.zhihu.com/login’,
data={‘_xsrf’: beautifulsoup(s.get(‘http://www.zhihu.com/’).content).find(type=’hidden’)[‘value’],
’email’: ’email’, ‘password’: ‘password’, ‘rememberme’: ‘y’})
print(r.text)

参考下我之前写的:https://github.com/flyer103/zhihu
现在登录的时候都会有验证码验证,楼上几个程序应该运行不成功吧?

Posted in 未分类

发表评论