python 爬取学信网登录页面的例子
作者:宇风-飞扬 时间:2022-11-25 22:04:39
我们以学信网为例爬取个人信息
**如果看不清楚
按照以下步骤:**
1.火狐为例 打开需要登录的网页–> F12 开发者模式 (鼠标右击,点击检查元素)–点击网络 –>需要登录的页面登录下–> 点击网络找到 一个POST提交的链接点击–>找到post(注意该post中信息就是我们提交时需要构造的表单信息)
import requests
from bs4 import BeautifulSoup
from http import cookies
import urllib
import http.cookiejar
headers = {
'User-Agent':'Mozilla/5.0 (Windows NT 10.0; WOW64; rv:54.0) Gecko/20100101 Firefox/54.0',
'Referer':'https://account.chsi.com.cn/passport/login?service=https://my.chsi.com.cn/archive/j_spring_cas_security_check',
}
session = requests.Session()
session.headers.update(headers)
username = 'xxx'
password = 'xxx'
url = 'https://account.chsi.com.cn/passport/login?service=https://my.chsi.com.cn/archive/j_spring_cas_security_check'
def login(username,password,lt,_eventId='submit'): #模拟登入函数
#构造表单数据
data = { #需要传去的数据
'_eventId':_eventId,
'lt':lt,
'password':password,
'submit':u'登录',
'username':username,
}
html = session.post(url,data=data,headers=headers)
def get_lt(url): #解析登入界面_eventId
html = session.get(url)
#获取 lt
soup = BeautifulSoup(html.text,'lxml',from_encoding="utf-8")
lt=soup.find('input',type="hidden")['value']
return lt
lt = get_lt(url)#获取登录form表单信息 以学信网为例
login(username,password,lt)
login_url = 'https://my.chsi.com.cn/archive/gdjy/xj/show.action'
per_html = session.get(login_url)
soup = BeautifulSoup(per_html.text,'lxml',from_encoding="utf-8")
print(soup)
for tag in soup.find_all('table',class_='mb-table'):
print(tag)
for tag1 in tag.find_all('td'):
title= tag1.get_text();
print(title)
来源:https://blog.csdn.net/eb_num/article/details/75050702
标签:python,爬取,登录,页面
0
投稿
猜你喜欢
查找python项目依赖并生成requirements.txt的方法
2021-11-27 20:41:43
Python中的is和==比较两个对象的两种方法
2021-09-15 21:23:14
Vue中如何优雅的捕获 Promise 异常详解
2023-07-02 16:56:14
python实现大文本文件分割
2023-09-03 10:00:53
python制作一个桌面便签软件
2021-02-23 05:20:40
用纯CSS3绘制的网站图标
2010-03-28 13:51:00
教学演示-UBB,剪贴板,textRange及其他
2008-01-27 13:46:00
MySQL数据库临时文件究竟储存在哪里
2009-09-06 12:11:00
关于tensorflow softmax函数用法解析
2022-10-29 07:42:09
SQL Server连接失败错误及解决
2008-01-28 21:09:00
微信小程序学习之wxs使用教程
2024-04-29 13:37:57
js function定义函数的几种不错方法
2024-04-16 09:06:34
php部分常见问题总结
2023-07-02 17:10:41
Python字符串中添加、插入特定字符的方法
2021-05-14 00:16:53
CSS结合js实现动态更换皮肤
2007-07-14 10:01:00
mysql如何跨时区迁移数据
2010-03-25 10:26:00
浅谈oracle SCN机制
2024-01-19 18:23:49
Python面向对象程序设计之继承与多继承用法分析
2021-11-16 12:43:52
使用Python制作一个简易的远控终端
2022-03-29 21:04:12
Python中的TCP socket写法示例
2023-06-25 00:21:05