-
Notifications
You must be signed in to change notification settings - Fork 28
/
choose_pe_class.py
executable file
·64 lines (57 loc) · 2.09 KB
/
choose_pe_class.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
# Copyright (C) 2022 by the XiDian Open Source Community.
#
# This file is part of xidian-scripts.
#
# xidian-scripts is free software: you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by the
# Free Software Foundation, either version 3 of the License, or (at your
# option) any later version.
#
# xidian-scripts is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
# for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with xidian-scripts. If not, see <http://www.gnu.org/licenses/>.
import pkg_resources
import subprocess
import sys
import os
try:
pkg_resources.require(('libxduauth'))
except (pkg_resources.DistributionNotFound, pkg_resources.VersionConflict):
subprocess.check_call([
sys.executable, '-m', 'pip', 'install', 'libxduauth'
])
try:
import credentials
USERNAME = credentials.IDS_USERNAME
PASSWORD = credentials.IDS_PASSWORD
except ImportError:
USERNAME, PASSWORD = [os.getenv(i) for i in ('IDS_USER', 'IDS_PASS')]
if not USERNAME or not PASSWORD:
print('请设置环境变量 IDS_USER 和 IDS_PASS')
exit(1)
import time
from libxduauth import IDSSession
def process():
whatever = IDSSession("http://tybjxgl.xidian.edu.cn", USERNAME, PASSWORD)
classes = whatever.post(
"http://tybjxgl.xidian.edu.cn/admin/"
"chooseCurriculum/showTeachingCurriculum"
).json()["data"]
for i in classes:
print(
f'{str(i["id"])} {i["sysUserName"]} '
f'{i["teachingCurriculumName"]} {i["teachingSchoolTimeName"]}'
)
ohyeah = input("输入你想上课程的id: ")
choice = whatever.post(
"http://tybjxgl.xidian.edu.cn/admin//"
"stuTeacherCurriculum/chooseTeachingCurriculum?"
f"teaCurriculumid={ohyeah}&_={int(round(time.time() * 1000))}"
)
print(choice.content.decode())
if __name__ == "__main__":
process()