mirror of
https://github.com/LC044/WeChatMsg
synced 2025-05-22 08:09:10 +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)
|