update readme

This commit is contained in:
shuaikangzhou
2023-10-30 23:55:26 +08:00
parent bb267c348e
commit 3fb4e8149d
4 changed files with 24 additions and 16 deletions

8
app/person.py Normal file
View File

@@ -0,0 +1,8 @@
import app.DataBase.data as data
class Person:
def __init__(self, wxid: str):
self.wxid = wxid
self.username = data.get_conRemark(wxid)
self.avatar_path = data.get_avator(wxid)