弃用-有关朋友的函数
注意
本部分内容在1.1.8
版本之后已被删除。
本页面将介绍三个函数,get_friends
,invite_friend
和remove_friend
。
friend
接受用户ID或StuPerson
实例。
方法定义:
def get_friends() -> ExtendedList[StuPerson]
def invite_friend(friend: Union[StuPerson, str]) -> FriendMsg
def remove_friend(friend: Union[StuPerson, str]) -> bool
返回值:
返回ExtendedList[StuPerson]
,FriendMsg
或bool
示例:
student = login("123","123")
print(student.get_friends())
返回:
[Person(id=123, clazz=StuClass(id=, name=, school=School(id='', name='')), name=张三, gender=女)]