用python3进行模拟登录v2ex


本文摘自php中文网,作者巴扎黑,侵删。

闲的无聊。。。

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

# 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的详细内容,更多文章请关注木庄网络博客!!

相关阅读 >>

详解Python的命名规则

Python数组和列表的区别

关于Python中的range 对象是不是迭代器的探讨

Python中spyder怎么安装

了解Python 中日志异步发送到远程服务器

iPython notebook是什么意思?

Python学习有哪些网站

Python循环结构的基础编程讲解

Python如何实现可视化热力图

Python如何绘制降水图

更多相关阅读请进入《Python》频道 >>




打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...