首页  >  文章  >  后端开发  >  用python3进行模拟登录v2ex

用python3进行模拟登录v2ex

巴扎黑
巴扎黑原创
2017-07-21 13:27:581497浏览

闲的无聊。。。

网上一堆,正好练手(主要是新手)

# coding=utf-8
import requests  
from bs4 import BeautifulSoup

headers = {  
   'user-agent': 'Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2924.87 Safari/537.36',  
   'origin': 'https://www.php.cn',  
   'referer': 'https://www.php.cn/signin',  
   'host': 'www.php.cn',  
}
s = requests.Session()  
r = s.get('https://www.php.cn/signin', headers=headers)
soup = BeautifulSoup(r.content, "html.parser")

#获取登录数据
once = soup.find('input', {'name': 'once'})['value']
name = soup.find('input', {'type': 'text', 'class': 'sl'})['name']
password = soup.find('input', {'type': 'password', 'class': 'sl'})['name']
login_data = {
name : 'xxx',
password : 'xxx',
'once' : once,
'next' : '/'
}

#登录
s.post('https://www.php.cn/signin', login_data, headers=headers)

以上是用python3进行模拟登录v2ex的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn