mirror of
https://github.com/xfgryujk/blivedm.git
synced 2025-03-29 13:30:15 +08:00
39 lines
888 B
Python
39 lines
888 B
Python
# -*- coding: utf-8 -*-
|
||
|
||
from asyncio import get_event_loop
|
||
|
||
from blivedm import BLiveClient
|
||
|
||
|
||
class MyBLiveClient(BLiveClient):
|
||
|
||
async def _on_get_popularity(self, popularity):
|
||
print('当前人气值:', popularity)
|
||
|
||
async def _on_get_danmaku(self, content, user_name):
|
||
print(user_name, '说:', content)
|
||
|
||
|
||
def main():
|
||
loop = get_event_loop()
|
||
|
||
# 如果SSL验证失败或连接卡死就把第二个参数设为False
|
||
client = MyBLiveClient(139, True, loop)
|
||
client.start()
|
||
|
||
# 5秒后停止,测试用
|
||
# loop.call_later(5, client.stop, loop.stop)
|
||
# 按Ctrl+C停止
|
||
# import signal
|
||
# signal.signal(signal.SIGINT, lambda signum, frame: client.stop(loop.stop))
|
||
|
||
try:
|
||
loop.run_forever()
|
||
finally:
|
||
loop.run_until_complete(loop.shutdown_asyncgens())
|
||
loop.close()
|
||
|
||
|
||
if __name__ == '__main__':
|
||
main()
|