forked from xfgryujk/blivedm
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsample.py
99 lines (79 loc) · 2.82 KB
/
sample.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# -*- coding: utf-8 -*-
import asyncio
import random
import blivedm
# 直播间ID的取值看直播间URL
TEST_ROOM_IDS = [
12235923,
14327465,
21396545,
21449083,
23105590,
]
async def main():
await run_single_client()
await run_multi_clients()
async def run_single_client():
"""
演示监听一个直播间
"""
room_id = random.choice(TEST_ROOM_IDS)
# 如果SSL验证失败就把ssl设为False,B站真的有过忘续证书的情况
client = blivedm.BLiveClient(room_id, ssl=True)
handler = MyHandler()
client.add_handler(handler)
client.start()
try:
# 演示5秒后停止
await asyncio.sleep(5)
client.stop()
await client.join()
finally:
await client.stop_and_close()
async def run_multi_clients():
"""
演示同时监听多个直播间
"""
clients = [blivedm.BLiveClient(room_id) for room_id in TEST_ROOM_IDS]
handler = MyHandler()
for client in clients:
client.add_handler(handler)
client.start()
try:
await asyncio.gather(*(client.join() for client in clients))
finally:
await asyncio.gather(*(client.stop_and_close() for client in clients))
class MyHandler(blivedm.BaseHandler):
# # 演示如何添加自定义回调
# _CMD_CALLBACK_DICT = blivedm.BaseHandler._CMD_CALLBACK_DICT.copy()
#
# # 入场消息回调
# async def __interact_word_callback(self, client: blivedm.BLiveClient, command: dict):
# print(f"[{client.room_id}] INTERACT_WORD: self_type={type(self).__name__}, room_id={client.room_id},"
# f" uname={command['data']['uname']}")
# _CMD_CALLBACK_DICT['INTERACT_WORD'] = __interact_word_callback # noqa
async def _on_heartbeat(
self, client: blivedm.BLiveClient, message: blivedm.HeartbeatMessage
):
print(f"[{client.room_id}] 当前人气值:{message.popularity}")
async def _on_danmaku(
self, client: blivedm.BLiveClient, message: blivedm.DanmakuMessage
):
print(f"[{client.room_id}] {message.uname}:{message.msg}")
async def _on_gift(self, client: blivedm.BLiveClient, message: blivedm.GiftMessage):
print(
f"[{client.room_id}] {message.uname} 赠送{message.gift_name}x{message.num}"
f" ({message.coin_type}瓜子x{message.total_coin})"
)
async def _on_buy_guard(
self, client: blivedm.BLiveClient, message: blivedm.GuardBuyMessage
):
print(f"[{client.room_id}] {message.username} 购买{message.gift_name}")
async def _on_super_chat(
self, client: blivedm.BLiveClient, message: blivedm.SuperChatMessage
):
print(
f"[{client.room_id}] 醒目留言 ¥{message.price} {message.uname}:{message.message}"
)
if __name__ == "__main__":
asyncio.run(main())