diff --git a/Java/Http.java b/Java/Http.java index cfa7773..63bfd56 100644 --- a/Java/Http.java +++ b/Java/Http.java @@ -1,162 +1,145 @@ -package com.czy.sw; +package com.sw; + import java.io.BufferedReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.OutputStream; import java.net.HttpURLConnection; -import java.net.MalformedURLException; import java.net.URL; +import java.nio.charset.StandardCharsets; import java.util.Map; import java.util.Map.Entry; - + /** -* @author Czy -* @time Jul 6, 2019 -* @detail Http请求类 -*/ + * @author Czy + * @time Jul 6, 2019 + * @detail Http请求类 + */ public class Http { - - public static String httpRequest(String url,Map param,String method,Map headers) { - String paramDipose = ParamHandle(param); - if (method.equalsIgnoreCase("GET")) { - return doGet(url + paramDipose, headers); - }else { - return doPost(url, paramDipose, headers); - } - } - - private static String ParamHandle(Map params) { - StringBuilder urlParam = new StringBuilder("?");; - for (Entry param : params.entrySet()) { - urlParam.append(param.getKey() + "=" + param.getValue() + "&"); - } - return urlParam.toString(); - } - - private static String doGet(String httpurl,Map headers) { - HttpURLConnection connection = null; - InputStream is = null; - BufferedReader br = null; - String result = null;// 返回结果字符串 - try { - // 创建远程url连接对象 - URL url = new URL(httpurl); - // 通过远程url连接对象打开一个连接,强转成httpURLConnection类 - connection = (HttpURLConnection) url.openConnection(); - // 设置连接方式:get - connection.setRequestMethod("GET"); - // 设置连接主机服务器的超时时间:15000毫秒 - connection.setConnectTimeout(15000); - // 设置读取远程返回的数据时间:60000毫秒 - connection.setReadTimeout(60000); - for (Entry header : headers.entrySet()) { - connection.setRequestProperty(header.getKey(), header.getValue()); - } - // 发送请求 - connection.connect(); - // 通过connection连接,获取输入流 - if (connection.getResponseCode() == 200) { - is = connection.getInputStream(); - // 封装输入流is,并指定字符集 - br = new BufferedReader(new InputStreamReader(is, "UTF-8")); - // 存放数据 - StringBuffer sbf = new StringBuffer(); - String temp = null; - while ((temp = br.readLine()) != null) { - sbf.append(temp); - sbf.append("\r\n"); - } - result = sbf.toString(); - } - } catch (MalformedURLException e) { - e.printStackTrace(); - } catch (IOException e) { - e.printStackTrace(); - } finally { - // 关闭资源 - if (null != br) { - try { - br.close(); - } catch (IOException e) { - e.printStackTrace(); - } - } - if (null != is) { - try { - is.close(); - } catch (IOException e) { - e.printStackTrace(); - } - } - connection.disconnect();// 关闭远程连接 - } - - return result; - } - - private static String doPost(String httpUrl, String param,Map headers) { - - HttpURLConnection connection = null; - InputStream is = null; - OutputStream os = null; - BufferedReader br = null; - String result = null; - try { - URL url = new URL(httpUrl); - connection = (HttpURLConnection) url.openConnection(); - connection.setRequestMethod("POST"); - connection.setConnectTimeout(15000); - connection.setReadTimeout(60000); - connection.setDoOutput(true); - connection.setDoInput(true); - for (Entry header : headers.entrySet()) { - connection.setRequestProperty(header.getKey(), header.getValue()); - } - connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); - os = connection.getOutputStream(); - os.write(param.getBytes()); - if (connection.getResponseCode() == 200) { - is = connection.getInputStream(); - br = new BufferedReader(new InputStreamReader(is, "UTF-8")); - StringBuffer sbf = new StringBuffer(); - String temp = null; - while ((temp = br.readLine()) != null) { - sbf.append(temp); - sbf.append("\r\n"); - } - result = sbf.toString(); - } - } catch (MalformedURLException e) { - e.printStackTrace(); - } catch (IOException e) { - e.printStackTrace(); - } finally { - if (null != br) { - try { - br.close(); - } catch (IOException e) { - e.printStackTrace(); - } - } - if (null != os) { - try { - os.close(); - } catch (IOException e) { - e.printStackTrace(); - } - } - if (null != is) { - try { - is.close(); - } catch (IOException e) { - e.printStackTrace(); - } - } - connection.disconnect(); - } - return result; - } - + + public static String httpRequest(String url, Map param, String method, Map headers) { + String paramDipose = pramHandle(param); + if (method.equalsIgnoreCase("GET")) { + return doGet(url + paramDipose, headers); + } else { + return doPost(url, paramDipose, headers); + } + } + + private static String pramHandle(Map params) { + StringBuilder urlParam = new StringBuilder("?"); + ; + for (Entry param : params.entrySet()) { + urlParam.append(param.getKey() + "=" + param.getValue() + "&"); + } + return urlParam.toString(); + } + + private static String doGet(String httpurl, Map headers) { + HttpURLConnection connection = null; + String result = null;// 返回结果字符串 + try { + // 创建远程url连接对象 + URL url = new URL(httpurl); + // 通过远程url连接对象打开一个连接,强转成httpURLConnection类 + connection = (HttpURLConnection) url.openConnection(); + // 设置连接方式:get + connection.setRequestMethod("GET"); + // 设置连接主机服务器的超时时间:15000毫秒 + connection.setConnectTimeout(15000); + // 设置读取远程返回的数据时间:60000毫秒 + connection.setReadTimeout(60000); + for (Entry header : headers.entrySet()) { + connection.setRequestProperty(header.getKey(), header.getValue()); + } + // 发送请求 + connection.connect(); + // 通过connection连接,获取输入流 + if (connection.getResponseCode() == 200) result = getResult(connection); + } catch (Exception e) { + System.out.println(e.toString()); + } + return result; + } + + private static String doPost(String httpUrl, String param, Map headers) { + HttpURLConnection connection = null; + OutputStream os = null; + String result = null; + try { + URL url = new URL(httpUrl); + connection = (HttpURLConnection) url.openConnection(); + connection.setRequestMethod("POST"); + connection.setConnectTimeout(15000); + connection.setReadTimeout(60000); + connection.setDoOutput(true); + connection.setDoInput(true); + for (Entry header : headers.entrySet()) { + connection.setRequestProperty(header.getKey(), header.getValue()); + } + connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); + os = connection.getOutputStream(); + os.write(param.getBytes()); + if (connection.getResponseCode() == 200) result = getResult(connection); + } catch (Exception e) { + System.out.println(e.toString()); + } finally { + if (null != os) { + try { + os.close(); + } catch (IOException e) { + e.printStackTrace(); + } + } + } + return result; + } + + private static String getResult(HttpURLConnection connection){ + InputStream is = null; + BufferedReader br = null; + StringBuilder sb = new StringBuilder(); + try { + is = connection.getInputStream(); + br = new BufferedReader(new InputStreamReader(is, StandardCharsets.UTF_8)); + + String temp = ""; + while ((temp = br.readLine()) != null) { + sb.append(temp); + } + }catch (Exception e){ + e.printStackTrace(); + }finally { + closeConn(br,is,connection); + + } + return sb.toString(); + } + + private static void closeConn(BufferedReader br,InputStream is,HttpURLConnection connection){ + if (null != br) { + try { + br.close(); + } catch (IOException e) { + e.printStackTrace(); + } + } + if (null != is) { + try { + is.close(); + } catch (IOException e) { + e.printStackTrace(); + } + } + if(connection!=null){ + connection.disconnect(); + + } + } + } + + + diff --git a/Java/MainSw.java b/Java/MainSw.java index c859d9c..0d5cef7 100644 --- a/Java/MainSw.java +++ b/Java/MainSw.java @@ -1,159 +1,129 @@ -package com.czy.sw; +package com.sw; import java.text.SimpleDateFormat; import java.util.Date; import java.util.HashMap; import java.util.Map; -import com.czy.sw.Http; - /** -* @author Czy -* @time Jul 6, 2019 -* @detail * -*/ + * @author Czy + * @time Jul 6, 2019 + * @detail * + */ public class MainSw { - /** - * 强智教务系统 - */ - //////////////////////////////////////////////////////// - private String account = ""; - private String password = ""; - private String url = "http://jwgl.sdust.edu.cn/app.do"; - //////////////////////////////////////////////////////// - - /** - * 注意:由于处理Json需要引入Json包,所以暂时不处理Json数据,假设当前学期是2018-2019-2,当前周次是18周 - * 引入Json包后可以直接调用GetCurrentTime()方法得到字符串再转化为Json获取数据 - * 其实学期与当前周次是可以自行计算的,还可以减少对强智服务器的请求,详情可以看一下SW/Web/app/auxiliary/Conf.php类 - */ - //////////////////////////////////////////////////////// - private String curWeek = "1"; - private String curTerm = "2019-2020-2"; - //////////////////////////////////////////////////////// - - private Map headers = new HashMap(); - - private Map GetHashMap() { - return new HashMap(); - } - - public MainSw() { - Map param = GetHashMap(); - param.put("method", "authUser"); - param.put("xh", this.account); - param.put("pwd", this.password); - String reqResult = Http.httpRequest(this.url, param, "GET", this.headers); - System.out.println(reqResult); - String[] reqResultArr = reqResult.split(","); - if(reqResultArr[0].charAt(9) == '0') { - System.out.println("登录失败"); - System.exit(0); - }else { - this.headers.put("token", reqResultArr[2].substring(9, reqResultArr[2].length()-1)); - } - } - - private String GetHandle(Map param) { - return Http.httpRequest(this.url, param, "GET", this.headers); - } - - public String GetStudentInfo() { - Map param = GetHashMap(); - param.put("method", "getUserInfo"); - param.put("xh", this.account); - String req = this.GetHandle(param); - System.out.println(req); - return req; - } - - public String GetCurrentTime() { - SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd"); - Map param = GetHashMap(); - param.put("method", "getCurrentTime"); - param.put("currDate", df.format(new Date())); - String req = this.GetHandle(param); - System.out.println(req); - return req; - } - - public String GetTable() { - Map param = GetHashMap(); - param.put("method", "getKbcxAzc"); - param.put("xh", this.account); - param.put("xnxqid", this.curTerm); - param.put("zc", this.curWeek); - String req = this.GetHandle(param); - System.out.println(req); - return req; - } - - public String GetTable(String week) { - Map param = GetHashMap(); - param.put("method", "getKbcxAzc"); - param.put("xh", this.account); - param.put("xnxqid", this.curTerm); - param.put("zc", week); - String req = this.GetHandle(param); - System.out.println(req); - return req; - } - - public String GetGrade() { - Map param = GetHashMap(); - param.put("method", "getCjcx"); - param.put("xh", this.account); - param.put("xnxqid", ""); - String req = this.GetHandle(param); - System.out.println(req); - return req; - } - - public String GetGrade(String term) { - Map param = GetHashMap(); - param.put("method", "getCjcx"); - param.put("xh", this.account); - param.put("xnxqid", term); - String req = this.GetHandle(param); - System.out.println(req); - return req; - } - - public String GetClassroom(String idleTime) { - SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd"); - Map param = GetHashMap(); - param.put("method", "getKxJscx"); - param.put("time", df.format(new Date())); - param.put("idleTime", idleTime); - String req = this.GetHandle(param); - System.out.println(req); - return req; - } - - public String GetExam() { - Map param = GetHashMap(); - param.put("method", "getKscx"); - param.put("xh", this.account); - String req = this.GetHandle(param); - System.out.println(req); - return req; - } - - /** - * 入口函数 - * @param args - */ - public static void main(String[] args) { - MainSw Q = new MainSw(); -// Q.GetStudentInfo(); //获取学生信息 -// Q.GetCurrentTime(); //获取学年信息 -// Q.GetTable(); //当前周次课表 -// Q.GetTable("3"); //指定周次课表 -// Q.GetGrade(); //查询全部成绩 -// Q.GetGrade("2018-2019-2"); //指定学期成绩查询 -// Q.GetClassroom("0102"); //空教室查询 "allday":全天 "am":上午 "pm":下午 "night":晚上 "0102":1.2节空教室 "0304":3.4节空教室 -// Q.GetExam(); //获取考试信息 - } + /** + * 强智教务系统 + */ + //////////////////////////////////////////////////////// + private String account = ""; + private String password = ""; + private String url = "http://jwgl.sdust.edu.cn/app.do"; + //////////////////////////////////////////////////////// + + /** + * 注意:由于处理Json需要引入Json包,所以暂时不处理Json数据,假设当前学期是2018-2019-2,当前周次是18周 + * 引入Json包后可以直接调用getCurrentTime()方法得到字符串再转化为Json获取数据 + * 其实学期与当前周次是可以自行计算的,还可以减少对强智服务器的请求 + */ + //////////////////////////////////////////////////////// + private String curWeek = "18"; + private String curTerm = "2018-2019-2"; + //////////////////////////////////////////////////////// + + private Map params = new HashMap<>(); + private Map headers = new HashMap<>(); + + + public MainSw() { + this.params.put("method", "authUser"); + this.params.put("xh", this.account); + this.params.put("pwd", this.password); + String reqResult = Http.httpRequest(this.url, this.params, "GET", this.headers); + System.out.println(reqResult); + String[] reqResultArr = reqResult.split(","); + if(reqResultArr[0].charAt(9) == '0') { + System.out.println("登录失败"); + System.exit(0); + }else { + this.headers.put("token", reqResultArr[2].substring(9, reqResultArr[2].length()-1)); + } + } + + + public MainSw getStudentInfo() { + this.params.put("method", "getUserInfo"); + this.params.put("xh", this.account); + return this; + } + + public MainSw getCurrentTime() { + SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd"); + this.params.put("method", "getCurrentTime"); + this.params.put("currDate", df.format(new Date())); + return this; + } + + public MainSw getTable() { + this.params.put("method", "getKbcxAzc"); + this.params.put("xh", this.account); + this.params.put("xnxqid", this.curTerm); + this.params.put("zc", this.curWeek); + return this; + } + + public MainSw setWeek(String week) { + this.params.put("zc", week); + return this; + } + + public MainSw getGrade() { + this.params.put("method", "getCjcx"); + this.params.put("xh", this.account); + this.params.put("xnxqid", ""); + return this; + } + + public MainSw setTerm(String term) { + this.params.put("xnxqid", term); + return this; + } + + public MainSw getClassroom(String idleTime) { + SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd"); + this.params.put("method", "getKxJscx"); + this.params.put("time", df.format(new Date())); + this.params.put("idleTime", idleTime); + return this; + } + + public MainSw getExamInfo() { + this.params.put("method", "getKscx"); + this.params.put("xh", this.account); + return this; + } + + public String exec(){ + String result = Http.httpRequest(this.url, this.params, "GET", this.headers); + this.params.clear(); + System.out.println(result); + return result; + } + + /** + * 入口函数 + * @param args + */ + public static void main(String[] args) { + MainSw Q = new MainSw(); + // Q.getStudentInfo().exec(); //获取学生信息 + // Q.getCurrentTime().exec(); //获取学年信息 + // Q.getTable().exec(); //当前周次课表 + // Q.getTable().setWeek("3").exec(); //指定周次课表 + // Q.getGrade().exec(); //查询全部成绩 + // Q.getGrade().setTerm("2018-2019-2").exec(); //指定学期成绩查询 + // Q.getClassroom("0102").exec(); //空教室查询 "allday":全天 "am":上午 "pm":下午 "night":晚上 "0102":1.2节空教室 "0304":3.4节空教室 + // Q.getExamInfo().exec(); //获取考试信息 + } } diff --git a/PHP/Http.php b/PHP/Http.php index 6064ecc..528b0c4 100644 --- a/PHP/Http.php +++ b/PHP/Http.php @@ -18,7 +18,7 @@ public static function httpRequest($url, $data=[], $method='GET',$headers = []){ } } - private static function arrstr($url,$arr){ + private static function arrToStr($url,$arr){ $ret = ""; foreach ($arr as $key => $value) { $ret = $ret."&".$key."=".$value; @@ -30,7 +30,7 @@ private static function arrstr($url,$arr){ private static function getCurl($url, $data, $method,$headers){ $curl = curl_init(); // 鍚姩涓涓狢URL浼氳瘽 if (count($headers) >= 1) curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); - if($method=='GET') $url = $url."?".self::arrstr($url, $data); + if($method=='GET') $url = $url."?".self::arrToStr($url, $data); curl_setopt($curl, CURLOPT_URL, $url); // 瑕佽闂殑鍦板潃 curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0); // 瀵硅璇佽瘉涔︽潵婧愮殑妫鏌 curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 2); // 浠庤瘉涔︿腑妫鏌SL鍔犲瘑绠楁硶鏄惁瀛樺湪 diff --git a/PHP/Main.php b/PHP/Main.php index e5c8ca4..33b2187 100644 --- a/PHP/Main.php +++ b/PHP/Main.php @@ -41,33 +41,33 @@ function __construct($account,$password,$url){ }else exit(0); } - private function GetHandle($params){ + private function getHandle($params){ return json_decode(Http::httpRequest($this->url,$params,"GET",$this->headers),true); } - public function GetStudentInfo($value=''){ + public function getStudentInfo($value=''){ # code... $params = array( "method" => "getUserInfo", "xh" => $this->account ); - $req = $this->GetHandle($params); + $req = $this->getHandle($params); print_r($req); return ($req); } - public function GetCurrentTime(){ + public function getCurrentTime(){ $params = array( "method" => "getCurrentTime", "currDate" => date("Y-m-d",time()) ); - $req = $this->GetHandle($params); + $req = $this->getHandle($params); print_r($req); return ($req); } - public function GetTable($zc=-1){ - $s = $this->GetCurrentTime(); + public function getTable($zc=-1){ + $s = $this->getCurrentTime(); $zc = $zc === -1 ? $s['zc'] : $zc; $params=array( "method" => "getKbcxAzc", @@ -75,49 +75,49 @@ public function GetTable($zc=-1){ "zc" => $zc , "xh" => $this->account ); - $req = $this->GetHandle($params); + $req = $this->getHandle($params); print_r($req); return ($req); } - public function GetGrade($sy=""){ + public function getGrade($sy=""){ $params = array( "method" => "getCjcx", "xh" => $this->account, "xnxqid" => $sy ); - $req = $this->GetHandle($params); + $req = $this->getHandle($params); print_r($req); return ($req); } - public function GetClassroom($idleTime=""){ + public function getClassroom($idleTime=""){ $params = array( "method" => "getKxJscx", "time" => date("Y-m-d",time()), "idleTime" => $idleTime ); - $req = $this->GetHandle($params); + $req = $this->getHandle($params); print_r($req); return ($req); } - public function GetExam($idleTime=""){ + public function getExam($idleTime=""){ $params = array( "method" => "getKscx", "xh" => $this->account ); - $req = $this->GetHandle($params); + $req = $this->getHandle($params); print_r($req); return ($req); } } $Q = new Main($accountSW,$passwordSW,$urlSW); -// $Q -> GetStudentInfo(); #鑾峰彇瀛︾敓淇℃伅 -// $Q -> GetCurrentTime(); #鑾峰彇瀛﹀勾淇℃伅 -// $Q -> GetTable(); #褰撳墠鍛ㄦ璇捐〃 -// $Q -> GetTable(3); #鎸囧畾鍛ㄦ璇捐〃 -// $Q -> GetGrade("2018-2019-2"); #鎴愮哗鏌ヨ #鏃犲弬鏁版煡璇㈠叏閮ㄦ垚缁 -// $Q -> GetClassroom("0102"); #绌烘暀瀹ゆ煡璇 "allday"锛氬叏澶 "am"锛氫笂鍗 "pm"锛氫笅鍗 "night"锛氭櫄涓 "0102":1.2鑺傜┖鏁欏 "0304":3.4鑺傜┖鏁欏 -// $Q -> GetExam(); #鑾峰彇鑰冭瘯淇℃伅 +// $Q -> getStudentInfo(); #鑾峰彇瀛︾敓淇℃伅 +// $Q -> getCurrentTime(); #鑾峰彇瀛﹀勾淇℃伅 +// $Q -> getTable(); #褰撳墠鍛ㄦ璇捐〃 +// $Q -> getTable(3); #鎸囧畾鍛ㄦ璇捐〃 +// $Q -> getGrade("2018-2019-2"); #鎴愮哗鏌ヨ #鏃犲弬鏁版煡璇㈠叏閮ㄦ垚缁 +// $Q -> getClassroom("0102"); #绌烘暀瀹ゆ煡璇 "allday"锛氬叏澶 "am"锛氫笂鍗 "pm"锛氫笅鍗 "night"锛氭櫄涓 "0102":1.2鑺傜┖鏁欏 "0304":3.4鑺傜┖鏁欏 +// $Q -> getExam(); #鑾峰彇鑰冭瘯淇℃伅 diff --git a/Python/SW.py b/Python/SW.py index 017c483..67bfa63 100644 --- a/Python/SW.py +++ b/Python/SW.py @@ -52,75 +52,75 @@ def login(self): - def GetHandle(self,params): + def get_handle(self,params): req = self.session.get(self.url ,params = params ,timeout = 5 ,headers=self.HEADERS) return req - def getStudentInfo(self): + def get_student_info(self): params = { "method" : "getUserInfo", "xh" : self.account } - req = self.GetHandle(params) + req = self.get_handle(params) print(req.text) pass - def getCurrentTime(self): + def get_current_time(self): params = { "method" : "getCurrentTime", "currDate" : datetime.datetime.now().strftime('%Y-%m-%d') } - req = self.GetHandle(params) + req = self.get_handle(params) print(req.text) return req.text - def getKbcxAzc(self,zc = -1): - s = json.loads(self.getCurrentTime()) + 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.GetHandle(params) + req = self.get_handle(params) print(req.text) pass - def getKxJscx(self,idleTime = "allday"): + def get_classroom_info(self,idleTime = "allday"): params={ "method" : "getKxJscx", "time" : datetime.datetime.now().strftime('%Y-%m-%d'), "idleTime" : idleTime } - req = self.GetHandle(params) + req = self.get_handle(params) print(req.text) - def getCjcx(self,sy = ""): + def get_grade_info(self,sy = ""): params={ "method" : "getCjcx", "xh" : self.account, "xnxqid" : sy } - req = self.GetHandle(params) + req = self.get_handle(params) print("鍏ㄩ儴鎴愮哗" if sy == "" else sy) if req.text != "null" : s = json.loads(req.text) # print(s) for x in s: print("%s %d %s" % (str(x['zcj']),x['xf'],x['kcmc'])) - print("缁╃偣锛" + str(self.getGP(s))) + print("缁╃偣锛" + str(self.get_gp(s))) else : print("绌") - def getKscx(self): + def get_exam_info(self): params={ "method" : "getKscx", "xh" : self.account, } - req = self.GetHandle(params) + req = self.get_handle(params) print(req.text) - def getGP(self,data): + def get_gp(self,data): GP = 0.0 credit = 0.0 for x in data: @@ -143,12 +143,12 @@ def getGP(self,data): if __name__ == '__main__': Q = SW(account,password,url) - # Q.getStudentInfo() #鑾峰彇瀛︾敓淇℃伅 - # Q.getCurrentTime() #鑾峰彇瀛﹀勾淇℃伅 - # Q.getKbcxAzc() #褰撳墠鍛ㄦ璇捐〃 - # Q.getKbcxAzc(3) #鎸囧畾鍛ㄦ璇捐〃 - # Q.getKxJscx("0102") #绌烘暀瀹ゆ煡璇 "allday"锛氬叏澶 "am"锛氫笂鍗 "pm"锛氫笅鍗 "night"锛氭櫄涓 "0102":1.2鑺傜┖鏁欏 "0304":3.4鑺傜┖鏁欏 - # Q.getCjcx("2018-2019-1") #鎴愮哗鏌ヨ #鏃犲弬鏁版煡璇㈠叏閮ㄦ垚缁 - # Q.getKscx() #鑾峰彇鑰冭瘯淇℃伅 + # 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() #鑾峰彇鑰冭瘯淇℃伅