WeChatMsg/app/person.py

30 lines
716 B
Python
Raw Normal View History

from PyQt5.QtGui import QPixmap
2023-10-30 23:55:26 +08:00
import app.DataBase.data as data
class Person:
def __init__(self, wxid: str):
self.wxid = wxid
self.conRemark = data.get_conRemark(wxid)
self.nickname, self.alias = data.get_nickname(wxid)
2023-10-30 23:55:26 +08:00
self.avatar_path = data.get_avator(wxid)
self.avatar = QPixmap(self.avatar_path).scaled(60, 60)
class Me(Person):
def __init__(self, wxid: str):
super(Me, self).__init__(wxid)
self.city = None
self.province = None
class Contact(Person):
def __init__(self, wxid: str):
super(Contact, self).__init__(wxid)
class Group(Person):
def __init__(self, wxid: str):
super(Group, self).__init__(wxid)