-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathSW.py
149 lines (129 loc) · 4.46 KB
/
SW.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#!/usr/bin/python
# -*- coding: utf-8 -*-
import time
import requests
import re
import os
import json
import datetime
# 强智教务管理系统
########################################
account = ""
password = ""
url = "http://jwgl.sdust.edu.cn/app.do"
########################################
class SW(object):
"""docstring for SW"""
def __init__(self, account, password,url):
super(SW, self).__init__()
self.url = url
self.account = account
self.password = password
self.session = self.login()
HEADERS = {
"User-Agent":"Mozilla/5.0 (Linux; U; Mobile; Android 6.0.1;C107-9 Build/FRF91 )",
"Referer": "http://www.baidu.com",
"Accept-encoding": "gzip, deflate, br",
"Accept-language": "zh-CN,zh-TW;q=0.8,zh;q=0.6,en;q=0.4,ja;q=0.2",
"Cache-control": "max-age=0"
}
def login(self):
params = {
"method" : "authUser",
"xh" : self.account,
"pwd" : self.password
}
session = requests.Session()
req = session.get(self.url, params = params, timeout = 5, headers = self.HEADERS)
s = json.loads(req.text)
print(s)
if s["flag"] != "1" : exit(0)
self.HEADERS["token"] = s["token"]
return session
def get_handle(self,params):
req = self.session.get(self.url, params = params ,timeout = 5 ,headers = self.HEADERS)
return req
def get_student_info(self):
params = {
"method" : "getUserInfo",
"xh" : self.account
}
req = self.get_handle(params)
print(req.text)
def get_current_time(self):
params = {
"method" : "getCurrentTime",
"currDate" : datetime.datetime.now().strftime("%Y-%m-%d")
}
req = self.get_handle(params)
print(req.text)
return req.text
def get_class_info(self,zc = -1):
s = json.loads(self.get_current_time())
params={
"method" : "getKbcxAzc",
"xnxqid" : s["xnxqh"],
"zc" : s["zc"] if zc == -1 else zc,
"xh" : self.account
}
req = self.get_handle(params)
print(req.text)
def get_classroom_info(self,idleTime = "allday"):
params={
"method" : "getKxJscx",
"time" : datetime.datetime.now().strftime("%Y-%m-%d"),
"idleTime" : idleTime
}
req = self.get_handle(params)
print(req.text)
def get_grade_info(self,sy = ""):
params={
"method" : "getCjcx",
"xh" : self.account,
"xnxqid" : sy
}
req = self.get_handle(params)
print("全部成绩" if sy == "" else sy)
s = json.loads(req.text)
if s[0] != None :
s = json.loads(req.text)
for x in s:
print("%s %d %s" % (str(x["zcj"]),x["xf"],x["kcmc"]))
print("绩点:" + str(self.get_gp(s)))
else :
print("空")
def get_exam_info(self):
params={
"method" : "getKscx",
"xh" : self.account,
}
req = self.get_handle(params)
print(req.text)
def get_gp(self,data):
GP = 0.0
credit = 0.0
for x in data:
credit += x["xf"]
if x["zcj"] == "优":
GP += (4.5 * x["xf"])
elif x["zcj"] == "良":
GP += (3.5 * x["xf"])
elif x["zcj"] == "中":
GP += (2.5 * x["xf"])
elif x["zcj"] == "及格":
GP += (1.5 * x["xf"])
elif x["zcj"] == "不及格":
GP += 0
else :
if float(x["zcj"]) >= 60:
GP += (((float(x["zcj"])-60)/10+1) * x["xf"])
return GP/credit
if __name__ == "__main__":
Q = SW(account,password,url)
# Q.get_student_info() #获取学生信息
# Q.get_current_time() #获取学年信息
# Q.get_class_info() #当前周次课表
# Q.get_class_info(3) #指定周次课表
# Q.get_classroom_info("0102") #空教室查询 "allday":全天 "am":上午 "pm":下午 "night":晚上 "0102":1.2节空教室 "0304":3.4节空教室
# Q.get_grade_info("2018-2019-1") #成绩查询 #无参数查询全部成绩
# Q.get_exam_info() #获取考试信息