python3 模拟登录v2ex实例讲解
更新时间:2017年07月13日 08:43:16 投稿:jingxian
下面小编就为大家带来一篇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)
以上这篇python3 模拟登录v2ex实例讲解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
Python cookbook(数据结构与算法)根据字段将记录分组操作示例
这篇文章主要介绍了Python cookbook(数据结构与算法)根据字段将记录分组操作,结合实例形式分析了itertools.groupby()函数针对字典进行分组操作的相关实现技巧,需要的朋友可以参考下2018-03-03Python dict字典基本操作(添加、修改、删除键值对)
本文主要介绍了Python dict字典基本操作,主要包括字典添加、修改、删除键值对等,具有一定的参考价值,感兴趣的可以了解一下2023-09-09
最新评论