大家好,我有个关于 python 的问题想要求助,在这里已经卡两天了,希望有经验的大侠们能帮忙看看。
我想要作一个消息的确认器,这是给自己的练习,利用 requests 登入站点,确认是否有未读的新消息带浏览。我以前用 requests 也爬过几个网站,大部分一 post 出去,页面就乖乖吐出来了,我觉得一定是我缺少某方面的基础知识。
下面是代码,使用的帐号是测试用的帐号,各位如果愿意,也可以直接拿来测试:
import requests
import re
header_info ={
'Cache-Control': 'max-age=0',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8',
'Origin':'
https://weavi.com',
'Upgrade-Insecure-Requests': '1',
'User-Agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x64 ) AppleWebKit/537.36 (KHTML, like Gecko ) Chrome/44.0.2403.157 Safari/537.36',
'Content-Type': 'application/x-www-form-urlencoded',
'Accept-Encoding': 'gzip, deflate',
'Referer':'https://weavi.com/',
'Accept-Language': 'en-US,en;q=0.8',
}
myS = requests.session ()
r= myS.get ("https://weavi.com")
XSRF= re.findall ('name="csrf-param" />\n<meta content=".+?" name="csrf-token" />',r.text,re.S )
XSRF_str= XSRF[0][36:-22]
login_data = {'username':'
[email protected]', 'password':'W03211230','redirect':'https://weavi.com/','authenticity_token':XSRF_str}
r=myS.post ("https://weavi.com/login",data=login_data )
r=myS.get ("https://weavi.com/")
message = re.findall ('unread_messages',r.text,re.S )
print message