资源简介
原创,基于Python的四川大学微服务定时自动签到脚本,仅供学习使用,切勿用于商业途径,任何因此造成的损失与本人无关;代码健壮性一般,核心技术CSS选择,正则表达式,HTTP请求模拟;
代码片段和文件信息
import smtplib
import schedule
import requests
from fake_useragent import UserAgent
import re
import json
from email.mime.text import MIMEText
from email.header import Header
import time
# -------------------------------------全局变量--------------------------------------------------------------------------
# 会话保持
session = requests.Session()
# 邮件配置区
mail_user = “1xxxxxxx@qq.com“ # 用户名
mail_pass = “xxxxxxx“ # 口令 在QQ邮箱设置里面
sender = ‘xxxxxx@qq.com‘ # 发送者
# 接收邮件,可设置为你的QQ邮箱或者其他邮箱
# ------------------------------------------------我想骚一点不好意思---------------------------------------------------
class colors:
PINK = ‘\033[95m‘
BLUE = ‘\033[94m‘
GREEN = ‘\033[92m‘
YELLOW = ‘\033[93m‘
RED = ‘\033[91m‘
END = ‘\033[0m‘
# -----------------------------------登录界面获取cookie------------------------------------------
def data_get(uspa):
url = ‘https://wfw.scu.edu.cn/a_scu/api/sso/check‘
url_for_id = ‘https://wfw.scu.edu.cn/ncov/wap/default/index‘
data = {
‘username‘: us
‘password‘: pa
‘redirect‘: ‘https://wfw.scu.edu.cn/ncov/wap/default/index‘
}
header = {
‘Referer‘: ‘https://wfw.scu.edu.cn/site/polymerization/polymerizationLogin?redirect=https%3A%2F%2Fwfw.scu.edu‘
‘.cn%2Fncov%2Fwap%2Fdefault%2Findex&from=wap‘
‘User-Agent‘: UserAgent().chrome
‘Host‘: ‘wfw.scu.edu.cn‘
‘Origin‘: ‘https://wfw.scu.edu.cn‘
}
r = session.post(url data=data headers=header timeout=3).json()
if r[‘m‘] == ‘操作成功‘:
r2 = session.get(url_for_id headers=header).text
x = re.findall(r‘.*?oldInfo: (.*).*?‘ r2)
data = eval(x[0])
return data
# ---------------------------------------填报界面------------------------------------------
def post(uspa) -> json:
headers = {
‘Host‘: ‘wfw.scu.edu.cn‘
‘User-Agent‘: UserAgent().chrome
‘Accept‘: ‘application/jsontext/javascript*/*;q=0.01‘
‘Accept-Language‘: ‘zh-CNzh;q=0
相关资源
- 小甲鱼零基础入门学习Python全套源码
- 基于socket的python聊天
- python之des加密算法
- Python爬虫抓取Ebay页面
- python api chm
- Python 搜狗词库的批量
- 无人车路径规划算法matlab+python代码
- 粒子群优化BPNN的python实现代码.rar
- 基于Django的python信息管理系统,用于
- python
- 多层BP神经网络参数高自由度Python
- 爬取b站前百视频名称和链接
- DynaSLAM/src/python/
- 梯度下降python程序实现+可视化
- python爬取小说源码,仅供学习使用
- 图像处理python
- 计算机图形学课程代码资源.zip
- 协同过滤推荐算法视频推荐系统自带
-
python2.7sc
ript目录 - 提取获取到的人脸图像的特征
- Python二十多种常用图像处理方法集成
- BP神经网络(马疝病数据集).zip
- 指纹图像增强源码.rar
- 灰狼算法函数极值寻优matlab与python版
- AI智能五子棋Python代码
- 数学建模-社会力模型-python代码实现
- ipython/jupyter notebook解决浏览器空白的
- 去雨算法python代码
- Python项目实战
- 小甲鱼Python零基础免费全套视频教学
评论
共有 条评论