Update the project structure by moving the Python script files to a folder called "scripts" and the data files to a folder called "data" to organize the project files more clearly.

This commit is contained in:
NianBroken
2024-05-22 10:06:54 +08:00 Unverified
parent 7e36dcd934
commit a5fcd627ca
11 changed files with 18 additions and 15 deletions
+33
View File
@@ -0,0 +1,33 @@
from .get_grade import get_grade
import traceback
def get_user_info(student_client, output_type="none"):
try:
# 获取个人信息
info = student_client.get_info()["data"]
# 整合个人信息
info = f"个人信息:\n" f"学号:{info['sid']}\n" f"班级:{info['class_name']}\n" f"姓名:{info['name']}"
grade = get_grade(student_client, output_type="grade")
if grade:
gpa = get_grade(student_client, output_type="gpa")
percentage_gpa = get_grade(student_client, output_type="percentage_gpa")
# 整合个人信息
gpa_info = f"\n当前GPA{gpa}\n" f"当前百分制GPA{percentage_gpa}\n" f"------"
integrated_info = f"{info}{gpa_info}"
if output_type == "info":
return info
elif output_type == "integrated_info":
return integrated_info
else:
return "获取个人信息:参数缺失"
else:
return info
except Exception:
print(traceback.format_exc())
return "获取个人信息时出错\n------"