This repository has been archived on 2024-09-10. You can view files and clone it, but cannot push or open issues or pull requests.
2021-11-29 18:27:02 +08:00

19 lines
543 B
Python

import time
from protobuf import message_pb2
from messages.base import Base
class MemberMessage(Base):
def __init__(self):
self.instance = message_pb2.MemberMessage()
def format_content(self):
template = self.instance.common.displayText.defaultPattern
nickname = self.user().nickname
return template.replace('{0:user}', nickname).replace('{1:string}', '')
def __str__(self):
return time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()) + '【进入直播间】' + self.format_content()