Skip to main content

弃用-有关朋友的函数

注意

本部分内容在1.1.8版本之后已被删除。

本页面将介绍三个函数,get_friendsinvite_friendremove_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]FriendMsgbool

示例:

student = login("123","123")
print(student.get_friends())

返回:

[Person(id=123, clazz=StuClass(id=, name=, school=School(id='', name='')), name=张三, gender=)]