适用于 Nonebot2 的聊天记录插件
Project description
nonebot-plugin-chatrecorder
适用于 Nonebot2 的聊天记录插件。
安装
- 使用 nb-cli
nb plugin install nonebot_plugin_chatrecorder
- 使用 pip
pip install nonebot_plugin_chatrecorder
配置
插件依赖 nonebot-plugin-datastore 插件
需要在配置文件中添加:
datastore_enable_database=true
插件会记录机器人收到的消息,可以添加以下配置选择是否记录机器人发出的消息(默认为 true
);如果协议端开启了自身消息上报则需设置为 false
以避免重复
chatrecorder_record_send_msg=true
消息记录文件存放在 nonebot-plugin-datastore 插件设置的数据目录;同时插件会将消息中 base64 形式的图片、语音等存成文件,放置在 nonebot-plugin-datastore 插件设置的缓存目录,避免消息记录文件体积过大
使用
示例:
from datetime import datetime, timedelta
from nonebot_plugin_chatrecorder import get_message_records
from nonebot.adapters.onebot.v11 import GroupMessageEvent
@matcher.handle()
def handle(event: GroupMessageEvent):
# 获取当前群内成员 '12345' 和 '54321' 1天之内的消息
msgs = await get_message_records(
user_ids=['12345', '54321'],
group_ids=[event.group_id],
time_start=datetime.utcnow() - timedelta(days=1),
)
详细参数及说明见代码注释
TODO
- 咕?
- 咕咕咕!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Close
Hashes for nonebot_plugin_chatrecorder-0.1.5.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | 82e9b870756c4c5b0d33a11f932340e369cd28d35cf25ac364c8f886be4fbfa0 |
|
MD5 | 224cf109b945d4bcceaa2447a65ce650 |
|
BLAKE2b-256 | 952849d6c5132ece100f75021fe3542f62b9d24ab356cb13e9bafe69a241fe25 |
Close
Hashes for nonebot_plugin_chatrecorder-0.1.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d1089506a8826a33445b8213e43ab39df6cab11660ab2b1f47d82167701e82f |
|
MD5 | 41fd6cf62f83223eae1412c9c34f3869 |
|
BLAKE2b-256 | f37e52ae9adf3e871bd42d5aa6bd729470392282240b3ce2bf8e2925442c0926 |