当前位置:Gxlcms > Python > 用python3进行模拟登录v2ex

用python3进行模拟登录v2ex

时间:2021-07-01 10:21:17 帮助过:47人阅读

闲的无聊。。。

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

# 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.gxlcms.com',
'referer': 'https://www.gxlcms.com/signin',
'host': 'www.gxlcms.com',
}
s = requests.Session()
r = s.get('https://www.gxlcms.com/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.gxlcms.com/signin', login_data, headers=headers)

以上就是用python3进行模拟登录v2ex的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行