pywayne-lark-bot
Installation
SKILL.md
Pywayne Lark Bot
飞书机器人模块,提供完整飞书 API 交互功能,包括消息发送、文件管理、用户/群组查询和消息监听。
Quick Start
from pywayne.lark_bot import LarkBot, TextContent
# 初始化
bot = LarkBot(app_id="your_app_id", app_secret="your_app_secret")
# 发送文本消息到用户
bot.send_text_to_user(user_open_id="user_xxx", text="Hello!")
# 发送文本消息到群聊
bot.send_text_to_chat(chat_id="oc_xxx", text="Group message")