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.
Files
Douyin_Web_Live/messages/control.py

14 lines
436 B
Python

import time
from messages.base import Base
from protobuf import message_pb2
class ControlMessage(Base):
def __init__(self):
self.instance = message_pb2.ChatMessage()
def __str__(self):
# 基本上都是下播了,比如主播离开了,违规被Ban了啥的,有这个消息,直播间信息必然发生变化
return time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()) + '【直播间信息】'