<!-- markdownlint-disable MD028 MD031 MD033 MD036 MD041 -->
<div align="center">
<a href="https://v2.nonebot.dev/store">
<img src="https://raw.githubusercontent.com/A-kirami/nonebot-plugin-template/resources/nbp_logo.png" width="180" height="180" alt="NoneBotPluginLogo">
</a>
<p>
<img src="https://raw.githubusercontent.com/lgc-NB2Dev/readme/main/template/plugin.svg" alt="NoneBotPluginText">
</p>
# Nonebot-Plugin-NaiLongMagic
_✨ 一个基于 AI 模型的简单插件~ ✨_
<img src="https://img.shields.io/badge/python-3.9+-blue.svg" alt="python">
<a href="https://pdm.fming.dev">
<img src="https://img.shields.io/badge/pdm-managed-blueviolet" alt="pdm-managed">
</a>
<br />
<a href="https://pydantic.dev">
<img src="https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/lgc-NB2Dev/readme/main/template/pyd-v1-or-v2.json" alt="Pydantic Version 1 Or 2" >
</a>
<a href="./LICENSE">
<img src="https://img.shields.io/github/license/Refound-445/nonebot-plugin-nailongremove.svg" alt="license">
</a>
<a href="https://pypi.python.org/pypi/nonebot-plugin-nailongremove">
<img src="https://img.shields.io/pypi/v/nonebot-plugin-nailongremove.svg" alt="pypi">
</a>
<a href="https://pypi.python.org/pypi/nonebot-plugin-nailongremove">
<img src="https://img.shields.io/pypi/dm/nonebot-plugin-nailongremove" alt="pypi download">
</a>
<br />
<a href="https://registry.nonebot.dev/plugin/nonebot-plugin-nailongremove:nonebot_plugin_nailongremove">
<img src="https://img.shields.io/endpoint?url=https%3A%2F%2Fnbbdg.lgc2333.top%2Fplugin%2Fnonebot-plugin-nailongremove" alt="NoneBot Registry">
</a>
<a href="https://registry.nonebot.dev/plugin/nonebot-plugin-nailongremove:nonebot_plugin_nailongremove">
<img src="https://img.shields.io/endpoint?url=https%3A%2F%2Fnbbdg.lgc2333.top%2Fplugin-adapters%2Fnonebot-plugin-nailongremove" alt="Supported Adapters">
</a>
</div>
## 📖 介绍
### 声明
本插件仅供娱乐和学习交流。目前1.x版本仍处于内测阶段,生成图片可能并不理想,如有BUG等问题随时欢迎[进群](#-联系)反馈。
### 简介
世界就是一个巨大的奶龙~
### 技术
基于StableDiffusion模型,通过Lora微调训练而来
### 安装
以下提到的方法 任选**其一** 即可
<details open>
<summary>[推荐] 使用 nb-cli 安装</summary>
在 nonebot2 项目的根目录下打开命令行, 输入以下指令即可安装
```bash
nb plugin install nonebot-plugin-nailongmagic
```
</details>
<details>
<summary>使用包管理器安装</summary>
在 nonebot2 项目的插件目录下, 打开命令行, 根据你使用的包管理器, 输入相应的安装命令
<details>
<summary>pip</summary>
```bash
pip install nonebot-plugin-nailongmagic
```
</details>
<details>
<summary>pdm</summary>
```bash
pdm add nonebot-plugin-nailongmagic
```
</details>
<details>
<summary>poetry</summary>
```bash
poetry add nonebot-plugin-nailongmagic
```
</details>
<details>
<summary>conda</summary>
```bash
conda install nonebot-plugin-nailongmagic
```
</details>
打开 nonebot2 项目根目录下的 `pyproject.toml` 文件, 在 `[tool.nonebot]` 部分的 `plugins` 项里追加写入
```toml
[tool.nonebot]
plugins = [
# ...
"nonebot_plugin_nailongmagic"
]
```
</details>
## ⚙️ 配置
在 nonebot2 项目的 `.env` 文件中添加下表中的必填配置
| 配置项 | 必填 | 默认值 | 说明 |
|:--------------------------------:|:--:|:-----------------------------:|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------:|
| **全局配置** | | | |
| `PROXY` | 否 | `None` | 下载模型等文件时使用的代理地址 |
| **响应配置** | | | |
| `NAILONGMAGIC_NEED_SUPERUSER` | 否 | `True` | 是否只处理超级用户发送的图片 |
| `NAILONGMAGIC_LIST_SCENES` | 否 | `[]` | 聊天场景 ID 黑白名单列表<br />在单级聊天下为该聊天 ID,如 QQ 群号;<br />在多级聊天下为以 `_` 分割的各级聊天 ID,如频道下的子频道或频道下私聊 |
| `NAILONGMAGIC_BLACKLIST` | 否 | `True` | 是否使用黑名单模式 |
| `NAILONGMAGIC_USER_BLACKLIST` | 否 | `[]` | 用户 ID 黑名单列表 |
| `NAILONGMAGIC_PRIORITY` | 否 | `100` | Matcher 优先级 |
| **模型配置** | | | |
| `NAILONGMAGIC_TIP` | 否 | `["奶龙已生成~{$checked_result}"]` | 发送的提示,使用 [Alconna 的消息模板](https://nonebot.dev/docs/best-practice/alconna/uniseg#%E4%BD%BF%E7%94%A8%E6%B6%88%E6%81%AF%E6%A8%A1%E6%9D%BF),可用变量见下,随机发送列表其中一条消息 |
| `NAILONGMAGIC_PROMPT` | 否 | `["nailong"]` | 模型生成图片所使用的关键词 |
| `NAILONGMAGIC_CACHE_DIR` | 否 | `./data/nailongmagic` | 模型的下载位置 |
| `NAILONGMAGIC_AUTO_UPDATE_MODEL` | 否 | `True` | 是否自动更新模型 |
| `NAILONGMAGIC_HF_TOKEN` | 否 | `None` | GitHub Access Token,遇到模型下载或更新问题时可尝试填写 |
### 消息模板可用变量
| 变量名 | 类型 | 说明 |
| ----------------- | ---------------------------------------------------------------------------------------------------------------------------- |---------|
| `$event` | [`Event`](https://nonebot.dev/docs/api/adapters/#Event) | 当前事件 |
| `$target` | [`Target`](https://nonebot.dev/docs/best-practice/alconna/uniseg#%E6%B6%88%E6%81%AF%E5%8F%91%E9%80%81%E5%AF%B9%E8%B1%A1) | 事件目标 |
| `$message_id` | `str` | 消息 ID |
| `$msg` | [`UniMessage`](https://nonebot.dev/docs/best-practice/alconna/uniseg#%E9%80%9A%E7%94%A8%E6%B6%88%E6%81%AF%E5%BA%8F%E5%88%97) | 当前消息 |
| `$ss` | [`Session`](https://github.com/RF-Tar-Railt/nonebot-plugin-uninfo?tab=readme-ov-file#session) | 当前会话 |
| `$checked_result` | [`Image`](https://nonebot.dev/docs/best-practice/alconna/uniseg#%E9%80%9A%E7%94%A8%E6%B6%88%E6%81%AF%E6%AE%B5) | 模型生成的图片 |
## 🎉 使用
发送“变奶龙+[咒语(可选,即prompt)]+图片”,等待时间后,即可收到bot返回消息,例如:`变奶龙nailong[图片]`,或者`变奶龙[图片]`
## 📞 联系
- [机器人插件学习交流群](https://qm.qq.com/q/o6x7IEZyO4):200980266(安装部署,机器人 BUG 模型精度等问题反馈来这里哟)
- [人工智能学习交流群](https://qm.qq.com/q/xdRGrt3y3C):949992679(学习交流 AI 相关技术可以来这里捏)
欢迎大家进群一起学习交流~
## 📝 更新日志
### 1.0.0
- 创建了插件
Raw data
{
"_id": null,
"home_page": null,
"name": "nonebot-plugin-nailongmagic",
"maintainer": null,
"docs_url": null,
"requires_python": "<4.0,>=3.9",
"maintainer_email": null,
"keywords": "nonebot, plugin, image",
"author": null,
"author_email": "445 <2877834692@qq.com>",
"download_url": "https://files.pythonhosted.org/packages/76/76/113a0c5d70ffe7badd2eec4704e73667bff6c07c8e6179c27ff3862710bd/nonebot_plugin_nailongmagic-1.0.5.tar.gz",
"platform": null,
"description": "<!-- markdownlint-disable MD028 MD031 MD033 MD036 MD041 -->\n\n<div align=\"center\">\n\n<a href=\"https://v2.nonebot.dev/store\">\n <img src=\"https://raw.githubusercontent.com/A-kirami/nonebot-plugin-template/resources/nbp_logo.png\" width=\"180\" height=\"180\" alt=\"NoneBotPluginLogo\">\n</a>\n\n<p>\n <img src=\"https://raw.githubusercontent.com/lgc-NB2Dev/readme/main/template/plugin.svg\" alt=\"NoneBotPluginText\">\n</p>\n\n# Nonebot-Plugin-NaiLongMagic\n\n_\u2728 \u4e00\u4e2a\u57fa\u4e8e AI \u6a21\u578b\u7684\u7b80\u5355\u63d2\u4ef6~ \u2728_\n\n<img src=\"https://img.shields.io/badge/python-3.9+-blue.svg\" alt=\"python\">\n<a href=\"https://pdm.fming.dev\">\n <img src=\"https://img.shields.io/badge/pdm-managed-blueviolet\" alt=\"pdm-managed\">\n</a>\n\n<br />\n\n<a href=\"https://pydantic.dev\">\n <img src=\"https://img.shields.io/endpoint?url=https://raw.githubusercontent.com/lgc-NB2Dev/readme/main/template/pyd-v1-or-v2.json\" alt=\"Pydantic Version 1 Or 2\" >\n</a>\n<a href=\"./LICENSE\">\n <img src=\"https://img.shields.io/github/license/Refound-445/nonebot-plugin-nailongremove.svg\" alt=\"license\">\n</a>\n<a href=\"https://pypi.python.org/pypi/nonebot-plugin-nailongremove\">\n <img src=\"https://img.shields.io/pypi/v/nonebot-plugin-nailongremove.svg\" alt=\"pypi\">\n</a>\n<a href=\"https://pypi.python.org/pypi/nonebot-plugin-nailongremove\">\n <img src=\"https://img.shields.io/pypi/dm/nonebot-plugin-nailongremove\" alt=\"pypi download\">\n</a>\n\n<br />\n\n<a href=\"https://registry.nonebot.dev/plugin/nonebot-plugin-nailongremove:nonebot_plugin_nailongremove\">\n <img src=\"https://img.shields.io/endpoint?url=https%3A%2F%2Fnbbdg.lgc2333.top%2Fplugin%2Fnonebot-plugin-nailongremove\" alt=\"NoneBot Registry\">\n</a>\n<a href=\"https://registry.nonebot.dev/plugin/nonebot-plugin-nailongremove:nonebot_plugin_nailongremove\">\n <img src=\"https://img.shields.io/endpoint?url=https%3A%2F%2Fnbbdg.lgc2333.top%2Fplugin-adapters%2Fnonebot-plugin-nailongremove\" alt=\"Supported Adapters\">\n</a>\n\n</div>\n\n## \ud83d\udcd6 \u4ecb\u7ecd\n\n### \u58f0\u660e\n\n\u672c\u63d2\u4ef6\u4ec5\u4f9b\u5a31\u4e50\u548c\u5b66\u4e60\u4ea4\u6d41\u3002\u76ee\u524d1.x\u7248\u672c\u4ecd\u5904\u4e8e\u5185\u6d4b\u9636\u6bb5\uff0c\u751f\u6210\u56fe\u7247\u53ef\u80fd\u5e76\u4e0d\u7406\u60f3\uff0c\u5982\u6709BUG\u7b49\u95ee\u9898\u968f\u65f6\u6b22\u8fce[\u8fdb\u7fa4](#-\u8054\u7cfb)\u53cd\u9988\u3002\n\n### \u7b80\u4ecb\n\n\u4e16\u754c\u5c31\u662f\u4e00\u4e2a\u5de8\u5927\u7684\u5976\u9f99~\n\n### \u6280\u672f\n \n\u57fa\u4e8eStableDiffusion\u6a21\u578b\uff0c\u901a\u8fc7Lora\u5fae\u8c03\u8bad\u7ec3\u800c\u6765\n\n### \u5b89\u88c5\n\n\u4ee5\u4e0b\u63d0\u5230\u7684\u65b9\u6cd5 \u4efb\u9009**\u5176\u4e00** \u5373\u53ef\n\n<details open>\n<summary>[\u63a8\u8350] \u4f7f\u7528 nb-cli \u5b89\u88c5</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```bash\nnb plugin install nonebot-plugin-nailongmagic\n```\n\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\n<details>\n<summary>pip</summary>\n\n```bash\npip install nonebot-plugin-nailongmagic\n```\n\n</details>\n<details>\n<summary>pdm</summary>\n\n```bash\npdm add nonebot-plugin-nailongmagic\n```\n\n</details>\n<details>\n<summary>poetry</summary>\n\n```bash\npoetry add nonebot-plugin-nailongmagic\n```\n\n</details>\n<details>\n<summary>conda</summary>\n\n```bash\nconda install nonebot-plugin-nailongmagic\n```\n\n</details>\n\n\u6253\u5f00 nonebot2 \u9879\u76ee\u6839\u76ee\u5f55\u4e0b\u7684 `pyproject.toml` \u6587\u4ef6, \u5728 `[tool.nonebot]` \u90e8\u5206\u7684 `plugins` \u9879\u91cc\u8ffd\u52a0\u5199\u5165\n\n```toml\n[tool.nonebot]\nplugins = [\n # ...\n \"nonebot_plugin_nailongmagic\"\n]\n```\n\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| **\u5168\u5c40\u914d\u7f6e** | | | |\n| `PROXY` | \u5426 | `None` | \u4e0b\u8f7d\u6a21\u578b\u7b49\u6587\u4ef6\u65f6\u4f7f\u7528\u7684\u4ee3\u7406\u5730\u5740 |\n| **\u54cd\u5e94\u914d\u7f6e** | | | |\n| `NAILONGMAGIC_NEED_SUPERUSER` | \u5426 | `True` | \u662f\u5426\u53ea\u5904\u7406\u8d85\u7ea7\u7528\u6237\u53d1\u9001\u7684\u56fe\u7247 |\n| `NAILONGMAGIC_LIST_SCENES` | \u5426 | `[]` | \u804a\u5929\u573a\u666f ID \u9ed1\u767d\u540d\u5355\u5217\u8868<br />\u5728\u5355\u7ea7\u804a\u5929\u4e0b\u4e3a\u8be5\u804a\u5929 ID\uff0c\u5982 QQ \u7fa4\u53f7\uff1b<br />\u5728\u591a\u7ea7\u804a\u5929\u4e0b\u4e3a\u4ee5 `_` \u5206\u5272\u7684\u5404\u7ea7\u804a\u5929 ID\uff0c\u5982\u9891\u9053\u4e0b\u7684\u5b50\u9891\u9053\u6216\u9891\u9053\u4e0b\u79c1\u804a |\n| `NAILONGMAGIC_BLACKLIST` | \u5426 | `True` | \u662f\u5426\u4f7f\u7528\u9ed1\u540d\u5355\u6a21\u5f0f |\n| `NAILONGMAGIC_USER_BLACKLIST` | \u5426 | `[]` | \u7528\u6237 ID \u9ed1\u540d\u5355\u5217\u8868 |\n| `NAILONGMAGIC_PRIORITY` | \u5426 | `100` | Matcher \u4f18\u5148\u7ea7 |\n| **\u6a21\u578b\u914d\u7f6e** | | | |\n| `NAILONGMAGIC_TIP` | \u5426 | `[\"\u5976\u9f99\u5df2\u751f\u6210~{$checked_result}\"]` | \u53d1\u9001\u7684\u63d0\u793a\uff0c\u4f7f\u7528 [Alconna \u7684\u6d88\u606f\u6a21\u677f](https://nonebot.dev/docs/best-practice/alconna/uniseg#%E4%BD%BF%E7%94%A8%E6%B6%88%E6%81%AF%E6%A8%A1%E6%9D%BF)\uff0c\u53ef\u7528\u53d8\u91cf\u89c1\u4e0b\uff0c\u968f\u673a\u53d1\u9001\u5217\u8868\u5176\u4e2d\u4e00\u6761\u6d88\u606f |\n| `NAILONGMAGIC_PROMPT` | \u5426 | `[\"nailong\"]` | \u6a21\u578b\u751f\u6210\u56fe\u7247\u6240\u4f7f\u7528\u7684\u5173\u952e\u8bcd |\n| `NAILONGMAGIC_CACHE_DIR` | \u5426 | `./data/nailongmagic` | \u6a21\u578b\u7684\u4e0b\u8f7d\u4f4d\u7f6e |\n| `NAILONGMAGIC_AUTO_UPDATE_MODEL` | \u5426 | `True` | \u662f\u5426\u81ea\u52a8\u66f4\u65b0\u6a21\u578b |\n| `NAILONGMAGIC_HF_TOKEN` | \u5426 | `None` | GitHub Access Token\uff0c\u9047\u5230\u6a21\u578b\u4e0b\u8f7d\u6216\u66f4\u65b0\u95ee\u9898\u65f6\u53ef\u5c1d\u8bd5\u586b\u5199 |\n\n### \u6d88\u606f\u6a21\u677f\u53ef\u7528\u53d8\u91cf\n\n| \u53d8\u91cf\u540d | \u7c7b\u578b | \u8bf4\u660e |\n| ----------------- | ---------------------------------------------------------------------------------------------------------------------------- |---------|\n| `$event` | [`Event`](https://nonebot.dev/docs/api/adapters/#Event) | \u5f53\u524d\u4e8b\u4ef6 |\n| `$target` | [`Target`](https://nonebot.dev/docs/best-practice/alconna/uniseg#%E6%B6%88%E6%81%AF%E5%8F%91%E9%80%81%E5%AF%B9%E8%B1%A1) | \u4e8b\u4ef6\u76ee\u6807 |\n| `$message_id` | `str` | \u6d88\u606f ID |\n| `$msg` | [`UniMessage`](https://nonebot.dev/docs/best-practice/alconna/uniseg#%E9%80%9A%E7%94%A8%E6%B6%88%E6%81%AF%E5%BA%8F%E5%88%97) | \u5f53\u524d\u6d88\u606f |\n| `$ss` | [`Session`](https://github.com/RF-Tar-Railt/nonebot-plugin-uninfo?tab=readme-ov-file#session) | \u5f53\u524d\u4f1a\u8bdd |\n| `$checked_result` | [`Image`](https://nonebot.dev/docs/best-practice/alconna/uniseg#%E9%80%9A%E7%94%A8%E6%B6%88%E6%81%AF%E6%AE%B5) | \u6a21\u578b\u751f\u6210\u7684\u56fe\u7247 |\n\n## \ud83c\udf89 \u4f7f\u7528\n\n\u53d1\u9001\u201c\u53d8\u5976\u9f99+[\u5492\u8bed(\u53ef\u9009\uff0c\u5373prompt)]+\u56fe\u7247\u201d\uff0c\u7b49\u5f85\u65f6\u95f4\u540e\uff0c\u5373\u53ef\u6536\u5230bot\u8fd4\u56de\u6d88\u606f\uff0c\u4f8b\u5982\uff1a`\u53d8\u5976\u9f99nailong[\u56fe\u7247]`\uff0c\u6216\u8005`\u53d8\u5976\u9f99[\u56fe\u7247]`\n\n## \ud83d\udcde \u8054\u7cfb\n\n- [\u673a\u5668\u4eba\u63d2\u4ef6\u5b66\u4e60\u4ea4\u6d41\u7fa4](https://qm.qq.com/q/o6x7IEZyO4)\uff1a200980266\uff08\u5b89\u88c5\u90e8\u7f72\uff0c\u673a\u5668\u4eba BUG \u6a21\u578b\u7cbe\u5ea6\u7b49\u95ee\u9898\u53cd\u9988\u6765\u8fd9\u91cc\u54df\uff09\n\n- [\u4eba\u5de5\u667a\u80fd\u5b66\u4e60\u4ea4\u6d41\u7fa4](https://qm.qq.com/q/xdRGrt3y3C)\uff1a949992679\uff08\u5b66\u4e60\u4ea4\u6d41 AI \u76f8\u5173\u6280\u672f\u53ef\u4ee5\u6765\u8fd9\u91cc\u634f\uff09\n\n\u6b22\u8fce\u5927\u5bb6\u8fdb\u7fa4\u4e00\u8d77\u5b66\u4e60\u4ea4\u6d41~\n\n## \ud83d\udcdd \u66f4\u65b0\u65e5\u5fd7\n\n### 1.0.0\n\n- \u521b\u5efa\u4e86\u63d2\u4ef6\n",
"bugtrack_url": null,
"license": "MIT",
"summary": "\u901a\u8fc7\u6307\u4ee4\u5c06\u76ee\u6807\u56fe\u7247\u53d8\u6210\u5976\u9f99",
"version": "1.0.5",
"project_urls": {
"homepage": "https://github.com/Refound-445/nonebot-plugin-nailongmagic",
"repository": "https://github.com/Refound-445/nonebot-plugin-nailongmagic"
},
"split_keywords": [
"nonebot",
" plugin",
" image"
],
"urls": [
{
"comment_text": "",
"digests": {
"blake2b_256": "585986ef5c90324118be937596312f3e16bbcf068aae5dc558ef4873b0d5ec1a",
"md5": "49ed703f326bad5b6f13d650f256ca35",
"sha256": "2c8b50d9df8a3ee4107c07ce0d3b6017b7b569ea4e5440af71f19e6404467b47"
},
"downloads": -1,
"filename": "nonebot_plugin_nailongmagic-1.0.5-py3-none-any.whl",
"has_sig": false,
"md5_digest": "49ed703f326bad5b6f13d650f256ca35",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": "<4.0,>=3.9",
"size": 9960,
"upload_time": "2024-12-18T06:55:52",
"upload_time_iso_8601": "2024-12-18T06:55:52.093372Z",
"url": "https://files.pythonhosted.org/packages/58/59/86ef5c90324118be937596312f3e16bbcf068aae5dc558ef4873b0d5ec1a/nonebot_plugin_nailongmagic-1.0.5-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": "",
"digests": {
"blake2b_256": "7676113a0c5d70ffe7badd2eec4704e73667bff6c07c8e6179c27ff3862710bd",
"md5": "1b5b59eafd3cfa4f6fae534157adc4e6",
"sha256": "f4e7ca2588c69a9c32ef1a5cdf4f90180c20fdb35b29ce0771f4f7f57db4e1be"
},
"downloads": -1,
"filename": "nonebot_plugin_nailongmagic-1.0.5.tar.gz",
"has_sig": false,
"md5_digest": "1b5b59eafd3cfa4f6fae534157adc4e6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": "<4.0,>=3.9",
"size": 10134,
"upload_time": "2024-12-18T06:55:54",
"upload_time_iso_8601": "2024-12-18T06:55:54.493155Z",
"url": "https://files.pythonhosted.org/packages/76/76/113a0c5d70ffe7badd2eec4704e73667bff6c07c8e6179c27ff3862710bd/nonebot_plugin_nailongmagic-1.0.5.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2024-12-18 06:55:54",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "Refound-445",
"github_project": "nonebot-plugin-nailongmagic",
"travis_ci": false,
"coveralls": false,
"github_actions": true,
"lcname": "nonebot-plugin-nailongmagic"
}