Name | nonebot-plugin-comment-analysis JSON |
Version |
0.2.2
JSON |
| download |
home_page | None |
Summary | NoneBot2 插件:解析 B 站链接并生成评论、弹幕与 AI 分析 |
upload_time | 2025-09-17 11:42:43 |
maintainer | None |
docs_url | None |
author | None |
requires_python | >=3.9 |
license | The MIT License (MIT) Copyright (c) 2025 lbsucceed Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. |
keywords |
nonebot
bilibili
analysis
wordcloud
plugin
|
VCS |
 |
bugtrack_url |
|
requirements |
No requirements were recorded.
|
Travis-CI |
No Travis.
|
coveralls test coverage |
No coveralls.
|
<div align="center">
<a href="https://v2.nonebot.dev/store">
<img src="https://raw.githubusercontent.com/fllesser/nonebot-plugin-template/refs/heads/resource/.docs/NoneBotPlugin.svg" width="260" alt="NoneBotPluginLogo">
</a>
<h1>nonebot-plugin-comment-analysis</h1>
<p><strong>NoneBot2 插件:解析 B 站链接,返回视频信息、热评摘要与 AI 洞察</strong></p>
<a href="./LICENSE">
<img src="https://img.shields.io/github/license/lbsucceed/nonebot-plugin-comment-analysis.svg" alt="license">
</a>
<img src="https://img.shields.io/badge/python-3.9%2B-blue.svg" alt="python">
<img src="https://img.shields.io/badge/NoneBot-2.x-green.svg" alt="nonebot">
</div>
> 丢一个链接,取回完整的评论分析:封面、在线人数、热评、词云和 AI 报告一次到位。
## 📖 介绍
鉴于群友发的视频太抽象了,有必要调查一下成分
`nonebot-plugin-comment-analysis` 专注于解读 Bilibili 视频:
- 自动识别群聊或私聊中的 `bilibili.com`、`b23.tv`、`BV` 链接
- 拉取视频基础信息、封面和实时在线数据
- 在体积允许时回传视频文件,超限则自动改为上传或提示
- 并行抓取弹幕、评论,生成两份词云
- 调用 Gemini / OpenAI 兼容接口生成摘要与深度分析
## ✨ 功能亮点
- **零指令触发**:直接贴链接即可响应
- **双词云视角**:弹幕、评论分开统计,更快找到争议点
- **热评速览**:附带最高赞评论,便于掌握舆论
- **可选 AI 汇总**:两阶段总结 + 分析,支持主流大模型
- **缓存友好**:默认使用本地 `ffmpeg` 合并音视频
## 💿 安装
> 依赖 `ffmpeg`、`wordcloud`、`jieba` 等基础组件,请先在系统中安装。
```bash
# 使用 nb-cli
nb plugin install nonebot-plugin-comment-analysis --upgrade
# 或使用 pip
pip install --upgrade nonebot-plugin-comment-analysis
```
安装后在 `pyproject.toml` 或 `.env` 中声明插件:
```toml
[tool.nonebot]
plugins = ["nonebot_plugin_comment_analysis"]
```
## ⚙️ 配置
| 配置项 | 类型 | 默认值 | 说明 |
| --- | --- | --- | --- |
| `bili_sessdata` | `str` | `""` | B 站登录 Cookie,缺省时仅能访问公开数据,建议使用单独账号防止失效 |
| `r_global_nickname` | `str` | `"Bot"` | 合并转发消息中展示的机器人昵称 |
| `video_duration_maximum` | `int` | `480` | 自动发送的视频最长秒数,超过后仅返回信息并改为文件上传 |
| `gemini_key` | `str` \| `null` | Google Gemini API Key,配置后启用 AI 总结 |
| `openai_base_url` | `str` | `null` | OpenAI 兼容接口地址(例如自建反代) |
| `openai_api_key` | `str` | `null` | OpenAI API Key,与 `openai_base_url` 配套使用 |
| `summary_model` | `str` | `"gemini-2.5-flash"` | 摘要与分析使用的模型名称 |
| `proxy` | `str` | `null` | 外部 API 请求代理,部署在国内时建议设置;无需代理可留空 |
| `summary_max_length` | `int` | `1000` | 发送给大模型的上下文最大字符数 |
| `summary_min_length` | `int` | `50` | 生成文本的最小长度约束 |
| `time_out` | `int` | `120` | 调用外部 API 的超时时间(秒) |
其余字段(如 `xhs_ck`、`douyin_ck`、`global_resolve_controller`)为旧版本兼容保留,目前不会影响 B 站解析逻辑,可忽略。
在 NoneBot 的 `.env`/`.env.*` 中可以直接写小写键:
```
bili_sessdata=xxx
proxy=http://127.0.0.1:10809
gemini_key=YOUR_GEMINI_KEY
```
## 🚀 使用方式
1. 启动 NoneBot。
2. 在 QQ 群聊或私聊中发送任意 B 站视频链接、短链或 `BV` 号。
3. 插件会依次返回:
- 视频封面与基础信息
- 视频文件或提示(视文件大小而定)
- 热评摘要
- 弹幕词云与评论词云
- AI 总结与分析(已配置大模型时)
若需要临时停用评论解析,可通过 NoneBot 的插件管理关闭该插件。
## ❗ 常见问题
- **视频太大发送失败?** 调整 `video_duration_maximum` 或直接使用返回的下载地址,也可以让插件改为上传群文件。
- **AI 总结报错?** 检查密钥与代理配置是否正确,必要时降低 `summary_max_length` 以减少请求体积。
- **词云是空白?** 抽样弹幕/评论不足或全部被过滤时会出现空图,属于正常情况。
## 🙏 致谢
- [NoneBot](https://github.com/nonebot/nonebot2)
- [bilibili-api-python](https://github.com/Nemo2011/bilibili-api)
- [nonebot-plugin-resolver](https://github.com/zhiyu1998/nonebot-plugin-resolver)
## 📄 License
本项目在 [MIT License](./LICENSE) 下发布。
Raw data
{
"_id": null,
"home_page": null,
"name": "nonebot-plugin-comment-analysis",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.9",
"maintainer_email": null,
"keywords": "nonebot, bilibili, analysis, wordcloud, plugin",
"author": null,
"author_email": "lbsucceed <woaikanpika123@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/2d/9b/27f43526803433bacd585f0038a3d4031eb4c187ffb2247ce0a2290d0304/nonebot_plugin_comment_analysis-0.2.2.tar.gz",
"platform": null,
"description": "\ufeff<div align=\"center\">\r\n <a href=\"https://v2.nonebot.dev/store\">\r\n <img src=\"https://raw.githubusercontent.com/fllesser/nonebot-plugin-template/refs/heads/resource/.docs/NoneBotPlugin.svg\" width=\"260\" alt=\"NoneBotPluginLogo\">\r\n </a>\r\n\r\n <h1>nonebot-plugin-comment-analysis</h1>\r\n <p><strong>NoneBot2 \u63d2\u4ef6\uff1a\u89e3\u6790 B \u7ad9\u94fe\u63a5\uff0c\u8fd4\u56de\u89c6\u9891\u4fe1\u606f\u3001\u70ed\u8bc4\u6458\u8981\u4e0e AI \u6d1e\u5bdf</strong></p>\r\n\r\n <a href=\"./LICENSE\">\r\n <img src=\"https://img.shields.io/github/license/lbsucceed/nonebot-plugin-comment-analysis.svg\" alt=\"license\">\r\n </a>\r\n <img src=\"https://img.shields.io/badge/python-3.9%2B-blue.svg\" alt=\"python\">\r\n <img src=\"https://img.shields.io/badge/NoneBot-2.x-green.svg\" alt=\"nonebot\">\r\n</div>\r\n\r\n> \u4e22\u4e00\u4e2a\u94fe\u63a5\uff0c\u53d6\u56de\u5b8c\u6574\u7684\u8bc4\u8bba\u5206\u6790\uff1a\u5c01\u9762\u3001\u5728\u7ebf\u4eba\u6570\u3001\u70ed\u8bc4\u3001\u8bcd\u4e91\u548c AI \u62a5\u544a\u4e00\u6b21\u5230\u4f4d\u3002\r\n\r\n## \ud83d\udcd6 \u4ecb\u7ecd\r\n\r\n\u9274\u4e8e\u7fa4\u53cb\u53d1\u7684\u89c6\u9891\u592a\u62bd\u8c61\u4e86\uff0c\u6709\u5fc5\u8981\u8c03\u67e5\u4e00\u4e0b\u6210\u5206\r\n\r\n`nonebot-plugin-comment-analysis` \u4e13\u6ce8\u4e8e\u89e3\u8bfb Bilibili \u89c6\u9891\uff1a\r\n- \u81ea\u52a8\u8bc6\u522b\u7fa4\u804a\u6216\u79c1\u804a\u4e2d\u7684 `bilibili.com`\u3001`b23.tv`\u3001`BV` \u94fe\u63a5\r\n- \u62c9\u53d6\u89c6\u9891\u57fa\u7840\u4fe1\u606f\u3001\u5c01\u9762\u548c\u5b9e\u65f6\u5728\u7ebf\u6570\u636e\r\n- \u5728\u4f53\u79ef\u5141\u8bb8\u65f6\u56de\u4f20\u89c6\u9891\u6587\u4ef6\uff0c\u8d85\u9650\u5219\u81ea\u52a8\u6539\u4e3a\u4e0a\u4f20\u6216\u63d0\u793a\r\n- \u5e76\u884c\u6293\u53d6\u5f39\u5e55\u3001\u8bc4\u8bba\uff0c\u751f\u6210\u4e24\u4efd\u8bcd\u4e91\r\n- \u8c03\u7528 Gemini / OpenAI \u517c\u5bb9\u63a5\u53e3\u751f\u6210\u6458\u8981\u4e0e\u6df1\u5ea6\u5206\u6790\r\n\r\n## \u2728 \u529f\u80fd\u4eae\u70b9\r\n- **\u96f6\u6307\u4ee4\u89e6\u53d1**\uff1a\u76f4\u63a5\u8d34\u94fe\u63a5\u5373\u53ef\u54cd\u5e94\r\n- **\u53cc\u8bcd\u4e91\u89c6\u89d2**\uff1a\u5f39\u5e55\u3001\u8bc4\u8bba\u5206\u5f00\u7edf\u8ba1\uff0c\u66f4\u5feb\u627e\u5230\u4e89\u8bae\u70b9\r\n- **\u70ed\u8bc4\u901f\u89c8**\uff1a\u9644\u5e26\u6700\u9ad8\u8d5e\u8bc4\u8bba\uff0c\u4fbf\u4e8e\u638c\u63e1\u8206\u8bba\r\n- **\u53ef\u9009 AI \u6c47\u603b**\uff1a\u4e24\u9636\u6bb5\u603b\u7ed3 + \u5206\u6790\uff0c\u652f\u6301\u4e3b\u6d41\u5927\u6a21\u578b\r\n- **\u7f13\u5b58\u53cb\u597d**\uff1a\u9ed8\u8ba4\u4f7f\u7528\u672c\u5730 `ffmpeg` \u5408\u5e76\u97f3\u89c6\u9891\r\n\r\n## \ud83d\udcbf \u5b89\u88c5\r\n\r\n> \u4f9d\u8d56 `ffmpeg`\u3001`wordcloud`\u3001`jieba` \u7b49\u57fa\u7840\u7ec4\u4ef6\uff0c\u8bf7\u5148\u5728\u7cfb\u7edf\u4e2d\u5b89\u88c5\u3002\r\n\r\n```bash\r\n# \u4f7f\u7528 nb-cli\r\nnb plugin install nonebot-plugin-comment-analysis --upgrade\r\n\r\n# \u6216\u4f7f\u7528 pip\r\npip install --upgrade nonebot-plugin-comment-analysis\r\n```\r\n\r\n\u5b89\u88c5\u540e\u5728 `pyproject.toml` \u6216 `.env` \u4e2d\u58f0\u660e\u63d2\u4ef6\uff1a\r\n\r\n```toml\r\n[tool.nonebot]\r\nplugins = [\"nonebot_plugin_comment_analysis\"]\r\n```\r\n\r\n## \u2699\ufe0f \u914d\u7f6e\r\n\r\n| \u914d\u7f6e\u9879 | \u7c7b\u578b | \u9ed8\u8ba4\u503c | \u8bf4\u660e |\r\n| --- | --- | --- | --- |\r\n| `bili_sessdata` | `str` | `\"\"` | B \u7ad9\u767b\u5f55 Cookie\uff0c\u7f3a\u7701\u65f6\u4ec5\u80fd\u8bbf\u95ee\u516c\u5f00\u6570\u636e\uff0c\u5efa\u8bae\u4f7f\u7528\u5355\u72ec\u8d26\u53f7\u9632\u6b62\u5931\u6548 |\r\n| `r_global_nickname` | `str` | `\"Bot\"` | \u5408\u5e76\u8f6c\u53d1\u6d88\u606f\u4e2d\u5c55\u793a\u7684\u673a\u5668\u4eba\u6635\u79f0 |\r\n| `video_duration_maximum` | `int` | `480` | \u81ea\u52a8\u53d1\u9001\u7684\u89c6\u9891\u6700\u957f\u79d2\u6570\uff0c\u8d85\u8fc7\u540e\u4ec5\u8fd4\u56de\u4fe1\u606f\u5e76\u6539\u4e3a\u6587\u4ef6\u4e0a\u4f20 |\r\n| `gemini_key` | `str` \\| `null` | Google Gemini API Key\uff0c\u914d\u7f6e\u540e\u542f\u7528 AI \u603b\u7ed3 |\r\n| `openai_base_url` | `str` | `null` | OpenAI \u517c\u5bb9\u63a5\u53e3\u5730\u5740\uff08\u4f8b\u5982\u81ea\u5efa\u53cd\u4ee3\uff09 |\r\n| `openai_api_key` | `str` | `null` | OpenAI API Key\uff0c\u4e0e `openai_base_url` \u914d\u5957\u4f7f\u7528 |\r\n| `summary_model` | `str` | `\"gemini-2.5-flash\"` | \u6458\u8981\u4e0e\u5206\u6790\u4f7f\u7528\u7684\u6a21\u578b\u540d\u79f0 |\r\n| `proxy` | `str` | `null` | \u5916\u90e8 API \u8bf7\u6c42\u4ee3\u7406\uff0c\u90e8\u7f72\u5728\u56fd\u5185\u65f6\u5efa\u8bae\u8bbe\u7f6e\uff1b\u65e0\u9700\u4ee3\u7406\u53ef\u7559\u7a7a |\r\n| `summary_max_length` | `int` | `1000` | \u53d1\u9001\u7ed9\u5927\u6a21\u578b\u7684\u4e0a\u4e0b\u6587\u6700\u5927\u5b57\u7b26\u6570 |\r\n| `summary_min_length` | `int` | `50` | \u751f\u6210\u6587\u672c\u7684\u6700\u5c0f\u957f\u5ea6\u7ea6\u675f |\r\n| `time_out` | `int` | `120` | \u8c03\u7528\u5916\u90e8 API \u7684\u8d85\u65f6\u65f6\u95f4\uff08\u79d2\uff09 |\r\n\r\n\u5176\u4f59\u5b57\u6bb5\uff08\u5982 `xhs_ck`\u3001`douyin_ck`\u3001`global_resolve_controller`\uff09\u4e3a\u65e7\u7248\u672c\u517c\u5bb9\u4fdd\u7559\uff0c\u76ee\u524d\u4e0d\u4f1a\u5f71\u54cd B \u7ad9\u89e3\u6790\u903b\u8f91\uff0c\u53ef\u5ffd\u7565\u3002\r\n\r\n\u5728 NoneBot \u7684 `.env`/`.env.*` \u4e2d\u53ef\u4ee5\u76f4\u63a5\u5199\u5c0f\u5199\u952e\uff1a\r\n\r\n```\r\nbili_sessdata=xxx\r\nproxy=http://127.0.0.1:10809\r\ngemini_key=YOUR_GEMINI_KEY\r\n```\r\n\r\n## \ud83d\ude80 \u4f7f\u7528\u65b9\u5f0f\r\n1. \u542f\u52a8 NoneBot\u3002\r\n2. \u5728 QQ \u7fa4\u804a\u6216\u79c1\u804a\u4e2d\u53d1\u9001\u4efb\u610f B \u7ad9\u89c6\u9891\u94fe\u63a5\u3001\u77ed\u94fe\u6216 `BV` \u53f7\u3002\r\n3. \u63d2\u4ef6\u4f1a\u4f9d\u6b21\u8fd4\u56de\uff1a\r\n - \u89c6\u9891\u5c01\u9762\u4e0e\u57fa\u7840\u4fe1\u606f\r\n - \u89c6\u9891\u6587\u4ef6\u6216\u63d0\u793a\uff08\u89c6\u6587\u4ef6\u5927\u5c0f\u800c\u5b9a\uff09\r\n - \u70ed\u8bc4\u6458\u8981\r\n - \u5f39\u5e55\u8bcd\u4e91\u4e0e\u8bc4\u8bba\u8bcd\u4e91\r\n - AI \u603b\u7ed3\u4e0e\u5206\u6790\uff08\u5df2\u914d\u7f6e\u5927\u6a21\u578b\u65f6\uff09\r\n\r\n\u82e5\u9700\u8981\u4e34\u65f6\u505c\u7528\u8bc4\u8bba\u89e3\u6790\uff0c\u53ef\u901a\u8fc7 NoneBot \u7684\u63d2\u4ef6\u7ba1\u7406\u5173\u95ed\u8be5\u63d2\u4ef6\u3002\r\n\r\n## \u2757 \u5e38\u89c1\u95ee\u9898\r\n- **\u89c6\u9891\u592a\u5927\u53d1\u9001\u5931\u8d25\uff1f** \u8c03\u6574 `video_duration_maximum` \u6216\u76f4\u63a5\u4f7f\u7528\u8fd4\u56de\u7684\u4e0b\u8f7d\u5730\u5740\uff0c\u4e5f\u53ef\u4ee5\u8ba9\u63d2\u4ef6\u6539\u4e3a\u4e0a\u4f20\u7fa4\u6587\u4ef6\u3002\r\n- **AI \u603b\u7ed3\u62a5\u9519\uff1f** \u68c0\u67e5\u5bc6\u94a5\u4e0e\u4ee3\u7406\u914d\u7f6e\u662f\u5426\u6b63\u786e\uff0c\u5fc5\u8981\u65f6\u964d\u4f4e `summary_max_length` \u4ee5\u51cf\u5c11\u8bf7\u6c42\u4f53\u79ef\u3002\r\n- **\u8bcd\u4e91\u662f\u7a7a\u767d\uff1f** \u62bd\u6837\u5f39\u5e55/\u8bc4\u8bba\u4e0d\u8db3\u6216\u5168\u90e8\u88ab\u8fc7\u6ee4\u65f6\u4f1a\u51fa\u73b0\u7a7a\u56fe\uff0c\u5c5e\u4e8e\u6b63\u5e38\u60c5\u51b5\u3002\r\n\r\n## \ud83d\ude4f \u81f4\u8c22\r\n- [NoneBot](https://github.com/nonebot/nonebot2)\r\n- [bilibili-api-python](https://github.com/Nemo2011/bilibili-api)\r\n- [nonebot-plugin-resolver](https://github.com/zhiyu1998/nonebot-plugin-resolver)\r\n\r\n## \ud83d\udcc4 License\r\n\r\n\u672c\u9879\u76ee\u5728 [MIT License](./LICENSE) \u4e0b\u53d1\u5e03\u3002\r\n",
"bugtrack_url": null,
"license": "The MIT License (MIT) Copyright (c) 2025 lbsucceed Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
"summary": "NoneBot2 \u63d2\u4ef6\uff1a\u89e3\u6790 B \u7ad9\u94fe\u63a5\u5e76\u751f\u6210\u8bc4\u8bba\u3001\u5f39\u5e55\u4e0e AI \u5206\u6790",
"version": "0.2.2",
"project_urls": {
"Issues": "https://github.com/lbsucceed/nonebot-plugin-comment-analysis/issues",
"Repository": "https://github.com/lbsucceed/nonebot-plugin-comment-analysis"
},
"split_keywords": [
"nonebot",
" bilibili",
" analysis",
" wordcloud",
" plugin"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "c6b8b774794d1e6d0e45c61d17c0319b1c3a4a7268ea76be90434802c4b079e1",
"md5": "af015aca949cab40c28d7f3a9c4cc91c",
"sha256": "5f713ca34983854e36c187f50730af56bbfd95d49d5491a3dc234b3030580bc4"
},
"downloads": -1,
"filename": "nonebot_plugin_comment_analysis-0.2.2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "af015aca949cab40c28d7f3a9c4cc91c",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.9",
"size": 7223589,
"upload_time": "2025-09-17T11:42:38",
"upload_time_iso_8601": "2025-09-17T11:42:38.839503Z",
"url": "https://files.pythonhosted.org/packages/c6/b8/b774794d1e6d0e45c61d17c0319b1c3a4a7268ea76be90434802c4b079e1/nonebot_plugin_comment_analysis-0.2.2-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "2d9b27f43526803433bacd585f0038a3d4031eb4c187ffb2247ce0a2290d0304",
"md5": "2a1c53c9d9a5226ee2a9add9a3f1449d",
"sha256": "90135f4b820243097ff98656c9a0c3db23bc16bf4ba2bfae469fedf2b18b8842"
},
"downloads": -1,
"filename": "nonebot_plugin_comment_analysis-0.2.2.tar.gz",
"has_sig": false,
"md5_digest": "2a1c53c9d9a5226ee2a9add9a3f1449d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.9",
"size": 7222044,
"upload_time": "2025-09-17T11:42:43",
"upload_time_iso_8601": "2025-09-17T11:42:43.504965Z",
"url": "https://files.pythonhosted.org/packages/2d/9b/27f43526803433bacd585f0038a3d4031eb4c187ffb2247ce0a2290d0304/nonebot_plugin_comment_analysis-0.2.2.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-09-17 11:42:43",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "lbsucceed",
"github_project": "nonebot-plugin-comment-analysis",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "nonebot-plugin-comment-analysis"
}