from douyin_live import DouyinLiveRoom async def main(): room = DouyinLiveRoom("直播间链接或房间ID") # 替换为实际的直播间链接或ID @room.on("comment") async def on_comment(event): print(f"{event.user.nickname}: {event.content}") # 打印评论 await room.connect() import asyncio asyncio.run(main())