alicebot icon indicating copy to clipboard operation
alicebot copied to clipboard

简单的 Python 异步多后端机器人框架

Results 3 alicebot issues
Sort by recently updated
recently updated
newest added

配置定时任务的时候会自动配置多一个重复的 这是插件源代码(部分) `from alicebot import Plugin, MessageEvent from .service import get_today_courses, get_tomorrow_courses from alicebot.adapter.apscheduler import scheduler_decorator @scheduler_decorator( trigger="cron", trigger_args={"day_of_week": "sun,mon,wed,thu", "hour": 22, "minute": 0}, override_rule=False ) class CourseSchedule(Plugin): async def...

对于一个足够完整的项目而言,访问数据库是一个十分常见的需求。但是目前 AliceBot 并没有任何针对特定 ORM 框架的特别支持。 此 issue 用于跟踪 AliceBot 与 ORM 集成的进度。 关于集成 ORM 的选择,我的初步的想法是,ORM 需要满足以下条件: 1. 在 Python 生态中足够流行 2. 能够与 Pydantic 有良好的集成 3. 支持 async 4. 类型安全 5....