Browse Source

#35

ai-migration
みてるぞ 1 week ago
parent
commit
270b4515d8
1 changed files with 4 additions and 2 deletions
  1. +4
    -2
      test.py

+ 4
- 2
test.py View File

@@ -731,22 +731,24 @@ class CWindow:

class Broadcast:
chat: PytchatCore
code: str

def __init__ (
self,
broadcast_code,
):
self.chat = pytchat.create (broadcast_code)
self.code = broadcast_code
self.chat = pytchat.create (self.code)

def fetch_chat (
self,
) -> Chat | None:
if not self.chat.is_alive ():
self.chat = pytchat.create (self.code)
return None
chats = self.chat.get ().items
if not chats:
return None
print (f"{ datetime.now () }: { chats }")
return random.choice (chats)




Loading…
Cancel
Save