mirror of
https://github.com/LC044/WeChatMsg
synced 2024-11-15 06:11:19 +08:00
9 lines
207 B
Python
9 lines
207 B
Python
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)
|