python3 模拟登录v2ex实例讲解
闲的无聊。。。
网上一堆,正好练手(主要是新手)
# 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.v2ex.com', 'referer': 'https://www.v2ex.com/signin', 'host': 'www.v2ex.com', } s = requests.Session() r = s.get('https://www.v2ex.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.v2ex.com/signin', login_data, headers=headers)
相关推荐
chuckchen 2020-10-31
Will0 2020-10-12
Dreamhome 2020-10-09
xirongxudlut 2020-09-28
星辰大海的路上 2020-09-13
chaochao 2020-08-31
猪猪侠喜欢躲猫猫 2020-08-17
快递小可 2020-08-16
shengge0 2020-07-26
巩庆奎 2020-07-21
张文倩数据库学生 2020-07-19
xirongxudlut 2020-07-18
Ericbig 2020-07-18
kyelu 2020-07-09
liangzhouqu 2020-07-07
GuoSir 2020-06-28
chaigang 2020-06-27
pythonxuexi 2020-06-25