<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="310" alt="logo">
</a>
## ✨ [Nonebot2](https://github.com/nonebot/nonebot2) 链接分享自动解析插件 ✨
[](./LICENSE)
[](https://pypi.python.org/pypi/nonebot-plugin-parser)
[](https://python.org)
[](https://github.com/astral-sh/uv)
[](https://github.com/astral-sh/ruff)
<br/>
[](https://results.pre-commit.ci/latest/github/fllesser/nonebot-plugin-parser/master)
[](https://codecov.io/gh/fllesser/nonebot-plugin-parser)
[](https://qm.qq.com/q/y4T4CjHimc)
</div>
> [!IMPORTANT]
> **收藏项目**,你将从 GitHub 上无延迟地接收所有发布通知~⭐️
<img width="100%" src="https://starify.komoridevs.icu/api/starify?owner=fllesser&repo=nonebot-plugin-parser" alt="starify" />
## 📖 介绍
[nonebot-plugin-resolver](https://github.com/zhiyu1998/nonebot-plugin-resolver) 重制版
| 平台 | 触发的消息形态 | 视频 | 图集 | 音频 |
| ------- | ------------------------------------- | ---- | ---- | ---- |
| B站 | BV号/链接(包含短链,BV,av)/卡片/小程序 | ✅ | ✅ | ✅ |
| 抖音 | 链接(分享链接,兼容电脑端链接) | ✅ | ✅ | ❌️ |
| 微博 | 链接(博文,视频,show) | ✅ | ✅ | ❌️ |
| 小红书 | 链接(含短链)/卡片 | ✅ | ✅ | ❌️ |
| 快手 | 链接(包含标准链接和短链) | ✅ | ✅ | ❌️ |
| acfun | 链接 | ✅ | ❌️ | ❌️ |
| youtube | 链接(含短链) | ✅ | ❌️ | ✅ |
| tiktok | 链接 | ✅ | ❌️ | ❌️ |
| twitter | 链接 | ✅ | ✅ | ❌️ |
支持的链接,可参考 [测试链接](https://github.com/fllesser/nonebot-plugin-parser/blob/master/test_url.md)
## 💿 安装
> [!Warning]
> **如果你已经在使用 nonebot-plugin-resolver,请在安装此插件前卸载**
<details open>
<summary>使用 nb-cli 安装/更新</summary>
在 nonebot2 项目的根目录下打开命令行, 输入以下指令即可安装
nb plugin install nonebot-plugin-parser --upgrade
使用 pypi 源更新
nb plugin install nonebot-plugin-parser --upgrade -i https://pypi.org/simple
安装仓库 dev 分支
uv pip install git+https://github.com/fllesser/nonebot-plugin-parser.git@dev
</details>
<details>
<summary>使用包管理器安装</summary>
在 nonebot2 项目的插件目录下, 打开命令行, 根据你使用的包管理器, 输入相应的安装命令
<details open>
<summary>uv</summary>
使用 uv 安装
uv add nonebot-plugin-parser
安装仓库 dev 分支
uv add git+https://github.com/fllesser/nonebot-plugin-parser.git@master
</details>
<details>
<summary>pip</summary>
pip install --upgrade nonebot-plugin-parser
</details>
<details>
<summary>pdm</summary>
pdm add nonebot-plugin-parser
</details>
<details>
<summary>poetry</summary>
poetry add nonebot-plugin-parser
</details>
打开 nonebot2 项目根目录下的 `pyproject.toml` 文件, 在 `[tool.nonebot]` 部分追加写入
plugins = ["nonebot_plugin_parser"]
</details>
<details open>
<summary>安装必要组件</summary>
大部分解析都依赖于 ffmpeg
ubuntu/debian
sudo apt-get install ffmpeg
其他 linux 参考(原项目推荐): https://gitee.com/baihu433/ffmpeg
Windows 参考(原项目推荐): https://www.jianshu.com/p/5015a477de3c
</details>
## ⚙️ 配置
在 nonebot2 项目的`.env`文件中添加下表中的必填配置
| 配置项 | 必填 | 默认值 | 说明 |
| :-----------------------: | :---: | :----------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |
| NICKNAME | 否 | [""] | nonebot2 内置配置,可作为解析结果消息的前缀 |
| API_TIMEOUT | 否 | 30.0 | nonebot2 内置配置,若服务器上传带宽太低,建议调高,防止超时 |
| parser_bili_ck | 否 | "" | B 站 cookie, 必须含有 SESSDATA 项,可附加 B 站 AI 总结功能, 如果需要长期使用此凭据则不应该在**浏览器登录账户**导致 cookie 被刷新,建议注册个小号获取, 也可以配置 ac_time_value 项,用于凭据的自动刷新,[获取方式](https://github.com/fllesser/nonebot-plugin-parser/issues/177) |
| parser_bili_video_codes | 否 | '["avc", "av01", "hev"]' | 允许的 B 站视频编码,越靠前的编码优先级越高,可选 "avc"(H.264,体积较大), "hev"(HEVC), "av01"(AV1), 后两项在不同设备可能有兼容性问题,如需完全避免,可只填一项,如 '["avc"]' |
| parser_ytb_ck | 否 | "" | Youtube cookie, Youtube 视频因人机检测下载失败,需填 |
| parser_proxy | 否 | None | 仅作用于 youtube, tiktok 解析,推特解析会自动读取环境变量中的 http_proxy / https_proxy(代理软件通常会自动设置) |
| parser_need_upload | 否 | False | 音频解析,是否需要上传群文件 |
| parser_use_base64 | 否 | False | 视频,图片,音频是否使用 base64 发送,注意:编解码和传输 base64 会占用更多的内存,性能和带宽, 甚至可能会使 websocket 连接崩溃,因此该配置项仅推荐 nonebot 和 协议端不在同一机器的用户配置 |
| parser_duration_maximum | 否 | 480 | 视频最大解析时长,单位:_秒_ |
| parser_max_size | 否 | 90 | 音视频下载最大文件大小,单位 MB,超过该配置将阻断下载 |
| parser_disabled_platforms | 否 | [] | 全局禁止的解析,示例 parser_disabled_platforms=["bilibili", "douyin"] 表示禁止了哔哩哔哩和抖, 请根据自己需求填写["bilibili", "douyin", "kuaishou", "twitter", "youtube", "acfun", "tiktok", "weibo", "xiaohongshu"] |
| parser_render_type | 否 | "common" | 渲染器类型,可选 "default"(无图片渲染), "common"(PIL 通用图片渲染), "htmlkit"(htmlkit) |
| parser_append_url | 否 | False | 是否在解析结果中附加原始URL |
| parser_custom_font | 否 | None | 自定义字体,如未指定则使用内置字体,需将字体文件放置于localstore 生成的插件 data 目录下,parser_custom_font 为字体文件名 |
## 🎉 使用
### 指令表
| 指令 | 权限 | 需要@ | 范围 | 说明 |
| :------: | :-------------------: | :---: | :---: | :------: |
| 开启解析 | SUPERUSER/OWNER/ADMIN | 是 | 群聊 | 开启解析 |
| 关闭解析 | SUPERUSER/OWNER/ADMIN | 是 | 群聊 | 关闭解析 |
## 致谢
[nonebot-plugin-resolver](https://github.com/zhiyu1998/nonebot-plugin-resolver)
[parse-video-py](https://github.com/wujunwei928/parse-video-py)
Raw data
{
"_id": null,
"home_page": null,
"name": "nonebot-plugin-parser",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": "nonebot, nonebot2, video, bilibili, youtube, tiktok, twitter, kuaishou, acfun, weibo, xiaohongshu, nga, douyin",
"author": "fllesser",
"author_email": "fllesser <fllessive@gmail.com>",
"download_url": "https://files.pythonhosted.org/packages/96/15/3e215a0b7eadf26af7e45909041a7b9af148aaa6411cd86caa34ecc127bc/nonebot_plugin_parser-2.0.5.tar.gz",
"platform": null,
"description": "<div align=\"center\">\n<a href=\"https://v2.nonebot.dev/store\">\n <img src=\"https://raw.githubusercontent.com/fllesser/nonebot-plugin-template/refs/heads/resource/.docs/NoneBotPlugin.svg\" width=\"310\" alt=\"logo\">\n</a>\n\n## \u2728 [Nonebot2](https://github.com/nonebot/nonebot2) \u94fe\u63a5\u5206\u4eab\u81ea\u52a8\u89e3\u6790\u63d2\u4ef6 \u2728\n[](./LICENSE)\n[](https://pypi.python.org/pypi/nonebot-plugin-parser)\n[](https://python.org)\n[](https://github.com/astral-sh/uv)\n[](https://github.com/astral-sh/ruff)\n<br/>\n[](https://results.pre-commit.ci/latest/github/fllesser/nonebot-plugin-parser/master)\n[](https://codecov.io/gh/fllesser/nonebot-plugin-parser)\n[](https://qm.qq.com/q/y4T4CjHimc)\n</div>\n\n> [!IMPORTANT]\n> **\u6536\u85cf\u9879\u76ee**\uff0c\u4f60\u5c06\u4ece GitHub \u4e0a\u65e0\u5ef6\u8fdf\u5730\u63a5\u6536\u6240\u6709\u53d1\u5e03\u901a\u77e5\uff5e\u2b50\ufe0f\n\n<img width=\"100%\" src=\"https://starify.komoridevs.icu/api/starify?owner=fllesser&repo=nonebot-plugin-parser\" alt=\"starify\" />\n\n## \ud83d\udcd6 \u4ecb\u7ecd\n\n[nonebot-plugin-resolver](https://github.com/zhiyu1998/nonebot-plugin-resolver) \u91cd\u5236\u7248\n\n| \u5e73\u53f0 | \u89e6\u53d1\u7684\u6d88\u606f\u5f62\u6001 | \u89c6\u9891 | \u56fe\u96c6 | \u97f3\u9891 |\n| ------- | ------------------------------------- | ---- | ---- | ---- |\n| B\u7ad9 | BV\u53f7/\u94fe\u63a5(\u5305\u542b\u77ed\u94fe,BV,av)/\u5361\u7247/\u5c0f\u7a0b\u5e8f | \u2705\u200b | \u2705\u200b | \u2705\u200b |\n| \u6296\u97f3 | \u94fe\u63a5(\u5206\u4eab\u94fe\u63a5\uff0c\u517c\u5bb9\u7535\u8111\u7aef\u94fe\u63a5) | \u2705\u200b | \u2705\u200b | \u274c\ufe0f |\n| \u5fae\u535a | \u94fe\u63a5(\u535a\u6587\uff0c\u89c6\u9891\uff0cshow) | \u2705\u200b | \u2705\u200b | \u274c\ufe0f |\n| \u5c0f\u7ea2\u4e66 | \u94fe\u63a5(\u542b\u77ed\u94fe)/\u5361\u7247 | \u2705\u200b | \u2705\u200b | \u274c\ufe0f |\n| \u5feb\u624b | \u94fe\u63a5(\u5305\u542b\u6807\u51c6\u94fe\u63a5\u548c\u77ed\u94fe) | \u2705\u200b | \u2705\u200b | \u274c\ufe0f |\n| acfun | \u94fe\u63a5 | \u2705\u200b | \u274c\ufe0f | \u274c\ufe0f |\n| youtube | \u94fe\u63a5(\u542b\u77ed\u94fe) | \u2705\u200b | \u274c\ufe0f | \u2705\u200b |\n| tiktok | \u94fe\u63a5 | \u2705\u200b | \u274c\ufe0f | \u274c\ufe0f |\n| twitter | \u94fe\u63a5 | \u2705\u200b | \u2705\u200b | \u274c\ufe0f |\n\n\u652f\u6301\u7684\u94fe\u63a5\uff0c\u53ef\u53c2\u8003 [\u6d4b\u8bd5\u94fe\u63a5](https://github.com/fllesser/nonebot-plugin-parser/blob/master/test_url.md)\n\n## \ud83d\udcbf \u5b89\u88c5\n> [!Warning]\n> **\u5982\u679c\u4f60\u5df2\u7ecf\u5728\u4f7f\u7528 nonebot-plugin-resolver\uff0c\u8bf7\u5728\u5b89\u88c5\u6b64\u63d2\u4ef6\u524d\u5378\u8f7d**\n \n<details open>\n<summary>\u4f7f\u7528 nb-cli \u5b89\u88c5/\u66f4\u65b0</summary>\n\u5728 nonebot2 \u9879\u76ee\u7684\u6839\u76ee\u5f55\u4e0b\u6253\u5f00\u547d\u4ee4\u884c, \u8f93\u5165\u4ee5\u4e0b\u6307\u4ee4\u5373\u53ef\u5b89\u88c5\n\n nb plugin install nonebot-plugin-parser --upgrade\n\u4f7f\u7528 pypi \u6e90\u66f4\u65b0\n\n nb plugin install nonebot-plugin-parser --upgrade -i https://pypi.org/simple\n\u5b89\u88c5\u4ed3\u5e93 dev \u5206\u652f\n\n uv pip install git+https://github.com/fllesser/nonebot-plugin-parser.git@dev\n</details>\n\n<details>\n<summary>\u4f7f\u7528\u5305\u7ba1\u7406\u5668\u5b89\u88c5</summary>\n\u5728 nonebot2 \u9879\u76ee\u7684\u63d2\u4ef6\u76ee\u5f55\u4e0b, \u6253\u5f00\u547d\u4ee4\u884c, \u6839\u636e\u4f60\u4f7f\u7528\u7684\u5305\u7ba1\u7406\u5668, \u8f93\u5165\u76f8\u5e94\u7684\u5b89\u88c5\u547d\u4ee4\n<details open>\n<summary>uv</summary>\n\u4f7f\u7528 uv \u5b89\u88c5\n\n uv add nonebot-plugin-parser\n\u5b89\u88c5\u4ed3\u5e93 dev \u5206\u652f\n\n uv add git+https://github.com/fllesser/nonebot-plugin-parser.git@master\n</details>\n\n\n<details>\n<summary>pip</summary>\n\n pip install --upgrade nonebot-plugin-parser\n</details>\n<details>\n<summary>pdm</summary>\n\n pdm add nonebot-plugin-parser\n</details>\n<details>\n<summary>poetry</summary>\n\n poetry add nonebot-plugin-parser\n</details>\n\n\u6253\u5f00 nonebot2 \u9879\u76ee\u6839\u76ee\u5f55\u4e0b\u7684 `pyproject.toml` \u6587\u4ef6, \u5728 `[tool.nonebot]` \u90e8\u5206\u8ffd\u52a0\u5199\u5165\n\n plugins = [\"nonebot_plugin_parser\"]\n\n</details>\n\n<details open>\n<summary>\u5b89\u88c5\u5fc5\u8981\u7ec4\u4ef6</summary>\n\u5927\u90e8\u5206\u89e3\u6790\u90fd\u4f9d\u8d56\u4e8e ffmpeg\n\nubuntu/debian\n\n sudo apt-get install ffmpeg\n\n\u5176\u4ed6 linux \u53c2\u8003(\u539f\u9879\u76ee\u63a8\u8350): https://gitee.com/baihu433/ffmpeg\n\nWindows \u53c2\u8003(\u539f\u9879\u76ee\u63a8\u8350): https://www.jianshu.com/p/5015a477de3c\n</details>\n\n## \u2699\ufe0f \u914d\u7f6e\n\n\u5728 nonebot2 \u9879\u76ee\u7684`.env`\u6587\u4ef6\u4e2d\u6dfb\u52a0\u4e0b\u8868\u4e2d\u7684\u5fc5\u586b\u914d\u7f6e\n\n| \u914d\u7f6e\u9879 | \u5fc5\u586b | \u9ed8\u8ba4\u503c | \u8bf4\u660e |\n| :-----------------------: | :---: | :----------------------: | :-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------: |\n| NICKNAME | \u5426 | [\"\"] | nonebot2 \u5185\u7f6e\u914d\u7f6e\uff0c\u53ef\u4f5c\u4e3a\u89e3\u6790\u7ed3\u679c\u6d88\u606f\u7684\u524d\u7f00 |\n| API_TIMEOUT | \u5426 | 30.0 | nonebot2 \u5185\u7f6e\u914d\u7f6e\uff0c\u82e5\u670d\u52a1\u5668\u4e0a\u4f20\u5e26\u5bbd\u592a\u4f4e\uff0c\u5efa\u8bae\u8c03\u9ad8\uff0c\u9632\u6b62\u8d85\u65f6 |\n| parser_bili_ck | \u5426 | \"\" | B \u7ad9 cookie, \u5fc5\u987b\u542b\u6709 SESSDATA \u9879\uff0c\u53ef\u9644\u52a0 B \u7ad9 AI \u603b\u7ed3\u529f\u80fd, \u5982\u679c\u9700\u8981\u957f\u671f\u4f7f\u7528\u6b64\u51ed\u636e\u5219\u4e0d\u5e94\u8be5\u5728**\u6d4f\u89c8\u5668\u767b\u5f55\u8d26\u6237**\u5bfc\u81f4 cookie \u88ab\u5237\u65b0\uff0c\u5efa\u8bae\u6ce8\u518c\u4e2a\u5c0f\u53f7\u83b7\u53d6, \u4e5f\u53ef\u4ee5\u914d\u7f6e ac_time_value \u9879\uff0c\u7528\u4e8e\u51ed\u636e\u7684\u81ea\u52a8\u5237\u65b0\uff0c[\u83b7\u53d6\u65b9\u5f0f](https://github.com/fllesser/nonebot-plugin-parser/issues/177) |\n| parser_bili_video_codes | \u5426 | '[\"avc\", \"av01\", \"hev\"]' | \u5141\u8bb8\u7684 B \u7ad9\u89c6\u9891\u7f16\u7801\uff0c\u8d8a\u9760\u524d\u7684\u7f16\u7801\u4f18\u5148\u7ea7\u8d8a\u9ad8\uff0c\u53ef\u9009 \"avc\"(H.264\uff0c\u4f53\u79ef\u8f83\u5927), \"hev\"(HEVC), \"av01\"(AV1), \u540e\u4e24\u9879\u5728\u4e0d\u540c\u8bbe\u5907\u53ef\u80fd\u6709\u517c\u5bb9\u6027\u95ee\u9898\uff0c\u5982\u9700\u5b8c\u5168\u907f\u514d\uff0c\u53ef\u53ea\u586b\u4e00\u9879\uff0c\u5982 '[\"avc\"]' |\n| parser_ytb_ck | \u5426 | \"\" | Youtube cookie, Youtube \u89c6\u9891\u56e0\u4eba\u673a\u68c0\u6d4b\u4e0b\u8f7d\u5931\u8d25\uff0c\u9700\u586b |\n| parser_proxy | \u5426 | None | \u4ec5\u4f5c\u7528\u4e8e youtube, tiktok \u89e3\u6790\uff0c\u63a8\u7279\u89e3\u6790\u4f1a\u81ea\u52a8\u8bfb\u53d6\u73af\u5883\u53d8\u91cf\u4e2d\u7684 http_proxy / https_proxy(\u4ee3\u7406\u8f6f\u4ef6\u901a\u5e38\u4f1a\u81ea\u52a8\u8bbe\u7f6e) |\n| parser_need_upload | \u5426 | False | \u97f3\u9891\u89e3\u6790\uff0c\u662f\u5426\u9700\u8981\u4e0a\u4f20\u7fa4\u6587\u4ef6 |\n| parser_use_base64 | \u5426 | False | \u89c6\u9891\uff0c\u56fe\u7247\uff0c\u97f3\u9891\u662f\u5426\u4f7f\u7528 base64 \u53d1\u9001\uff0c\u6ce8\u610f\uff1a\u7f16\u89e3\u7801\u548c\u4f20\u8f93 base64 \u4f1a\u5360\u7528\u66f4\u591a\u7684\u5185\u5b58,\u6027\u80fd\u548c\u5e26\u5bbd, \u751a\u81f3\u53ef\u80fd\u4f1a\u4f7f websocket \u8fde\u63a5\u5d29\u6e83\uff0c\u56e0\u6b64\u8be5\u914d\u7f6e\u9879\u4ec5\u63a8\u8350 nonebot \u548c \u534f\u8bae\u7aef\u4e0d\u5728\u540c\u4e00\u673a\u5668\u7684\u7528\u6237\u914d\u7f6e |\n| parser_duration_maximum | \u5426 | 480 | \u89c6\u9891\u6700\u5927\u89e3\u6790\u65f6\u957f\uff0c\u5355\u4f4d\uff1a_\u79d2_ |\n| parser_max_size | \u5426 | 90 | \u97f3\u89c6\u9891\u4e0b\u8f7d\u6700\u5927\u6587\u4ef6\u5927\u5c0f\uff0c\u5355\u4f4d MB\uff0c\u8d85\u8fc7\u8be5\u914d\u7f6e\u5c06\u963b\u65ad\u4e0b\u8f7d |\n| parser_disabled_platforms | \u5426 | [] | \u5168\u5c40\u7981\u6b62\u7684\u89e3\u6790\uff0c\u793a\u4f8b parser_disabled_platforms=[\"bilibili\", \"douyin\"] \u8868\u793a\u7981\u6b62\u4e86\u54d4\u54e9\u54d4\u54e9\u548c\u6296, \u8bf7\u6839\u636e\u81ea\u5df1\u9700\u6c42\u586b\u5199[\"bilibili\", \"douyin\", \"kuaishou\", \"twitter\", \"youtube\", \"acfun\", \"tiktok\", \"weibo\", \"xiaohongshu\"] |\n| parser_render_type | \u5426 | \"common\" | \u6e32\u67d3\u5668\u7c7b\u578b\uff0c\u53ef\u9009 \"default\"(\u65e0\u56fe\u7247\u6e32\u67d3), \"common\"(PIL \u901a\u7528\u56fe\u7247\u6e32\u67d3), \"htmlkit\"(htmlkit) |\n| parser_append_url | \u5426 | False | \u662f\u5426\u5728\u89e3\u6790\u7ed3\u679c\u4e2d\u9644\u52a0\u539f\u59cbURL |\n| parser_custom_font | \u5426 | None | \u81ea\u5b9a\u4e49\u5b57\u4f53\uff0c\u5982\u672a\u6307\u5b9a\u5219\u4f7f\u7528\u5185\u7f6e\u5b57\u4f53\uff0c\u9700\u5c06\u5b57\u4f53\u6587\u4ef6\u653e\u7f6e\u4e8elocalstore \u751f\u6210\u7684\u63d2\u4ef6 data \u76ee\u5f55\u4e0b\uff0cparser_custom_font \u4e3a\u5b57\u4f53\u6587\u4ef6\u540d |\n\n## \ud83c\udf89 \u4f7f\u7528\n### \u6307\u4ee4\u8868\n| \u6307\u4ee4 | \u6743\u9650 | \u9700\u8981@ | \u8303\u56f4 | \u8bf4\u660e |\n| :------: | :-------------------: | :---: | :---: | :------: |\n| \u5f00\u542f\u89e3\u6790 | SUPERUSER/OWNER/ADMIN | \u662f | \u7fa4\u804a | \u5f00\u542f\u89e3\u6790 |\n| \u5173\u95ed\u89e3\u6790 | SUPERUSER/OWNER/ADMIN | \u662f | \u7fa4\u804a | \u5173\u95ed\u89e3\u6790 |\n\n## \u81f4\u8c22\n[nonebot-plugin-resolver](https://github.com/zhiyu1998/nonebot-plugin-resolver)\n[parse-video-py](https://github.com/wujunwei928/parse-video-py)",
"bugtrack_url": null,
"license": null,
"summary": "NoneBot2 \u94fe\u63a5\u5206\u4eab\u89e3\u6790\u5668\u81ea\u52a8\u89e3\u6790, BV\u53f7/\u94fe\u63a5/\u5c0f\u7a0b\u5e8f/\u5361\u7247 | B\u7ad9/\u6296\u97f3/\u5feb\u624b/\u5fae\u535a/\u5c0f\u7ea2\u4e66/youtube/tiktok/twitter/acfun",
"version": "2.0.5",
"project_urls": {
"IssueTracker": "https://github.com/fllesser/nonebot-plugin-parser/issues",
"Release": "https://github.com/fllesser/nonebot-plugin-parser/releases",
"Repository": "https://github.com/fllesser/nonebot-plugin-parser"
},
"split_keywords": [
"nonebot",
" nonebot2",
" video",
" bilibili",
" youtube",
" tiktok",
" twitter",
" kuaishou",
" acfun",
" weibo",
" xiaohongshu",
" nga",
" douyin"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "e6aba0497289cab4b230a45ee0cd33f5cebcba222718e94d10f0970f6f569d9b",
"md5": "04cba983f350741448f751647f9a1af4",
"sha256": "85cbabc36af490b366e86e8346ed2cf1948aa535b38f5a40dde3e7973fedd489"
},
"downloads": -1,
"filename": "nonebot_plugin_parser-2.0.5-py3-none-any.whl",
"has_sig": false,
"md5_digest": "04cba983f350741448f751647f9a1af4",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 2314232,
"upload_time": "2025-10-07T16:47:28",
"upload_time_iso_8601": "2025-10-07T16:47:28.236656Z",
"url": "https://files.pythonhosted.org/packages/e6/ab/a0497289cab4b230a45ee0cd33f5cebcba222718e94d10f0970f6f569d9b/nonebot_plugin_parser-2.0.5-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "96153e215a0b7eadf26af7e45909041a7b9af148aaa6411cd86caa34ecc127bc",
"md5": "ff210d4481000422c35d5f0653b36cb5",
"sha256": "948d0b00d7e601b8a78ca917d2b5a36949be942b1320f1530e7aaec7f30c1f35"
},
"downloads": -1,
"filename": "nonebot_plugin_parser-2.0.5.tar.gz",
"has_sig": false,
"md5_digest": "ff210d4481000422c35d5f0653b36cb5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 2295525,
"upload_time": "2025-10-07T16:47:30",
"upload_time_iso_8601": "2025-10-07T16:47:30.223134Z",
"url": "https://files.pythonhosted.org/packages/96/15/3e215a0b7eadf26af7e45909041a7b9af148aaa6411cd86caa34ecc127bc/nonebot_plugin_parser-2.0.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-10-07 16:47:30",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "fllesser",
"github_project": "nonebot-plugin-parser",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "nonebot-plugin-parser"
}