diff --git a/.env.prod.example b/.env.prod.example new file mode 100644 index 00000000..45b01c62 --- /dev/null +++ b/.env.prod.example @@ -0,0 +1,4 @@ +HOST=127.0.0.1 +PORT=8080 +COMMAND_START=["/"] +COMMAND_SEP=["."] \ No newline at end of file diff --git a/.github/workflows/perform-a-test.yml b/.github/workflows/perform-a-test.yml index 85d6016a..d5216401 100644 --- a/.github/workflows/perform-a-test.yml +++ b/.github/workflows/perform-a-test.yml @@ -2,27 +2,20 @@ name: Perform a test on: schedule: - - cron: "0 */12 * * *" + - cron: "0 6,18 * * *" workflow_dispatch: jobs: main: - name: Python 3.10 + name: Python 3.12 runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.10"] + python-version: ["3.12"] steps: - - name: Initialize - uses: actions/checkout@v2 - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: ${{ matrix.python-version }} - - name: Install poetry + - uses: actions/checkout@v4 + - name: Setup PDM + uses: pdm-project/setup-pdm@v4 + - name: Run run: | - python -m pip install -U pip poetry - - name: Run Python - run: | - cd nonebot2_store_test/ - python . -l 50 + pdm run python run.py -l 100 diff --git a/.gitignore b/.gitignore index 1dc89cf1..14cad803 100644 --- a/.gitignore +++ b/.gitignore @@ -20,7 +20,6 @@ parts/ sdist/ var/ wheels/ -pip-wheel-metadata/ share/python-wheels/ *.egg-info/ .installed.cfg @@ -50,6 +49,7 @@ coverage.xml *.py,cover .hypothesis/ .pytest_cache/ +cover/ # Translations *.mo @@ -72,6 +72,7 @@ instance/ docs/_build/ # PyBuilder +.pybuilder/ target/ # Jupyter Notebook @@ -82,7 +83,9 @@ profile_default/ ipython_config.py # pyenv -.python-version +# For a library or package, you might want to ignore these files since the code is +# intended to run in multiple environments; otherwise, check them in: +# .python-version # pipenv # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. @@ -91,7 +94,22 @@ ipython_config.py # install all needed dependencies. #Pipfile.lock -# PEP 582; used by e.g. github.com/David-OConnor/pyflow +# poetry +# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control. +# This is especially recommended for binary packages to ensure reproducibility, and is more +# commonly ignored for libraries. +# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control +#poetry.lock + +# pdm +# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control. +#pdm.lock +# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it +# in version control. +# https://pdm.fming.dev/#use-with-ide +.pdm.toml + +# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm __pypackages__/ # Celery stuff @@ -104,7 +122,6 @@ celerybeat.pid # Environments .env .venv -.vs env/ venv/ ENV/ @@ -129,5 +146,19 @@ dmypy.json # Pyre type checker .pyre/ -# Repository -nonebot2_store_test/workflow/*/ +# pytype static type analyzer +.pytype/ + +# Cython debug symbols +cython_debug/ + +# PyCharm +# JetBrains specific template is maintained in a separate JetBrains.gitignore that can +# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore +# and can be added to the global gitignore or merged into this file. For a more nuclear +# option (not recommended) you can uncomment the following to ignore the entire idea folder. +#.idea/ + + +tests/ +.pdm-python diff --git a/README.md b/README.md new file mode 100644 index 00000000..76548332 --- /dev/null +++ b/README.md @@ -0,0 +1,9 @@ +# NoneBot 商店插件测试 + +[![pdm-managed](https://img.shields.io/badge/pdm-managed-blueviolet)](https://pdm-project.org) + +定期测试 NoneBot 插件商店内的插件,确认其基础可靠性。 + +基于 [PDM](https://pdm-project.org/) 与 [Git](https://git-scm.com/) 实现。 + +Nonebot 现已使用专门的 [registry](https://github.com/nonebot/registry) 项目,于插件发布提交时,对插件进行友好的自动化测试。本项目作为其原型,将维持严格的测试。 diff --git a/README.rst b/README.rst deleted file mode 100644 index b344827f..00000000 --- a/README.rst +++ /dev/null @@ -1,86 +0,0 @@ -############################################################################## -NoneBot2 商店插件速测工具 -############################################################################## -****************************************************************************** -前言 -****************************************************************************** -* 一次性对 NoneBot2 商店的所有插件进行速测,以确保商店插件的可靠性 - | 基于 `Poetry `_ 与 `Git `_ 并通过虚拟环境实现的速测工具。 - -* 运行于 Python >= 3.9 且需要运行环境下可以通过终端或命令行调用 ``poetry`` 以及 ``git`` 命令。 - | 应使用的 Python 版本当然也取决于你想测试的插件所限定的版本范围。 - -****************************************************************************** -判定方式 -****************************************************************************** -* 现阶段,速测工具根据插件声明的依赖生成各自的虚拟环境,并在其中尝试导入插件本身 - | 对于无法运行在所声明依赖版本范围的插件,将无法通过这个测试。 - -| 对于更复杂的测试场景,速测工具仍在优化中。 - -****************************************************************************** -开始使用 -****************************************************************************** -| 在此之前你需要完成 `Poetry `_ 和 `Git `_ 的安装,并且需要能从命令行正常调用。 - -* 在 Windows 平台,你需要确保使用 ``UTF-8`` 编码来启动脚本,比如通过命令行环境变量 - - ``poetry`` 在非 ``UTF-8`` 编码环境下可能无法编辑 ``poetry.lock``,很重要。 - - 命令行环境变量,仅对当前进程生效。 - -.. code:: cmd - - > set pythonutf8=1 - -* 将 ``nonebot2_store_test`` 作为工作路径,然后启动脚本 - -.. code:: cmd - - > cd nonebot2_store_test - > python . -n - -* 测试过程会将日志同步输出,全部完成时会输出统计 - -****************************************************************************** -可选参数 -****************************************************************************** -* ``-d`` ``--difficulty`` 测试难度 - | 测试难度,目前没什么作用。 -* ``-s`` ``--specific-module`` 特定插件 - | 根据关键字查询并测试匹配的插件,默认为所有插件。 - | 当该参数被提供时,将忽略对插件的 ``up to date`` 判定。 -* ``-l`` ``--limit`` 指定上限 - | 最多测试 n 个有更改的插件,默认为所有插件。 -* ``-n`` ``--no-commit`` 不提交更改 - | 测试结束时不提交更改,默认为提交。 -* ``branch`` 特定提交 - | 手动指定 `nonebot/registry `_ 的提交,默认为自动获取最新提交。 - - | 参数先后顺序同上。 -.. code:: cmd - - > cd nonebot2_store_test - > python . -s _status -l 200 --no-commit fa8d0ed - ---------- ------ ----------- -------- - 关键字查询 限制个数 不提交更改 指定提交 - -****************************************************************************** -常见问题 -****************************************************************************** -* PyPI 与 Git 结果怎么看 - | 速测工具同时对商店插件的 PyPI 来源和 Git 来源进行测试。 - * PyPI 来源的结果,对于使用 `nb-cli `_ 添加插件的用户更有参考意义 - | 它明确了该 PyPI 来源的插件通过 `nb-cli `_ 或任一种方式添加后,理论是否可以直接运行在其所声明依赖版本范围的环境中。 - * Git 来源的结果,对于寻求源码示例的,拥有自主项目的开发者更有参考意义 - | 它明确了该 Git 来源的插件或仓库是否可以直接以 ``submodule`` 或 ``clone`` 的形式被加入到项目,且运行在其所声明依赖版本范围的环境中。 - | 用户可以获悉相关插件 PyPI 来源与 Git 来源的差异,以便更好地了解插件的兼容性和维护状态。 - -* 基于上述判定方式,用户可能仍然会遇到报告中 `Passed` 部分插件在导入时报错的情况 - | 这是由于所安装的其他插件对于 `nonebot2` 或插件自身依赖版本范围的约束不足所致。 - | 用户应向所述其他插件的开发者寻求帮助,商店侧可能对开发者进行插件下架处罚。 - -****************************************************************************** -优化建议 -****************************************************************************** -| 请积极提交 Issues 或 Pull requests diff --git a/nonebot2_store_test/__init.__.py b/nonebot2_store_test/__init.__.py deleted file mode 100644 index e69de29b..00000000 diff --git a/nonebot2_store_test/__main__.py b/nonebot2_store_test/__main__.py deleted file mode 100644 index 849a630b..00000000 --- a/nonebot2_store_test/__main__.py +++ /dev/null @@ -1,521 +0,0 @@ -from asyncio import create_subprocess_shell, run, subprocess -from copy import deepcopy -from dataclasses import dataclass, field -from getopt import getopt -from json import dumps, loads -from os import system -from pathlib import Path -from shutil import rmtree -from sys import argv, platform -from typing import Optional - -from requests import get - -COMMIT = "results" -HOME = Path("workflow") / COMMIT -ENV = HOME.parent / "env" -LOCAL = HOME.parent / "history.json" -RUNNER = """from nonebot import init, load_plugin - -init() -valid = load_plugin("{}") -if not valid: - exit(1) -else: - exit(0) -""" - - -@dataclass -class Report: - branch: str - passed: dict = field(default_factory=dict) - error_while_running: dict = field(default_factory=dict) - error_while_creating: dict = field(default_factory=dict) - - -@dataclass -class Module: - branch: str - module_name: str - project_link: str - display_name: str - homepage: str - - def __post_init__(self): - self.path_pypi = HOME / f"test-{self.module_name}" - self.path_git = HOME / f"test-{self.module_name}-git" - self.pypi_version = None - self._pypi_create = False - self._pypi_run = False - self._pypi_skip = False - self.git_hash = None - self._git_create = False - self._git_run = False - self._git_skip = False - - -class Operator: - def __init__(self, argv: list[str]) -> None: - self.branch = COMMIT - self.difficulty = 0 - self.specific_module = None - self._commit = True - opts, args = getopt( - argv[1:], - "d:s:l:n", - ["difficulty=", "specific-module=", "--limit=", "no-commit"], - ) - if args: - self.branch = args[0] - self.reconstant() - for opt, arg in opts: - if opt in ("-d", "--difficulty"): - self.difficulty = int(arg) - print() - print("Difficulty:", self.difficulty) - elif opt in ("-s", "--specific-module"): - self.specific_module = arg - print() - print(f'Specific module: "{self.specific_module}"') - elif opt in ("-l", "--limit"): - self._limit = int(arg) - print() - print( - f"Limit: Test up to {self._limit}", - "plugin." if self._limit == 1 else "plugins.", - ) - elif opt in ("-n", "--no-commit"): - self._commit = False - print() - print("No commit when finish.") - print() - print("Make sure running with utf-8 encoding.") - - def reconstant(self) -> None: - global COMMIT, HOME, ENV, LOCAL - COMMIT = self.branch - HOME = Path("workflow") / COMMIT - Operator.vacuum() - ENV = HOME.parent / "env" - LOCAL = HOME.parent / "history.json" - - @staticmethod - def vacuum(module: Module = None) -> None: - if module: - rmtree(module.path_pypi, ignore_errors=True) - rmtree(module.path_git, ignore_errors=True) - else: - rmtree(HOME, ignore_errors=True) - - @staticmethod - def load_json_data_from_url(branch: str) -> dict: - headers = { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.116 Safari/537.36" - } - # url = f"https://raw.githubusercontent.com/nonebot/nonebot2/{branch}/website/static/plugins.json" - url = ( - f"https://raw.githubusercontent.com/nonebot/registry/{branch}/plugins.json" - ) - r = get(url, headers=headers) - return loads(r.text) - - @staticmethod - def load_json_data_from_path(path: Path) -> dict: - if path.exists(): - try: - with path.open(encoding="utf-8") as f: - return loads(f.read()) - except ValueError: - return {} - else: - return {} - - @staticmethod - async def get_head_hash(git: str) -> Optional[str]: - proc = await create_subprocess_shell( - f"git ls-remote {git} HEAD", stdout=subprocess.PIPE, stderr=subprocess.PIPE - ) - stdout, stderr = await proc.communicate() - code = proc.returncode - if not code: - _hash = stdout.decode().strip().split()[0] - return _hash[:7] - else: - print(stderr.decode().lstrip()) - return None - - @staticmethod - def get_pypi_latest(pypi: str) -> Optional[str]: - headers = { - "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/117.0.0.0 Safari/537.36 Edg/117.0.2045.47" - } - url = f"https://pypi.org/pypi/{pypi}/json" - r = get(url, headers=headers) - if r.status_code == 200: - data = loads(r.text) - return data["info"]["version"] - else: - return None - - def check_upstream_update(self) -> None: - _latest = Operator.get_pypi_latest("nonebot2") - if _latest != self.local.get("_runtime_latest", None): - if not self.local: - self.local = {"_runtime_latest": _latest} - elif not "_runtime_latest" in self.local: - _li = [[x, y] for x, y in self.local.items()] - _li.insert(0, ["_runtime_latest", _latest]) - self.local = {x: y for x, y in _li} - else: - self.local["_runtime_latest"] = _latest - self.save_local() - self._runtime_latest = _latest - - async def checkout_branch(self) -> None: - _default = ["master", "main"] - if self.branch.startswith(tuple(_default)): - self._master = True - self.branch = await Operator.get_head_hash( - "https://github.com/nonebot/nonebot2.git" - ) - self.reconstant() - self.data = Operator.load_json_data_from_url(self.branch) - self.local = Operator.load_json_data_from_path(LOCAL) - self.check_upstream_update() - self.report = Report(self.branch) - self._max_length = 0 - - async def compare_versions(self, module: Module) -> None: - print() - if not self.local.get(module.project_link): - self.local[module.project_link] = {} - local: dict = self.local.get(module.project_link) - _pypi = Operator.get_pypi_latest(module.project_link) - module.pypi_version = _pypi - _git = await Operator.get_head_hash(module.homepage) - module.git_hash = _git - if ( - local.get("_runtime_latest", None) != self._runtime_latest - or local.get("_rerun_flag", None) - or self.specific_module is not None - ): - return - module._pypi_skip = _pypi == local.get("pypi_version", None) - if module._pypi_skip: - module._pypi_create = local.get("pypi_create", False) - module._pypi_run = local.get("pypi_run", False) - module._git_skip = _git == local.get("git_hash", None) - if module._git_skip: - module._git_create = local.get("git_create", False) - module._git_run = local.get("git_run", False) - if module._pypi_skip and module._git_skip: - print(f"{module.project_link} is up to date.") - - def update_local(self, module: Module) -> None: - local = self.local.get(module.project_link) - _local = deepcopy(local) - if not local: - local.update( - {"_runtime_latest": self._runtime_latest, "first_seen": module.branch} - ) - elif not "_runtime_latest" in local: - _li = [[x, y] for x, y in local.items()] - _li.insert(0, ["_runtime_latest", local.get("_runtime_latest", None)]) - local = {x: y for x, y in _li} - local.update( - { - "_runtime_latest": self._runtime_latest, - "module_name": module.module_name, - "project_link": module.project_link, - "display_name": module.display_name, - "homepage": module.homepage, - "pypi_version": module.pypi_version, - "pypi_create": module._pypi_create, - "pypi_run": module._pypi_run, - "git_hash": module.git_hash, - "git_create": module._git_create, - "git_run": module._git_run, - "last_seen": module.branch, - } - ) - local.pop("_rerun_flag", None) - if hash(str(local)) != hash(str(_local)): - self.local[module.project_link] = local - self.save_local() - - def save_local(self) -> None: - with LOCAL.open("w", encoding="utf-8") as f: - f.write(dumps(self.local, ensure_ascii=False, indent=4)) - - async def commit_changes(self) -> None: - print() - await ( - await create_subprocess_shell( - "git config user.name Lancercmd && git config user.email lancercmd@gmail.com" - ) - ).communicate() - _proc = await create_subprocess_shell( - f'git add {LOCAL.resolve()} && git commit -m "✅ Update {LOCAL.name}"', - stdout=subprocess.PIPE, - ) - _stdout, _ = await _proc.communicate() - if "nothing to commit" in _stdout.decode(): - return - await (await create_subprocess_shell("git push")).communicate() - - async def copy_env_file(self, _path: Path) -> None: - await ( - await create_subprocess_shell( - f"cd {_path.resolve()} && {'copy' if platform == 'win32' else 'cp'} {ENV.resolve()} {str((_path / '.env.prod').resolve())} > NUL" - ) - ).communicate() - - async def create_poetry_project_from_pypi(self, module: Module) -> None: - _path = module.path_pypi - if not _path.exists(): - proc = await create_subprocess_shell( - f"poetry new {_path.resolve()} && cd {_path.resolve()} && poetry add {module.project_link} && poetry run python -m pip install -U pip {module.project_link}", - stdout=subprocess.PIPE, - stderr=subprocess.PIPE, - ) - stdout, stderr = await proc.communicate() - failed = ( - "Error" in stdout.decode() - or "Error" in stderr.decode() - or "fatal" in stdout.decode() - or "fatal" in stderr.decode() - ) - if not failed: - print(f"Created project {module.module_name} from PyPI peacefully.") - module._pypi_create = True - await self.copy_env_file(_path) - else: - print(f"Project {module.module_name} already exists.") - module._pypi_create = True - - async def create_poetry_project_from_git(self, module: Module) -> None: - _path = module.path_git - if not _path.exists(): - _proc = await create_subprocess_shell( - f"poetry new {_path.resolve()} && cd {_path.resolve()} && poetry env use python && poetry env info --path", - stdout=subprocess.PIPE, - ) - _stdout, _ = await _proc.communicate() - _venv = _stdout.decode().strip().splitlines()[-1] - - # Remove existing git virtualenv to create a new one. - if platform == "win32": - system(f'rmdir "{_venv}" /s /q') - else: - system(f"rm -rdf {_venv}") - - proc = await create_subprocess_shell( - f"cd {_path.resolve()} && poetry run python -m pip install git+{module.homepage}", - stdout=subprocess.PIPE, - stderr=subprocess.PIPE, - ) - _, stderr = await proc.communicate() - if not "ERROR" in stderr.decode(): - print(f"Created project {module.module_name} from Git peacefully.") - module._git_create = True - await self.copy_env_file(_path) - else: - print(f"Project {module.module_name} already exists.") - module._git_create = True - - async def create_poetry_project(self, module: Module) -> None: - await self.create_poetry_project_from_pypi( - module - ) if not module._pypi_skip else ... - await self.create_poetry_project_from_git( - module - ) if not module._git_skip else ... - if (not module._pypi_skip and not module._pypi_create) and ( - not module._git_skip and not module._git_create - ): - Operator.vacuum(module) - print(f"Error while creating project: {module.module_name}") - - async def run_poetry_project_from_pypi(self, module: Module) -> None: - _path = module.path_pypi - if _path.exists(): - with open(_path / "runner.py", "w") as f: - f.write(RUNNER.format(module.module_name)) - proc = await create_subprocess_shell( - f"cd {_path.resolve()} && poetry run python runner.py", - stdout=subprocess.PIPE, - stderr=subprocess.PIPE, - ) - stdout, stderr = await proc.communicate() - code = proc.returncode - if not code: - print(f"Run project {module.module_name} from PyPI peacefully.") - else: - print(f"Error while running project {module.module_name} from PyPI:") - _err = stderr.decode().strip() - if len(_err.splitlines()) > 1: - for i in _err.splitlines(): - print(f" {i}") - elif not _err: - print(stdout.decode().strip()) - else: - print(_err) - module._pypi_run = not code - proc = await create_subprocess_shell( - f"cd {_path.resolve()} && poetry env remove python", - stdout=subprocess.PIPE, - stderr=subprocess.PIPE, - ) - stdout, stderr = await proc.communicate() - else: - print(f"Project {module.module_name} does not exist.") - - async def run_poetry_project_from_git(self, module: Module) -> None: - _path = module.path_git - if _path.exists(): - with open(_path / "runner.py", "w") as f: - f.write(RUNNER.format(module.module_name)) - proc = await create_subprocess_shell( - f"cd {_path.resolve()} && poetry run python runner.py", - stdout=subprocess.PIPE, - stderr=subprocess.PIPE, - ) - stdout, stderr = await proc.communicate() - code = proc.returncode - if not code: - print(f"Run project {module.module_name} from Git peacefully.") - else: - print(f"Error while running project {module.module_name} from Git:") - _err = stderr.decode().strip() - if len(_err.splitlines()) > 1: - for i in _err.splitlines(): - print(f" {i}") - elif not _err: - print(stdout.decode().strip()) - else: - print(_err) - module._git_run = not code - proc = await create_subprocess_shell( - f"cd {_path.resolve()} && poetry env remove python", - stdout=subprocess.PIPE, - stderr=subprocess.PIPE, - ) - stdout, stderr = await proc.communicate() - else: - print(f"Project {module.module_name} does not exist.") - - async def run_poetry_project(self, module: Module) -> None: - await self.run_poetry_project_from_pypi( - module - ) if not module._pypi_skip and module._pypi_create else ... - await self.run_poetry_project_from_git( - module - ) if not module._git_skip and module._git_create else ... - - async def dependency_declaration_test(self) -> None: - _passed = self.report.passed - _error_while_running = self.report.error_while_running - _error_while_creating = self.report.error_while_creating - for i in self.data: - module = Module( - self.branch, - i["module_name"], - i["project_link"], - i["name"], - i["homepage"], - ) - if self.specific_module: - if self.specific_module not in module.module_name: - continue - if self._max_length < len(module.module_name): - self._max_length = len(module.module_name) - await self.compare_versions(module) - if not module._pypi_skip & module._git_skip: - if hasattr(self, "_limit"): - if self._limit == 0: - break - self._limit -= 1 - await self.create_poetry_project(module) - if module._pypi_create or module._git_create: - await self.run_poetry_project(module) - if module._pypi_run or module._git_run: - _passed[module.module_name] = { - "display_name": module.display_name, - "pypi": module._pypi_run, - "git": module._git_run, - } - else: - _error_while_running[module.module_name] = { - "display_name": module.display_name, - "pypi": module._pypi_run, - "git": module._git_run, - } - else: - _error_while_creating[module.module_name] = { - "display_name": module.display_name, - "pypi": module._pypi_create, - "git": module._git_create, - } - self.update_local(module) - - async def perform_a_test(self) -> None: - await self.checkout_branch() - await self.dependency_declaration_test() - self.output_report() - await self.commit_changes() if self._commit else ... - - def output_report(self) -> None: - _passed = self.report.passed - _error_while_running = self.report.error_while_running - _error_while_creating = self.report.error_while_creating - print() - print("=" * 80) - print() - if hasattr(self, "_limit"): - if not self._limit: - print("Limit reached.") - print() - print("Runtime latest:", self._runtime_latest) - print() - if _passed: - print("Passed:") - for i in _passed: - _name = _passed[i]["display_name"] - _pypi = "✅" if _passed[i]["pypi"] else "❌" - _git = "✅" if _passed[i]["git"] else "❌" - print( - f" {i}{' ' * (self._max_length - len(i))} PyPI: {_pypi} Git: {_git} {_name}" - ) - print() - if _error_while_running: - print("Error while running:") - for i in _error_while_running: - _name = _error_while_running[i]["display_name"] - _pypi = "✅" if _error_while_running[i]["pypi"] else "❌" - _git = "✅" if _error_while_running[i]["git"] else "❌" - print( - f" {i}{' ' * (self._max_length - len(i))} PyPI: {_pypi} Git: {_git} {_name}" - ) - print() - if _error_while_creating: - print("Error while creating:") - for i in _error_while_creating: - _name = _error_while_creating[i]["display_name"] - _pypi = "✅" if _error_while_creating[i]["pypi"] else "❌" - _git = "✅" if _error_while_creating[i]["git"] else "❌" - print( - f" {i}{' ' * (self._max_length - len(i))} PyPI: {_pypi} Git: {_git} {_name}" - ) - print() - print("=" * 80) - - -if __name__ == "__main__": - try: - op = Operator(argv) - run(op.perform_a_test()) - except KeyboardInterrupt: - print("\nExit by user.") - except Exception as e: - print(f"\nError: {e}") diff --git a/nonebot2_store_test/workflow/env b/nonebot2_store_test/workflow/env deleted file mode 100644 index da040058..00000000 --- a/nonebot2_store_test/workflow/env +++ /dev/null @@ -1,43 +0,0 @@ -# nonebot2 -host = 127.0.0.1 # 配置 NoneBot 监听的 IP/主机名 -port = 8080 # 配置 NoneBot 监听的端口 - -superusers = ["123456789", "987654321"] # 配置 NoneBot 超级用户 -nickname = ["awesome", "bot"] # 配置机器人的昵称 - -command_start = ["/", ""] # 配置命令起始字符 -command_sep = ["."] # 配置命令分割字符 - -# nonebot-plugin-setu2 -setu2_cd = 60 -setu2_enable_groups = [0] -proxies_socks5 = "" - -# nonebot-plugin-pixivrank-search -local_proxy = "" - -# nonebot-plugin-heweather -qweather_apikey = "" -qweather_apitype = "" - -# nonebot-plugin-heisi -heisi_group = [""] -heisi_cd = 30 - -# nonebot-plugin-admin -tenid = "" -tenkeys = "" - -# nonebot-plugin-pixiv -imgroot = "" - -# nonebot-plugin-read-60s -read_qq_friends = [0] -read_qq_groups = [0] -read_inform_time = [{"HOUR": 0, "MINUTE": 0}] - -# hikari-bot -api_token = "" - -# nonebot-plugin-auto-teenstudy -openid_zj = [""] \ No newline at end of file diff --git a/nonebot2_store_test/workflow/history.json b/nonebot2_store_test/workflow/history.json deleted file mode 100644 index 8619ceb3..00000000 --- a/nonebot2_store_test/workflow/history.json +++ /dev/null @@ -1,9288 +0,0 @@ -{ - "_runtime_latest": "2.3.1", - "nonebot-plugin-status": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_status", - "project_link": "nonebot-plugin-status", - "display_name": "服务器状态查看", - "homepage": "https://github.com/nonebot/plugin-status", - "pypi_version": "0.8.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "24ce25e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "haruka-bot": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "haruka_bot", - "project_link": "haruka-bot", - "display_name": "haruka_bot", - "homepage": "https://github.com/SK-415/HarukaBot", - "pypi_version": "1.6.0.post5", - "pypi_create": true, - "pypi_run": true, - "git_hash": "6d45457", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-rauthman": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_rauthman", - "project_link": "nonebot-plugin-rauthman", - "display_name": "RAM - 基于规则的授权管理", - "homepage": "https://github.com/Lancercmd/nonebot_plugin_rauthman", - "pypi_version": "2.0.0rc1.post3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "bec0380", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-docs": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_docs", - "project_link": "nonebot-plugin-docs", - "display_name": "NoneBot 离线文档", - "homepage": "https://github.com/nonebot/nonebot2/blob/master/packages/nonebot-plugin-docs", - "pypi_version": "2.3.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-sentry": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_sentry", - "project_link": "nonebot-plugin-sentry", - "display_name": "Sentry日志监控", - "homepage": "https://github.com/nonebot/plugin-sentry", - "pypi_version": "2.0.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "46d93a2", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-test": { - "_runtime_latest": "2.0.0b2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_test", - "project_link": "nonebot-plugin-test", - "display_name": "前端测试机器人插件", - "homepage": "https://github.com/nonebot/plugin-test", - "pypi_version": "0.3.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1244ba8", - "git_create": true, - "git_run": false, - "last_seen": "e12445b" - }, - "nonebot-plugin-apscheduler": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_apscheduler", - "project_link": "nonebot-plugin-apscheduler", - "display_name": "定时任务", - "homepage": "https://github.com/nonebot/plugin-apscheduler", - "pypi_version": "0.4.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "4fda7c2", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-picsearcher": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_picsearcher", - "project_link": "nonebot-plugin-picsearcher", - "display_name": "图片搜索", - "homepage": "https://github.com/synodriver/nonebot_plugin_picsearcher", - "pypi_version": "0.1.10", - "pypi_create": true, - "pypi_run": false, - "git_hash": "c5836c2", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-navicat": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_navicat", - "project_link": "nonebot-plugin-navicat", - "display_name": "通用数据库连接", - "homepage": "https://github.com/synodriver/nonebot_plugin_navicat", - "pypi_version": "0.3.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "0dfa300", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-translator": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_translator", - "project_link": "nonebot-plugin-translator", - "display_name": "多语种翻译插件", - "homepage": "https://github.com/Lancercmd/nonebot_plugin_translator", - "pypi_version": "2.0.0b4.post2", - "pypi_create": true, - "pypi_run": true, - "git_hash": "4243e2f", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-web": { - "_runtime_latest": "2.0.0b2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_web", - "project_link": "nonebot-plugin-web", - "display_name": "Web监视器", - "homepage": "https://github.com/abrahum/nonebot_plugin_web", - "pypi_version": "0.1.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "90b7adf", - "git_create": true, - "git_run": false, - "last_seen": "e12445b" - }, - "nonebot-plugin-wordbank": { - "_runtime_latest": "2.0.0b2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_wordbank", - "project_link": "nonebot-plugin-wordbank", - "display_name": "nonebot-plugin-wordbank", - "homepage": "https://github.com/Joenothing-lst/word-bank", - "pypi_version": "1.0.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "abb2397", - "git_create": false, - "git_run": false, - "last_seen": "e12445b" - }, - "nonebot-plugin-mqtt": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_mqtt", - "project_link": "nonebot-plugin-mqtt", - "display_name": "MQTT", - "homepage": "https://github.com/synodriver/nonebot_plugin_mqtt", - "pypi_version": "0.1.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "b73e714", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-ipypreter": { - "_runtime_latest": "2.0.0b2", - "first_seen": "1b6b9d6", - "module_name": "nonebot-plugin-ipypreter", - "project_link": "nonebot-plugin-ipypreter", - "display_name": "消息交互式 python 解释器", - "homepage": "https://github.com/iyume/nonebot-plugin-ipypreter", - "pypi_version": "0.1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "decdacc", - "git_create": true, - "git_run": false, - "last_seen": "e12445b" - }, - "nonebot-plugin-songpicker2": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_songpicker2", - "project_link": "nonebot-plugin-songpicker2", - "display_name": "songpicker2", - "homepage": "https://github.com/maxesisn/nonebot_plugin_songpicker2", - "pypi_version": "0.2.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "523bba8", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-styledstr": { - "_runtime_latest": null, - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_styledstr", - "project_link": "nonebot-plugin-styledstr", - "display_name": "风格化字符串管理", - "homepage": "https://github.com/jks15satoshi/nonebot_plugin_styledstr", - "pypi_version": "1.0.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5c02287", - "git_create": true, - "git_run": false, - "last_seen": "6e89787" - }, - "nonebot-plugin-arcaea": { - "_runtime_latest": "2.0.0b2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_arcaea", - "project_link": "nonebot-plugin-arcaea", - "display_name": "Arcaea 查分器", - "homepage": "https://github.com/iyume/nonebot-plugin-arcaea", - "pypi_version": "0.2.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "cd2110b", - "git_create": true, - "git_run": false, - "last_seen": "e12445b" - }, - "nonebot-bison": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_bison", - "project_link": "nonebot-bison", - "display_name": "Bison", - "homepage": "https://github.com/felinae98/nonebot-bison", - "pypi_version": "0.9.2", - "pypi_create": true, - "pypi_run": true, - "git_hash": "9ee2998", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-ncm": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot-plugin-ncm", - "project_link": "nonebot-plugin-ncm", - "display_name": "网易云无损音乐下载", - "homepage": "https://github.com/kitUIN/nonebot-plugin-ncm", - "pypi_version": "1.6.12", - "pypi_create": true, - "pypi_run": false, - "git_hash": "7142f95", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-cocdicer": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_cocdicer", - "project_link": "nonebot-plugin-cocdicer", - "display_name": "nonebot-plugin-cocdicer", - "homepage": "https://github.com/abrahum/nonebot_plugin_cocdicer", - "pypi_version": "0.4.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "348165a", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-trpglogger": { - "_runtime_latest": "2.1.2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_trpglogger", - "project_link": "nonebot-plugin-trpglogger", - "display_name": "跑团记录记录器", - "homepage": "https://github.com/thereisnodice/TRPGLogger", - "pypi_version": "0.4.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e74ff3b", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-r6s": { - "_runtime_latest": "2.0.0", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_r6s", - "project_link": "nonebot-plugin-r6s", - "display_name": "nonebot-plugin-r6s", - "homepage": "https://github.com/abrahum/nonebot_plugin_r6s", - "pypi_version": "0.4.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "49d94bc", - "git_create": true, - "git_run": false, - "last_seen": "8dcfe92" - }, - "nonebot-plugin-guess": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_guess", - "project_link": "nonebot-plugin-guess", - "display_name": "猜猜看", - "homepage": "https://github.com/ffreemt/nonebot-plugin-guess-game", - "pypi_version": "0.1.9", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9b1c84d", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot_plugin_abbrreply": { - "_runtime_latest": "2.0.0b2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_abbrreply", - "project_link": "nonebot_plugin_abbrreply", - "display_name": "缩写查询器", - "homepage": "https://github.com/anlen123/nonebot_plugin_abbrreply", - "pypi_version": "1.1.2", - "pypi_create": true, - "pypi_run": true, - "git_hash": "8196f7c", - "git_create": true, - "git_run": true, - "last_seen": "d7de928" - }, - "nonebot_plugin_biliav": { - "_runtime_latest": "2.0.0b2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_biliav", - "project_link": "nonebot_plugin_biliav", - "display_name": "biliav小程序转换器", - "homepage": "https://github.com/knva/nonebot_plugin_biliav", - "pypi_version": "1.0.6", - "pypi_create": true, - "pypi_run": true, - "git_hash": "74a9d4a", - "git_create": true, - "git_run": true, - "last_seen": "d7de928" - }, - "nonebot-plugin-manager": { - "_runtime_latest": "2.1.2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_manager", - "project_link": "nonebot-plugin-manager", - "display_name": "插件管理器", - "homepage": "https://github.com/nonepkg/nonebot-plugin-manager", - "pypi_version": "0.5.16", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9739119", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-analysis-bilibili": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_analysis_bilibili", - "project_link": "nonebot-plugin-analysis-bilibili", - "display_name": "analysis_bilibili", - "homepage": "https://github.com/mengshouer/nonebot_plugin_analysis_bilibili", - "pypi_version": "2.7.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "195884b", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-localstore": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_localstore", - "project_link": "nonebot-plugin-localstore", - "display_name": "本地数据存储", - "homepage": "https://github.com/nonebot/plugin-localstore", - "pypi_version": "0.6.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "bf9e780", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-puppet": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_puppet", - "project_link": "nonebot-plugin-puppet", - "display_name": "nonebot_plugin_puppet", - "homepage": "https://github.com/nonepkg/nonebot-plugin-puppet", - "pypi_version": "0.2.2", - "pypi_create": true, - "pypi_run": true, - "git_hash": "c86bb37", - "git_create": true, - "git_run": true, - "last_seen": "9a2edbb" - }, - "nonebot-plugin-mcstatus": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_mcstatus", - "project_link": "nonebot-plugin-mcstatus", - "display_name": "Minecraft 服务器状态查询", - "homepage": "https://github.com/nonepkg/nonebot-plugin-mcstatus", - "pypi_version": "0.1.8", - "pypi_create": true, - "pypi_run": false, - "git_hash": "7e63acb", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-help": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_help", - "project_link": "nonebot-plugin-help", - "display_name": "Nonebot2 Help Menu", - "homepage": "https://github.com/xzhouqd/nonebot-plugin-help", - "pypi_version": "0.6.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "0485782", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-gamedraw": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_gamedraw", - "project_link": "nonebot-plugin-gamedraw", - "display_name": "nonebot_plugin_gamedraw", - "homepage": "https://github.com/HibiKier/nonebot_plugin_gamedraw", - "pypi_version": "0.4.3", - "pypi_create": false, - "pypi_run": false, - "git_hash": "76198b4", - "git_create": true, - "git_run": false, - "last_seen": "558f740" - }, - "nonebot-plugin-alias": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_alias", - "project_link": "nonebot-plugin-alias", - "display_name": "alias命令别名", - "homepage": "https://github.com/MeetWq/nonebot-plugin-alias", - "pypi_version": "0.3.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "a388163", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-withdraw": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_withdraw", - "project_link": "nonebot-plugin-withdraw", - "display_name": "Nonebot2 消息撤回插件", - "homepage": "https://github.com/MeetWq/nonebot-plugin-withdraw", - "pypi_version": "0.2.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "6c478e4", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-pixivrank-search": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_pixivrank_search", - "project_link": "nonebot-plugin-pixivrank-search", - "display_name": "nonebot_plugin_pixivrank_search", - "homepage": "https://github.com/HibiKier/nonebot_plugin_pixivrank_search", - "pypi_version": "0.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "294b892", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-russian": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_russian", - "project_link": "nonebot-plugin-russian", - "display_name": "nonebot_plugin_russian", - "homepage": "https://github.com/HibiKier/nonebot_plugin_russian", - "pypi_version": "0.2.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "2032939", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-statistical": { - "_runtime_latest": "2.0.0b2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_statistical", - "project_link": "nonebot-plugin-statistical", - "display_name": "nonebot_plugin_statistical", - "homepage": "https://github.com/HibiKier/nonebot_plugin_statistical", - "pypi_version": "0.4.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "6f37e7a", - "git_create": true, - "git_run": false, - "last_seen": "e12445b" - }, - "nonebot_plugin_setu": { - "_runtime_latest": "2.0.0b2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_setu", - "project_link": "nonebot_plugin_setu", - "display_name": "nonebot_plugin_setu", - "homepage": "https://github.com/ayanamiblhx/nonebot_plugin_setu", - "pypi_version": "0.0.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "2d1150c", - "git_create": false, - "git_run": false, - "last_seen": "d7de928" - }, - "nonebot-plugin-fr24": { - "_runtime_latest": "2.0.0b2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_fr24", - "project_link": "nonebot-plugin-fr24", - "display_name": "FlightRadar24查询模块", - "homepage": "https://github.com/IronWolf-K/nonebot_plugin_fr24", - "pypi_version": "0.2.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f375288", - "git_create": false, - "git_run": false, - "last_seen": "e12445b" - }, - "nonebot-plugin-heweather": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_heweather", - "project_link": "nonebot-plugin-heweather", - "display_name": "和风天气", - "homepage": "https://github.com/kexue-z/nonebot-plugin-heweather", - "pypi_version": "0.8.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "d7f0b95", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-autohelp": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_autohelp", - "project_link": "nonebot-plugin-autohelp", - "display_name": "nonebot-plugin-autohelp", - "homepage": "https://github.com/ffreemt/nonebot-plugin-autohelp", - "pypi_version": "0.1.7", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e5f3345", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-flexperm": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_flexperm", - "project_link": "nonebot-plugin-flexperm", - "display_name": "nonebot-plugin-flexperm", - "homepage": "https://github.com/rmuchan/nonebot-plugin-flexperm", - "pypi_version": "0.7.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "c502e29", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot_plugin_epicfree": { - "_runtime_latest": "2.0.0b2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_epicfree", - "project_link": "nonebot_plugin_epicfree", - "display_name": "Epic 限免游戏资讯", - "homepage": "https://github.com/monsterxcn/nonebot_plugin_epicfree", - "pypi_version": "0.1.7", - "pypi_create": true, - "pypi_run": true, - "git_hash": "68d23a0", - "git_create": true, - "git_run": true, - "last_seen": "d7de928" - }, - "ELF-RSS": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "ELF_RSS2", - "project_link": "ELF-RSS", - "display_name": "ELF_RSS", - "homepage": "https://github.com/Quan666/ELF_RSS", - "pypi_version": "2.6.22", - "pypi_create": true, - "pypi_run": false, - "git_hash": "b6f6b2e", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-atri": { - "_runtime_latest": "2.0.0", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_atri", - "project_link": "nonebot-plugin-atri", - "display_name": "ATRI语音包", - "homepage": "https://github.com/FYWinds/nonebot-plugin-atri", - "pypi_version": "0.0.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "b9cefc5", - "git_create": true, - "git_run": false, - "last_seen": "2af23c9" - }, - "nonebot-plugin-hanayori": { - "_runtime_latest": "2.0.0b2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_hanayori", - "project_link": "nonebot-plugin-hanayori", - "display_name": "HanayoriBot", - "homepage": "https://github.com/kanomahoro/nonebot-hanayori", - "pypi_version": null, - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "78a90ef" - }, - "nonebot-plugin-filehost": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_filehost", - "project_link": "nonebot-plugin-filehost", - "display_name": "文件托管支持", - "homepage": "https://github.com/nonebot/plugin-filehost", - "pypi_version": "1.1.1", - "pypi_create": true, - "pypi_run": true, - "git_hash": "34b2c0a", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-simplemusic": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_simplemusic", - "project_link": "nonebot-plugin-simplemusic", - "display_name": "SimpleMusic", - "homepage": "https://github.com/MeetWq/nonebot-plugin-simplemusic", - "pypi_version": "0.1.7", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f55ac60", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-phlogo": { - "_runtime_latest": "2.0.0", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_phlogo", - "project_link": "nonebot-plugin-phlogo", - "display_name": "pornhub风格图标生成", - "homepage": "https://github.com/kexue-z/nonebot-plugin-phlogo", - "pypi_version": "0.0.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "0bdf1b7", - "git_create": true, - "git_run": false, - "last_seen": "a3009d4" - }, - "nonebot-plugin-twitter": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_twitter", - "project_link": "nonebot-plugin-twitter", - "display_name": "twitter 推特订阅", - "homepage": "https://github.com/nek0us/nonebot-plugin-twitter", - "pypi_version": "0.2.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9ba128f", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nb2chan": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nb2chan", - "project_link": "nb2chan", - "display_name": "nb2chan", - "homepage": "https://github.com/ffreemt/nb2chan", - "pypi_version": "0.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1dcc499", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-setu-now": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_setu_now", - "project_link": "nonebot-plugin-setu-now", - "display_name": "nonebot-plugin-setu-now", - "homepage": "https://github.com/kexue-z/nonebot-plugin-setu-now", - "pypi_version": "0.6.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "7e8e52c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-leetcode": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "leetcode", - "project_link": "nonebot-plugin-leetcode", - "display_name": "leetcode提醒机器人", - "homepage": "https://github.com/zxz0415/leetcode", - "pypi_version": "0.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "047b580", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-imgsearch": { - "_runtime_latest": "2.0.0b2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_imgsearch", - "project_link": "nonebot-plugin-imgsearch", - "display_name": "另一个图片搜索", - "homepage": "https://github.com/bakashigure/nonebot_plugin_imgsearch", - "pypi_version": "0.1.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "0e71708", - "git_create": true, - "git_run": false, - "last_seen": "e12445b" - }, - "nonebot-plugin-itnew": { - "_runtime_latest": "2.0.0b2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_itnews", - "project_link": "nonebot-plugin-itnew", - "display_name": "IT咨讯", - "homepage": "https://github.com/yzyyz1387/nonebot_plugin_itnews", - "pypi_version": "0.1.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e9eecf3", - "git_create": true, - "git_run": false, - "last_seen": "e12445b" - }, - "lolHeroes": { - "_runtime_latest": "2.0.0b2", - "first_seen": "1b6b9d6", - "module_name": "lolheroes", - "project_link": "lolHeroes", - "display_name": "lolheroes", - "homepage": "https://github.com/cjladmin/lolheroes", - "pypi_version": "0.0.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f918dea", - "git_create": true, - "git_run": false, - "last_seen": "e12445b" - }, - "nonebot-plugin-youthstudy": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_youthstudy", - "project_link": "nonebot-plugin-youthstudy", - "display_name": "nonebot_plugin_youthstudy", - "homepage": "https://github.com/ayanamiblhx/nonebot_plugin_youthstudy", - "pypi_version": "1.1.8", - "pypi_create": true, - "pypi_run": false, - "git_hash": "ec33826", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "gocqapi": { - "_runtime_latest": "2.0.0", - "first_seen": "1b6b9d6", - "module_name": "gocqapi", - "project_link": "gocqapi", - "display_name": "gocqapi", - "homepage": "https://github.com/FYWinds/gocqapi", - "pypi_version": "0.1.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "df29621", - "git_create": true, - "git_run": false, - "last_seen": "2af23c9" - }, - "nonebot-plugin-workscore": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_workscore", - "project_link": "nonebot-plugin-workscore", - "display_name": "工作性价比计算器", - "homepage": "https://github.com/yzyyz1387/nonebot_plugin_workscore", - "pypi_version": "0.1.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9301100", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-nokia": { - "_runtime_latest": "2.0.0b2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_nokia", - "project_link": "nonebot-plugin-nokia", - "display_name": "诺基亚手机图生成", - "homepage": "https://github.com/kexue-z/nonebot-plugin-nokia", - "pypi_version": "0.0.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "c47a5fb", - "git_create": true, - "git_run": false, - "last_seen": "e12445b" - }, - "nonebot-plugin-asoulcnki": { - "_runtime_latest": "2.1.2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_asoulcnki", - "project_link": "nonebot-plugin-asoulcnki", - "display_name": "枝网查重", - "homepage": "https://github.com/MeetWq/nonebot-plugin-asoulcnki", - "pypi_version": "0.2.1", - "pypi_create": true, - "pypi_run": true, - "git_hash": "285c8e5", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-petpet": { - "_runtime_latest": "2.1.2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_petpet", - "project_link": "nonebot-plugin-petpet", - "display_name": "头像表情包", - "homepage": "https://github.com/MeetWq/nonebot-plugin-petpet", - "pypi_version": "0.3.21", - "pypi_create": true, - "pypi_run": true, - "git_hash": "a42de1e", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-shindan": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_shindan", - "project_link": "nonebot-plugin-shindan", - "display_name": "趣味占卜", - "homepage": "https://github.com/noneplugin/nonebot-plugin-shindan", - "pypi_version": "0.6.1", - "pypi_create": true, - "pypi_run": true, - "git_hash": "60698cf", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-vf": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_vf", - "project_link": "nonebot-plugin-vf", - "display_name": "虚拟朋友", - "homepage": "https://github.com/snowyfirefly/VirtualFriends", - "pypi_version": "1.3.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5d4541d", - "git_create": true, - "git_run": false, - "last_seen": "558f740" - }, - "nonebot-plugin-code": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_code", - "project_link": "nonebot-plugin-code", - "display_name": "在线运行代码", - "homepage": "https://github.com/yzyyz1387/nonebot_plugin_code", - "pypi_version": "0.0.7", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f071976", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-heisi": { - "_runtime_latest": "2.0.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_heisi", - "project_link": "nonebot-plugin-heisi", - "display_name": "随机黑丝", - "homepage": "https://github.com/yzyyz1387/nonebot_plugin_heisi", - "pypi_version": "0.3.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "bcc2eae", - "git_create": true, - "git_run": false, - "last_seen": "c555e2f" - }, - "nonebot-plugin-picsbank": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_picsbank", - "project_link": "nonebot-plugin-picsbank", - "display_name": "picsbank", - "homepage": "https://github.com/Diaosi1111/nonebot_plugin_picsbank", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9be2c34", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-tvseries": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_tvseries", - "project_link": "nonebot-plugin-tvseries", - "display_name": "剧集更新列表", - "homepage": "https://github.com/kexue-z/nonebot-plugin-tvseries", - "pypi_version": "0.0.2.3", - "pypi_create": true, - "pypi_run": true, - "git_hash": "3aff520", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-lolmatch": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_lolmatch", - "project_link": "nonebot-plugin-lolmatch", - "display_name": "lol比赛信息", - "homepage": "https://github.com/Diaosi1111/nonebot_plugin_lolmatch", - "pypi_version": "0.3.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "861fcd9", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "olivos.nb2": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "OlivOS.nonebot", - "project_link": "olivos.nb2", - "display_name": "OlivOS.nb2", - "homepage": "https://github.com/nonepkg/OlivOS.nb2", - "pypi_version": "0.2.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "68994ac", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-htmlrender": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_htmlrender", - "project_link": "nonebot-plugin-htmlrender", - "display_name": "nonebot-plugin-htmlrender", - "homepage": "https://github.com/kexue-z/nonebot-plugin-htmlrender", - "pypi_version": "0.3.1", - "pypi_create": true, - "pypi_run": true, - "git_hash": "fec41da", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-admin": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_admin", - "project_link": "nonebot-plugin-admin", - "display_name": "不简易群管", - "homepage": "https://github.com/yzyyz1387/nonebot_plugin_admin", - "pypi_version": "0.4.5.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f7a1367", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-logo": { - "_runtime_latest": "2.1.2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_logo", - "project_link": "nonebot-plugin-logo", - "display_name": "多种风格logo生成", - "homepage": "https://github.com/MeetWq/nonebot-plugin-logo", - "pypi_version": "0.2.2", - "pypi_create": true, - "pypi_run": true, - "git_hash": "2243b7f", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-memes": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_memes", - "project_link": "nonebot-plugin-memes", - "display_name": "表情包制作", - "homepage": "https://github.com/noneplugin/nonebot-plugin-memes", - "pypi_version": "0.6.2", - "pypi_create": true, - "pypi_run": true, - "git_hash": "ca26403", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-repeater": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_repeater", - "project_link": "nonebot-plugin-repeater", - "display_name": "群聊复读机", - "homepage": "https://github.com/ninthseason/nonebot-plugin-repeater", - "pypi_version": "3.1.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9988c29", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-pctrl": { - "_runtime_latest": "2.0.0b2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_PCtrl", - "project_link": "nonebot-plugin-pctrl", - "display_name": "插件管理器", - "homepage": "https://github.com/CherryGS/nonebot_plugin_PCtrl", - "pypi_version": "0.2.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "96858d9", - "git_create": true, - "git_run": false, - "last_seen": "e12445b" - }, - "nonebot-plugin-directlinker": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_directlinker", - "project_link": "nonebot-plugin-directlinker", - "display_name": "群文件直链提取器", - "homepage": "https://github.com/ninthseason/nonebot-plugin-directlinker", - "pypi_version": "2.4.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "51ccf6e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-forwarder": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_forwarder", - "project_link": "nonebot-plugin-forwarder", - "display_name": "转发姬", - "homepage": "https://github.com/ninthseason/nonebot_plugin_forwarder", - "pypi_version": "2.1.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "b52a58f", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-roll": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_roll", - "project_link": "nonebot-plugin-roll", - "display_name": "掷骰子", - "homepage": "https://github.com/MinatoAquaCrews/nonebot_plugin_roll", - "pypi_version": "0.2.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "92508dd", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-crazy-thursday": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_crazy_thursday", - "project_link": "nonebot-plugin-crazy-thursday", - "display_name": "疯狂星期四", - "homepage": "https://github.com/MinatoAquaCrews/nonebot_plugin_crazy_thursday", - "pypi_version": "0.2.8", - "pypi_create": true, - "pypi_run": false, - "git_hash": "4734a3a", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-covid19-news": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_covid19_news", - "project_link": "nonebot-plugin-covid19-news", - "display_name": "新冠疫情查询", - "homepage": "https://github.com/Zeta-qixi/nonebot-plugin-covid19-news", - "pypi_version": "0.7", - "pypi_create": true, - "pypi_run": false, - "git_hash": "73dd335", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-remake": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_remake", - "project_link": "nonebot-plugin-remake", - "display_name": "人生重开", - "homepage": "https://github.com/noneplugin/nonebot-plugin-remake", - "pypi_version": "0.4.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f34a5c5", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-caiyunai": { - "_runtime_latest": "2.1.2", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_caiyunai", - "project_link": "nonebot-plugin-caiyunai", - "display_name": "彩云小梦AI续写", - "homepage": "https://github.com/MeetWq/nonebot-plugin-caiyunai", - "pypi_version": "0.2.5", - "pypi_create": true, - "pypi_run": true, - "git_hash": "77faae7", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-weather-lite": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_weather_lite", - "project_link": "nonebot-plugin-weather-lite", - "display_name": "天气查询", - "homepage": "https://github.com/zjkwdy/nonebot_plugin_weather_lite", - "pypi_version": "0.0.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "c490662", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-fortune": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_fortune", - "project_link": "nonebot-plugin-fortune", - "display_name": "今日运势", - "homepage": "https://github.com/MinatoAquaCrews/nonebot_plugin_fortune", - "pypi_version": "0.4.12", - "pypi_create": true, - "pypi_run": false, - "git_hash": "136a6db", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-tarot": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_tarot", - "project_link": "nonebot-plugin-tarot", - "display_name": "塔罗牌", - "homepage": "https://github.com/KafCoppelia/nonebot_plugin_tarot", - "pypi_version": "0.4.0.post4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5b8638f", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-emojimix": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_emojimix", - "project_link": "nonebot-plugin-emojimix", - "display_name": "emoji合成", - "homepage": "https://github.com/noneplugin/nonebot-plugin-emojimix", - "pypi_version": "0.4.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1d52219", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-what2eat": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_what2eat", - "project_link": "nonebot-plugin-what2eat", - "display_name": "今天吃什么", - "homepage": "https://github.com/KafCoppelia/nonebot_plugin_what2eat", - "pypi_version": "0.3.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "91dc172", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-datastore": { - "_runtime_latest": "2.3.1", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_datastore", - "project_link": "nonebot-plugin-datastore", - "display_name": "数据存储", - "homepage": "https://github.com/he0119/nonebot-plugin-datastore", - "pypi_version": "1.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "0a2409a", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-gocqhttp": { - "_runtime_latest": "2.1.3", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_gocqhttp", - "project_link": "nonebot-plugin-gocqhttp", - "display_name": "NoneBot的go-cqhttp启动器", - "homepage": "https://github.com/mnixry/nonebot-plugin-gocqhttp", - "pypi_version": "0.6.12", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9ce0fe4", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-general-rss": { - "_runtime_latest": "2.0.0b2", - "first_seen": "1b6b9d6", - "module_name": "nonebot-general-rss", - "project_link": "nonebot-general-rss", - "display_name": "nonebot-general-rss", - "homepage": "https://github.com/mobyw/nonebot-general-rss", - "pypi_version": "2.1.0", - "pypi_create": true, - "pypi_run": true, - "git_hash": "c28e6eb", - "git_create": true, - "git_run": true, - "last_seen": "339c256" - }, - "nonebot-plugin-guild-patch": { - "_runtime_latest": "2.1.3", - "first_seen": "1b6b9d6", - "module_name": "nonebot_plugin_guild_patch", - "project_link": "nonebot-plugin-guild-patch", - "display_name": "go-cqhttp 频道支持适配补丁", - "homepage": "https://github.com/mnixry/nonebot-plugin-guild-patch", - "pypi_version": "0.2.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "aba201d", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-chess": { - "_runtime_latest": "2.3.1", - "first_seen": "a8a68d8", - "module_name": "nonebot_plugin_chess", - "project_link": "nonebot-plugin-chess", - "display_name": "国际象棋", - "homepage": "https://github.com/noneplugin/nonebot-plugin-chess", - "pypi_version": "0.5.0", - "pypi_create": true, - "pypi_run": true, - "git_hash": "079adf4", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-wordcloud": { - "_runtime_latest": "2.3.1", - "first_seen": "244b3c0", - "module_name": "nonebot_plugin_wordcloud", - "project_link": "nonebot-plugin-wordcloud", - "display_name": "词云", - "homepage": "https://github.com/he0119/nonebot-plugin-wordcloud", - "pypi_version": "0.7.2", - "pypi_create": true, - "pypi_run": true, - "git_hash": "2545ab7", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-fg": { - "_runtime_latest": "2.0.0b2", - "first_seen": "244b3c0", - "module_name": "nonebot_plugin_fg", - "project_link": "nonebot-plugin-fg", - "display_name": "FG(Fifth Generation)", - "homepage": "https://github.com/mgsky1/FG-plugin", - "pypi_version": "2.0.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f5dafa9", - "git_create": true, - "git_run": false, - "last_seen": "e12445b" - }, - "nonebot-plugin-chatrecorder": { - "_runtime_latest": "2.3.1", - "first_seen": "0fd7c77", - "module_name": "nonebot_plugin_chatrecorder", - "project_link": "nonebot-plugin-chatrecorder", - "display_name": "聊天记录", - "homepage": "https://github.com/noneplugin/nonebot-plugin-chatrecorder", - "pypi_version": "0.6.0", - "pypi_create": true, - "pypi_run": true, - "git_hash": "5e732b6", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-setu2": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "e37e6d0", - "module_name": "nonebot_plugin_setu2", - "project_link": "nonebot-plugin-setu2", - "display_name": "nonebot-plugin-setu2", - "homepage": "https://github.com/NoneBot2-Ae/nonebot-plugin-setu2", - "pypi_version": "0.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "a346299", - "git_create": true, - "git_run": false, - "last_seen": "558f740" - }, - "nonebot-plugin-random-cat": { - "_runtime_latest": "2.0.0b2", - "first_seen": "e37e6d0", - "module_name": "nonebot_plugin_random_cat", - "project_link": "nonebot-plugin-random-cat", - "display_name": "random-cat", - "homepage": "https://github.com/NoneBot2-Ae/nonebot-plugin-random-cat", - "pypi_version": "0.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "fabda30", - "git_create": true, - "git_run": false, - "last_seen": "e12445b" - }, - "nonebot-plugin-antiflash": { - "_runtime_latest": "2.3.1", - "first_seen": "6e89787", - "module_name": "nonebot_plugin_antiflash", - "project_link": "nonebot-plugin-antiflash", - "display_name": "群聊反闪照", - "homepage": "https://github.com/KafCoppelia/nonebot_plugin_antiflash", - "pypi_version": "0.2.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1cd926a", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-strman": { - "_runtime_latest": "2.3.1", - "first_seen": "f4120d9", - "module_name": "nonebot_plugin_strman", - "project_link": "nonebot-plugin-strman", - "display_name": "字符串管理工具", - "homepage": "https://github.com/echobot-dev/nonebot-plugin-strman", - "pypi_version": "1.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "2d90126", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "random_cat_gif": { - "_runtime_latest": "2.0.0b2", - "first_seen": "319b3ff", - "module_name": "random_cat_gif", - "project_link": "random_cat_gif", - "display_name": "random_cat_gif", - "homepage": "https://github.com/applenana/random_cat_gif", - "pypi_version": "1.0.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "d40b25d", - "git_create": false, - "git_run": false, - "last_seen": "e12445b" - }, - "nonebot-plugin-word-bank2": { - "_runtime_latest": "2.3.1", - "first_seen": "319b3ff", - "module_name": "nonebot_plugin_word_bank2", - "project_link": "nonebot-plugin-word-bank2", - "display_name": "nonebot-plugin-word-bank2", - "homepage": "https://github.com/kexue-z/nonebot-plugin-word-bank2", - "pypi_version": "0.1.8", - "pypi_create": true, - "pypi_run": false, - "git_hash": "c5c6079", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "ServantReasoning": { - "_runtime_latest": "2.0.0b2", - "first_seen": "9ed5d91", - "module_name": "nonebot_plugin_ServantReasoning", - "project_link": "ServantReasoning", - "display_name": "Fgo从者推理", - "homepage": "https://github.com/suhexia/ServantReasoningGame", - "pypi_version": null, - "pypi_create": true, - "pypi_run": false, - "git_hash": "3164fdd", - "git_create": true, - "git_run": false, - "last_seen": "e12445b" - }, - "nonebot-plugin-txt2img": { - "_runtime_latest": "2.3.1", - "first_seen": "1b17039", - "module_name": "nonebot_plugin_txt2img", - "project_link": "nonebot-plugin-txt2img", - "display_name": "文字转图片", - "homepage": "https://github.com/mobyw/nonebot-plugin-txt2img", - "pypi_version": "0.4.1", - "pypi_create": true, - "pypi_run": true, - "git_hash": "b385ecd", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-morning": { - "_runtime_latest": "2.3.1", - "first_seen": "80bf73e", - "module_name": "nonebot_plugin_morning", - "project_link": "nonebot-plugin-morning", - "display_name": "おはよう!", - "homepage": "https://github.com/KafCoppelia/nonebot_plugin_morning", - "pypi_version": "0.3.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "2887a28", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-pixiv": { - "_runtime_latest": "2.3.1", - "first_seen": "722fc6c", - "module_name": "nonebot_plugin_pixiv", - "project_link": "nonebot-plugin-pixiv", - "display_name": "pixiv.net p站查询图片", - "homepage": "https://github.com/anlen123/nonebot_plugin_pixiv", - "pypi_version": "1.1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "92cfbf1", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-abbrreply": { - "_runtime_latest": "2.3.1", - "first_seen": "fcda5c3", - "module_name": "nonebot_plugin_abbrreply", - "project_link": "nonebot-plugin-abbrreply", - "display_name": "缩写查询器", - "homepage": "https://github.com/anlen123/nonebot_plugin_abbrreply", - "pypi_version": "1.1.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "7ef9ee5", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-biliav": { - "_runtime_latest": "2.3.1", - "first_seen": "fcda5c3", - "module_name": "nonebot_plugin_biliav", - "project_link": "nonebot-plugin-biliav", - "display_name": "biliav小程序转换器", - "homepage": "https://github.com/knva/nonebot_plugin_biliav", - "pypi_version": "1.0.11", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e34634e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-setu": { - "_runtime_latest": "2.3.1", - "first_seen": "fcda5c3", - "module_name": "nonebot_plugin_setu", - "project_link": "nonebot-plugin-setu", - "display_name": "nonebot_plugin_setu", - "homepage": "https://github.com/ayanamiblhx/nonebot_plugin_setu", - "pypi_version": "1.1.11", - "pypi_create": true, - "pypi_run": false, - "git_hash": "bd7165b", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-epicfree": { - "_runtime_latest": "2.3.1", - "first_seen": "fcda5c3", - "module_name": "nonebot_plugin_epicfree", - "project_link": "nonebot-plugin-epicfree", - "display_name": "Epic 限免游戏资讯", - "homepage": "https://github.com/monsterxcn/nonebot_plugin_epicfree", - "pypi_version": "0.2.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "d16fc25", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-read-60s": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "9dd989c", - "module_name": "nonebot_plugin_read_60s", - "project_link": "nonebot-plugin-read-60s", - "display_name": "60s读世界小插件", - "homepage": "https://github.com/bingganhe123/60s-", - "pypi_version": "0.2.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "8887346", - "git_create": true, - "git_run": false, - "last_seen": "558f740" - }, - "yetanotherpicsearch": { - "_runtime_latest": "2.3.1", - "first_seen": "6f0e27e", - "module_name": "YetAnotherPicSearch", - "project_link": "yetanotherpicsearch", - "display_name": "YetAnotherPicSearch", - "homepage": "https://github.com/NekoAria/YetAnotherPicSearch", - "pypi_version": "1.9.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "8b967cf", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-gachalogs": { - "_runtime_latest": "2.3.1", - "first_seen": "5db9c1e", - "module_name": "nonebot_plugin_gachalogs", - "project_link": "nonebot-plugin-gachalogs", - "display_name": "原神抽卡记录分析", - "homepage": "https://github.com/monsterxcn/nonebot-plugin-gachalogs", - "pypi_version": "0.2.13", - "pypi_create": true, - "pypi_run": false, - "git_hash": "bdd86ce", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-everyday-en": { - "_runtime_latest": "2.3.1", - "first_seen": "88f8614", - "module_name": "nonebot_plugin_everyday_en", - "project_link": "nonebot-plugin-everyday-en", - "display_name": "每日一句", - "homepage": "https://github.com/MelodyYuuka/nonebot_plugin_everyday_en", - "pypi_version": "1.1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3c67121", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-fire": { - "_runtime_latest": "2.3.1", - "first_seen": "2203b82", - "module_name": "nonebot_plugin_fire", - "project_link": "nonebot-plugin-fire", - "display_name": "QQ自动续火花", - "homepage": "https://github.com/25252www/nonebot_plugin_fire", - "pypi_version": "1.0.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "74f8306", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-mockingbird-plugin": { - "_runtime_latest": "2.0.0b2", - "first_seen": "edc7183", - "module_name": "nonebot_mockingbird_plugin", - "project_link": "nonebot-mockingbird-plugin", - "display_name": "mockingbird", - "homepage": "https://github.com/Diaosi1111/nonebot_mockingbird_plugin", - "pypi_version": "0.0.2", - "pypi_create": false, - "pypi_run": false, - "git_hash": "0ec87a3", - "git_create": true, - "git_run": false, - "last_seen": "e12445b" - }, - "nonebot-plugin-qrcode": { - "_runtime_latest": "2.3.1", - "first_seen": "dea1b8c", - "module_name": "nonebot_plugin_qrcode", - "project_link": "nonebot-plugin-qrcode", - "display_name": "二维码识别与发送", - "homepage": "https://github.com/kexue-z/nonebot-plugin-qrcode", - "pypi_version": "0.0.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "a62117f", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-ygo": { - "_runtime_latest": "2.3.1", - "first_seen": "8600687", - "module_name": "nonebot_plugin_ygo", - "project_link": "nonebot-plugin-ygo", - "display_name": "游戏王卡查", - "homepage": "https://github.com/anlen123/nonebot_plugin_ygo", - "pypi_version": "1.0.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e583d6e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-anime-news": { - "_runtime_latest": "2.0.0b2", - "first_seen": "f7600a8", - "module_name": "nonebot_plugin_anime_news", - "project_link": "nonebot-plugin-anime-news", - "display_name": "动漫新闻", - "homepage": "https://github.com/5656565566/anime_news", - "pypi_version": "1.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "651dbdb", - "git_create": false, - "git_run": false, - "last_seen": "e12445b" - }, - "nonebot-plugin-broker": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "492c094", - "module_name": "nonebot_plugin_broker", - "project_link": "nonebot-plugin-broker", - "display_name": "订阅推送管理", - "homepage": "https://github.com/mwbimh/nonebot_plugin_broker", - "pypi_version": "0.4.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3f11e07", - "git_create": true, - "git_run": false, - "last_seen": "558f740" - }, - "nonebot-plugin-bilibilibot": { - "_runtime_latest": "2.3.1", - "first_seen": "4cf07ca", - "module_name": "nonebot_plugin_bilibilibot", - "project_link": "nonebot-plugin-bilibilibot", - "display_name": "bilibili通知插件", - "homepage": "https://github.com/TDK1969/nonebot_plugin_bilibilibot", - "pypi_version": "2.3.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9614d4e", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-color": { - "_runtime_latest": "2.3.1", - "first_seen": "4ebbf76", - "module_name": "nonebot_plugin_color", - "project_link": "nonebot-plugin-color", - "display_name": "色图生成", - "homepage": "https://github.com/monsterxcn/nonebot-plugin-color", - "pypi_version": "0.4.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "2eb2658", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-blackjack": { - "_runtime_latest": "2.3.1", - "first_seen": "56c6f6a", - "module_name": "nonebot_plugin_blackjack", - "project_link": "nonebot-plugin-blackjack", - "display_name": "21点游戏插件", - "homepage": "https://github.com/yaowan233/nonebot-plugin-blackjack", - "pypi_version": "0.0.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "37710da", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-pulgin-autoagree": { - "_runtime_latest": "2.0.0b2", - "first_seen": "06f8dde", - "module_name": "nonebot_pulgin_autoagree", - "project_link": "nonebot-pulgin-autoagree", - "display_name": "QQ自动同意好友申请", - "homepage": "https://github.com/ZakiuC/NoneBot_Pulgin_AutoAgree", - "pypi_version": "0.0.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "8292c96", - "git_create": true, - "git_run": false, - "last_seen": "e12445b" - }, - "nonebot-plugin-arcaeabot": { - "_runtime_latest": "2.3.1", - "first_seen": "fcdb05a", - "module_name": "nonebot_plugin_arcaeabot", - "project_link": "nonebot-plugin-arcaeabot", - "display_name": "Arcaea查分插件", - "homepage": "https://github.com/SEAFHMC/nonebot-plugin-arcaeabot", - "pypi_version": "3.1.19", - "pypi_create": true, - "pypi_run": false, - "git_hash": "49ce0c7", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-ddcheck": { - "_runtime_latest": "2.3.1", - "first_seen": "78a90ef", - "module_name": "nonebot_plugin_ddcheck", - "project_link": "nonebot-plugin-ddcheck", - "display_name": "成分姬", - "homepage": "https://github.com/noneplugin/nonebot-plugin-ddcheck", - "pypi_version": "0.4.0", - "pypi_create": true, - "pypi_run": true, - "git_hash": "16b86b6", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-leetcode2": { - "_runtime_latest": "2.3.1", - "first_seen": "a2abc5a", - "module_name": "nonebot_plugin_leetcode2", - "project_link": "nonebot-plugin-leetcode2", - "display_name": "第二个leetcode查询插件", - "homepage": "https://github.com/Nranphy/nonebot_plugin_leetcode2", - "pypi_version": "1.1.3", - "pypi_create": true, - "pypi_run": true, - "git_hash": "5740b2f", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-hikarisearch": { - "_runtime_latest": "2.3.1", - "first_seen": "3c8e705", - "module_name": "nonebot_plugin_hikarisearch", - "project_link": "nonebot-plugin-hikarisearch", - "display_name": "HikariSearch", - "homepage": "https://github.com/MeetWq/nonebot-plugin-hikarisearch", - "pypi_version": "0.1.7", - "pypi_create": true, - "pypi_run": false, - "git_hash": "11b34d5", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-mediawiki": { - "_runtime_latest": "2.3.1", - "first_seen": "8ccf109", - "module_name": "nonebot_plugin_mediawiki", - "project_link": "nonebot-plugin-mediawiki", - "display_name": "MediaWiki查询", - "homepage": "https://github.com/KoishiStudio/nonebot-plugin-mediawiki", - "pypi_version": "1.0.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "97a053a", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-wordle": { - "_runtime_latest": "2.3.1", - "first_seen": "8ccf109", - "module_name": "nonebot_plugin_wordle", - "project_link": "nonebot-plugin-wordle", - "display_name": "猜单词", - "homepage": "https://github.com/noneplugin/nonebot-plugin-wordle", - "pypi_version": "0.4.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "2dd40b8", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-giyf": { - "_runtime_latest": "2.3.1", - "first_seen": "8ccf109", - "module_name": "nonebot_plugin_giyf", - "project_link": "nonebot-plugin-giyf", - "display_name": "快速搜索", - "homepage": "https://github.com/KoishiStudio/nonebot-plugin-giyf", - "pypi_version": "0.1.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "03d9fa5", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-abstract": { - "_runtime_latest": "2.3.1", - "first_seen": "537866d", - "module_name": "nonebot_plugin_abstract", - "project_link": "nonebot-plugin-abstract", - "display_name": "语句抽象化", - "homepage": "https://github.com/CherryCherries/nonebot-plugin-abstract", - "pypi_version": "1.0.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9b51cae", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-params": { - "_runtime_latest": "2.3.1", - "first_seen": "adb5fd8", - "module_name": "nonebot_plugin_params", - "project_link": "nonebot-plugin-params", - "display_name": "多适配器帮助函数", - "homepage": "https://github.com/iyume/nonebot-plugin-params", - "pypi_version": "0.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "68b54f0", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-handle": { - "_runtime_latest": "2.3.1", - "first_seen": "82803ff", - "module_name": "nonebot_plugin_handle", - "project_link": "nonebot-plugin-handle", - "display_name": "猜成语", - "homepage": "https://github.com/noneplugin/nonebot-plugin-handle", - "pypi_version": "0.4.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "2562dd8", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-minesweeper": { - "_runtime_latest": "2.3.1", - "first_seen": "e12445b", - "module_name": "nonebot_plugin_minesweeper", - "project_link": "nonebot-plugin-minesweeper", - "display_name": "扫雷", - "homepage": "https://github.com/noneplugin/nonebot-plugin-minesweeper", - "pypi_version": "0.4.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "54d6754", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot_plugin_draw": { - "_runtime_latest": "2.3.1", - "first_seen": "e5bb30e", - "module_name": "nonebot_plugin_draw", - "project_link": "nonebot_plugin_draw", - "display_name": "nonebot_plugin_draw", - "homepage": "https://github.com/bingganhe123/nonebot_plugin_draw", - "pypi_version": "0.1.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f1eb41b", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nanobot-plugin-splatoon2tools": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "af799aa", - "module_name": "splatoon2_tools", - "project_link": "nanobot-plugin-splatoon2tools", - "display_name": "splatoon2新闻", - "homepage": "https://github.com/DrinkOolongTea/splatoon2-bot", - "pypi_version": "1.3.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "8a80c25", - "git_create": true, - "git_run": false, - "last_seen": "558f740" - }, - "nonebot-plugin-randomtkk": { - "_runtime_latest": "2.3.1", - "first_seen": "f989710", - "module_name": "nonebot_plugin_randomtkk", - "project_link": "nonebot-plugin-randomtkk", - "display_name": "随机唐可可", - "homepage": "https://github.com/MinatoAquaCrews/nonebot_plugin_randomtkk", - "pypi_version": "0.1.5.post1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9f79dee", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-dida": { - "_runtime_latest": "2.3.1", - "first_seen": "dcfa25c", - "module_name": "nonebot_plugin_dida", - "project_link": "nonebot-plugin-dida", - "display_name": "nonebot-plugin-dida", - "homepage": "https://github.com/TDK1969/nonebot_plugin_dida", - "pypi_version": "2.0.0.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1dec1fb", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-alipayvoice": { - "_runtime_latest": "2.3.1", - "first_seen": "6449b1e", - "module_name": "nonebot_plugin_alipayvoice", - "project_link": "nonebot-plugin-alipayvoice", - "display_name": "支付宝到账语音", - "homepage": "https://github.com/A-kirami/nonebot-plugin-alipayvoice", - "pypi_version": "0.5.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "afd2991", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-answersbook": { - "_runtime_latest": "2.3.1", - "first_seen": "6449b1e", - "module_name": "nonebot_plugin_answersbook", - "project_link": "nonebot-plugin-answersbook", - "display_name": "答案之书", - "homepage": "https://github.com/A-kirami/nonebot-plugin-answersbook", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "7801ca6", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-hitokoto": { - "_runtime_latest": "2.3.1", - "first_seen": "6449b1e", - "module_name": "nonebot_plugin_hitokoto", - "project_link": "nonebot-plugin-hitokoto", - "display_name": "一言", - "homepage": "https://github.com/A-kirami/nonebot-plugin-hitokoto", - "pypi_version": "0.2.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "eace873", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bilicover": { - "_runtime_latest": "2.3.1", - "first_seen": "f028575", - "module_name": "nonebot_plugin_bilicover", - "project_link": "nonebot-plugin-bilicover", - "display_name": "B站视频封面提取", - "homepage": "https://github.com/A-kirami/nonebot-plugin-bilicover", - "pypi_version": "0.2.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1937359", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-cchess": { - "_runtime_latest": "2.3.1", - "first_seen": "3418683", - "module_name": "nonebot_plugin_cchess", - "project_link": "nonebot-plugin-cchess", - "display_name": "象棋", - "homepage": "https://github.com/noneplugin/nonebot-plugin-cchess", - "pypi_version": "0.4.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "55ff669", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-rtfm": { - "_runtime_latest": "2.0.0rc4", - "first_seen": "2d81d54", - "module_name": "nonebot_plugin_rtfm", - "project_link": "nonebot-plugin-rtfm", - "display_name": "NoneBot2 文档搜索", - "homepage": "https://github.com/MingxuanGame/nonebot-plugin-rtfm", - "pypi_version": "0.2.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "13a72b1", - "git_create": true, - "git_run": false, - "last_seen": "575e3fb" - }, - "nonebot-plugin-boardgame": { - "_runtime_latest": "2.3.1", - "first_seen": "a93401e", - "module_name": "nonebot_plugin_boardgame", - "project_link": "nonebot-plugin-boardgame", - "display_name": "棋类游戏", - "homepage": "https://github.com/noneplugin/nonebot-plugin-boardgame", - "pypi_version": "0.4.0", - "pypi_create": true, - "pypi_run": true, - "git_hash": "4e6f4b4", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-charpic": { - "_runtime_latest": "2.3.1", - "first_seen": "94b19b4", - "module_name": "nonebot_plugin_charpic", - "project_link": "nonebot-plugin-charpic", - "display_name": "charpic", - "homepage": "https://github.com/1umine/nonebot_plugin_charpic", - "pypi_version": "0.1.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "b66b1db", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-miragetank": { - "_runtime_latest": "2.3.1", - "first_seen": "dc074f3", - "module_name": "nonebot_plugin_miragetank", - "project_link": "nonebot-plugin-miragetank", - "display_name": "miragetank", - "homepage": "https://github.com/1umine/nonebot_plugin_miragetank", - "pypi_version": "0.1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "2df50d8", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-eventdone": { - "_runtime_latest": "2.3.1", - "first_seen": "42a49a2", - "module_name": "nonebot_plugin_eventdone", - "project_link": "nonebot-plugin-eventdone", - "display_name": "nonebot_plugin_eventdone", - "homepage": "https://github.com/PadorFelice/nonebot_plugin_eventdone", - "pypi_version": "1.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "de64827", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-covid": { - "_runtime_latest": "2.3.0", - "first_seen": "049d988", - "module_name": "nonebot_plugin_covid", - "project_link": "nonebot-plugin-covid", - "display_name": "国内新冠疫情数据查询", - "homepage": "https://github.com/nicklly/nonebot2_covid_plugin", - "pypi_version": null, - "pypi_create": true, - "pypi_run": false, - "git_hash": "d0af6c2", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-yulu": { - "_runtime_latest": "2.3.1", - "first_seen": "ff65f10", - "module_name": "nonebot_plugin_yulu", - "project_link": "nonebot-plugin-yulu", - "display_name": "语录娱乐", - "homepage": "https://github.com/bingqiu456/nonebot-plugin-yulu", - "pypi_version": "3.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "a784880", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-maze": { - "_runtime_latest": "2.3.1", - "first_seen": "90f7c15", - "module_name": "nonebot_plugin_maze", - "project_link": "nonebot-plugin-maze", - "display_name": "走迷宫", - "homepage": "https://github.com/EtherLeaF/nonebot_plugin_maze", - "pypi_version": "0.2.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "6aad488", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-moyu": { - "_runtime_latest": "2.3.1", - "first_seen": "c6633bc", - "module_name": "nonebot_plugin_moyu", - "project_link": "nonebot-plugin-moyu", - "display_name": "摸鱼日历", - "homepage": "https://github.com/A-kirami/nonebot-plugin-moyu", - "pypi_version": "0.3.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "8a37e61", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-imageutils": { - "_runtime_latest": "2.1.2", - "first_seen": "6d4c5cb", - "module_name": "nonebot_plugin_imageutils", - "project_link": "nonebot-plugin-imageutils", - "display_name": "imageutils", - "homepage": "https://github.com/noneplugin/nonebot-plugin-imageutils", - "pypi_version": "0.1.17", - "pypi_create": true, - "pypi_run": true, - "git_hash": "2bd7b39", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-mockingbird": { - "_runtime_latest": "2.3.1", - "first_seen": "449a2c5", - "module_name": "nonebot_plugin_mockingbird", - "project_link": "nonebot-plugin-mockingbird", - "display_name": "MockingBird语音", - "homepage": "https://github.com/AkashiCoin/nonebot_plugin_mockingbird", - "pypi_version": "0.2.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3426e26", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-baidutranslate": { - "_runtime_latest": "2.3.1", - "first_seen": "20f414d", - "module_name": "nonebot_plugin_baidutranslate", - "project_link": "nonebot-plugin-baidutranslate", - "display_name": "百度翻译", - "homepage": "https://github.com/NumberSir/nonebot_plugin_baidutranslate", - "pypi_version": "0.3.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "54f3118", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-tortoise-orm": { - "_runtime_latest": "2.3.1", - "first_seen": "20f414d", - "module_name": "nonebot_plugin_tortoise_orm", - "project_link": "nonebot-plugin-tortoise-orm", - "display_name": "nonebot_plugin_tortoise_orm", - "homepage": "https://github.com/kexue-z/nonebot-plugin-tortoise-orm", - "pypi_version": "0.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9afe38d", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-dailysign": { - "_runtime_latest": "2.3.1", - "first_seen": "c52637a", - "module_name": "nonebot_plugin_dailysign", - "project_link": "nonebot-plugin-dailysign", - "display_name": "nonebot_plugin_dailysign", - "homepage": "https://github.com/kexue-z/nonebot-plugin-dailysign", - "pypi_version": "0.1.0.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "7e42a29", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-tetris-stats": { - "_runtime_latest": "2.3.1", - "first_seen": "579839f", - "module_name": "nonebot_plugin_tetris_stats", - "project_link": "nonebot-plugin-tetris-stats", - "display_name": "TETRIS Stats", - "homepage": "https://github.com/shoucandanghehe/nonebot-plugin-tetris-stats", - "pypi_version": "1.2.10", - "pypi_create": true, - "pypi_run": true, - "git_hash": "318b42d", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot_plugin_bilibili_viode": { - "_runtime_latest": "2.3.1", - "first_seen": "79fd127", - "module_name": "nonebot_plugin_bilibili_viode", - "project_link": "nonebot_plugin_bilibili_viode", - "display_name": "B站视频伪分享卡片", - "homepage": "https://github.com/ASTWY/nonebot_plugin_bilibili_viode", - "pypi_version": "1.0.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f9a334f", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-arktools": { - "_runtime_latest": "2.3.1", - "first_seen": "3812347", - "module_name": "nonebot_plugin_arktools", - "project_link": "nonebot-plugin-arktools", - "display_name": "明日方舟工具箱", - "homepage": "https://github.com/NumberSir/nonebot_plugin_arktools", - "pypi_version": "1.2.0", - "pypi_create": true, - "pypi_run": true, - "git_hash": "0eaab75", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-imagetools": { - "_runtime_latest": "2.3.1", - "first_seen": "c34b343", - "module_name": "nonebot_plugin_imagetools", - "project_link": "nonebot-plugin-imagetools", - "display_name": "图片操作", - "homepage": "https://github.com/noneplugin/nonebot-plugin-imagetools", - "pypi_version": "0.4.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "a6ca0d5", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-warframe-clock": { - "_runtime_latest": "2.3.1", - "first_seen": "3238a82", - "module_name": "nonebot_plugin_warframe_clock", - "project_link": "nonebot-plugin-warframe-clock", - "display_name": "Warframe时间查询", - "homepage": "https://github.com/axStar/nonebot_plugin_warframe_clock", - "pypi_version": "1.3", - "pypi_create": true, - "pypi_run": true, - "git_hash": "5ab72a2", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "hikari-bot": { - "_runtime_latest": "2.3.1", - "first_seen": "c3ce4f7", - "module_name": "hikari_bot", - "project_link": "hikari-bot", - "display_name": "Hikari-战舰世界水表查询", - "homepage": "https://github.com/benx1n/HikariBot", - "pypi_version": "1.0.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "d73daa4", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-who-at-me": { - "_runtime_latest": "2.3.1", - "first_seen": "8485a35", - "module_name": "nonebot_plugin_who_at_me", - "project_link": "nonebot-plugin-who-at-me", - "display_name": "谁艾特我了", - "homepage": "https://github.com/SEAFHMC/nonebot-plugin-who-at-me", - "pypi_version": "0.3.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "43dd0bd", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-covid-19-by": { - "_runtime_latest": "2.3.1", - "first_seen": "c55b32b", - "module_name": "nonebot_plugin_covid_19_by", - "project_link": "nonebot-plugin-covid-19-by", - "display_name": "疫情小助手", - "homepage": "https://github.com/bingqiu456/nonebot-plugin-covid-19-by", - "pypi_version": "4.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e685874", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-auto-teenstudy": { - "_runtime_latest": "2.0.1", - "first_seen": "4c8f505", - "module_name": "nonebot_plugin_auto_teenstudy", - "project_link": "nonebot-plugin-auto-teenstudy", - "display_name": "青年大学习提交(基础版)", - "homepage": "https://github.com/ZM25XC/nonebot_plugin_auto_teenstudy", - "pypi_version": "0.1.9", - "pypi_create": true, - "pypi_run": false, - "git_hash": "91b18bc", - "git_create": true, - "git_run": false, - "last_seen": "75c5678" - }, - "nonebot-plugin-reboot": { - "_runtime_latest": "2.3.1", - "first_seen": "e38bb2b", - "module_name": "nonebot_plugin_reboot", - "project_link": "nonebot-plugin-reboot", - "display_name": "nonebot_plugin_reboot [重启 bot]", - "homepage": "https://github.com/18870/nonebot-plugin-reboot", - "pypi_version": "0.1.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "ce9de45", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-setu4": { - "_runtime_latest": "2.3.1", - "first_seen": "a62a49d", - "module_name": "nonebot_plugin_setu4", - "project_link": "nonebot-plugin-setu4", - "display_name": "setu4", - "homepage": "https://github.com/Special-Week/nonebot_plugin_setu4", - "pypi_version": "0.15.114514.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "2e499d8", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-smart-reply": { - "_runtime_latest": "2.3.1", - "first_seen": "b754ac2", - "module_name": "nonebot_plugin_smart_reply", - "project_link": "nonebot-plugin-smart-reply", - "display_name": "smart_reply", - "homepage": "https://github.com/Special-Week/nonebot_plugin_smart_reply", - "pypi_version": "0.15.114514", - "pypi_create": true, - "pypi_run": false, - "git_hash": "cf97d40", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-today-in-history": { - "_runtime_latest": "2.3.1", - "first_seen": "a82ce00", - "module_name": "nonebot_plugin_today_in_history", - "project_link": "nonebot-plugin-today-in-history", - "display_name": "历史上的今天", - "homepage": "https://github.com/AquamarineCyan/nonebot-plugin-today-in-history", - "pypi_version": "0.1.3", - "pypi_create": true, - "pypi_run": true, - "git_hash": "43f41df", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot_plugin_BitTorrent": { - "_runtime_latest": "2.3.1", - "first_seen": "a67eda4", - "module_name": "nonebot_plugin_BitTorrent", - "project_link": "nonebot_plugin_BitTorrent", - "display_name": "bittorrent", - "homepage": "https://github.com/Special-Week/nonebot_plugin_BitTorrent", - "pypi_version": "0.0.21", - "pypi_create": true, - "pypi_run": false, - "git_hash": "cbc1aef", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-namelist": { - "_runtime_latest": "2.3.1", - "first_seen": "f1ffac5", - "module_name": "nonebot_plugin_namelist", - "project_link": "nonebot-plugin-namelist", - "display_name": "黑白名单", - "homepage": "https://github.com/A-kirami/nonebot-plugin-namelist", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "c27f611", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bread-shop": { - "_runtime_latest": "2.3.1", - "first_seen": "d54c2e6", - "module_name": "nonebot_plugin_bread_shop", - "project_link": "nonebot-plugin-bread-shop", - "display_name": "面包店小游戏", - "homepage": "https://github.com/Mai-icy/nonebot-plugin-bread-shop", - "pypi_version": "0.1.14", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e3c8a20", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot_plugin_PicMenu": { - "_runtime_latest": "2.3.1", - "first_seen": "e2289c7", - "module_name": "nonebot_plugin_PicMenu", - "project_link": "nonebot_plugin_PicMenu", - "display_name": "PicMenu", - "homepage": "https://github.com/hamo-reid/nonenot_plugin_PicMenu", - "pypi_version": "0.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "7d168de", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot_plugin_horserace": { - "_runtime_latest": "2.3.1", - "first_seen": "0e7e88c", - "module_name": "nonebot_plugin_horserace", - "project_link": "nonebot_plugin_horserace", - "display_name": "赛马", - "homepage": "https://github.com/shinianj/nonebot_plugin_horserace", - "pypi_version": "2.2", - "pypi_create": true, - "pypi_run": true, - "git_hash": "80b5bce", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-myb-exchange": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "7766512", - "module_name": "nonebot_plugin_myb_exchange", - "project_link": "nonebot-plugin-myb-exchange", - "display_name": "米游币商品自动兑换", - "homepage": "https://github.com/CMHopeSunshine/LittlePaimon/tree/Bot/src/plugins/nonebot_plugin_myb_exchange", - "pypi_version": "1.0.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "558f740" - }, - "nonebot-plugin-firexN": { - "_runtime_latest": "2.3.1", - "first_seen": "d8ed5c2", - "module_name": "nonebot_plugin_firexN", - "project_link": "nonebot-plugin-firexN", - "display_name": "一起燚xN吧", - "homepage": "https://github.com/GC-ZF/nonebot_plugin_firexN", - "pypi_version": "0.1.7", - "pypi_create": true, - "pypi_run": false, - "git_hash": "64a1f07", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bfinfo": { - "_runtime_latest": "2.3.1", - "first_seen": "dddbeb3", - "module_name": "nonebot_plugin_bfinfo", - "project_link": "nonebot-plugin-bfinfo", - "display_name": "战地1、5战绩查询工具", - "homepage": "https://github.com/GC-ZF/nonebot_plugin_bfinfo", - "pypi_version": "0.0.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "51da0f9", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-osubot": { - "_runtime_latest": "2.3.1", - "first_seen": "dddbeb3", - "module_name": "nonebot_plugin_osubot", - "project_link": "nonebot-plugin-osubot", - "display_name": "OSUBot", - "homepage": "https://github.com/yaowan233/nonebot-plugin-osubot", - "pypi_version": "6.4.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "ee28e57", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-acc-calculate": { - "_runtime_latest": "2.3.1", - "first_seen": "e2d0453", - "module_name": "nonebot_plugin_acc_calculate", - "project_link": "nonebot-plugin-acc-calculate", - "display_name": "ACC计算工具", - "homepage": "https://github.com/10-24/nonebot-plugin-acc-calculate", - "pypi_version": "1.0.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "4ebe1b3", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot_plugin_kawaii_robot": { - "_runtime_latest": "2.3.1", - "first_seen": "1667440", - "module_name": "nonebot_plugin_kawaii_robot", - "project_link": "nonebot_plugin_kawaii_robot", - "display_name": "KawaiiRobot", - "homepage": "https://github.com/KarisAya/nonebot_plugin_kawaii_robot/", - "pypi_version": "4.1.0.post2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3091b41", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bVideo": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "0ecea50", - "module_name": "nonebot-plugin-bVideo", - "project_link": "nonebot-plugin-bVideo", - "display_name": "b站视频每日推送", - "homepage": "https://github.com/ziru-w/nonebot_plugin_bVideo", - "pypi_version": "1.2.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "390eb3c", - "git_create": true, - "git_run": false, - "last_seen": "558f740" - }, - "nonebot_plugin_arkrecord": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "9e908d5", - "module_name": "nonebot_plugin_arkrecord", - "project_link": "nonebot_plugin_arkrecord", - "display_name": "明日方舟寻访记录分析", - "homepage": "https://github.com/zheuziihau/nonebot_plugin_arkrecord", - "pypi_version": "1.6.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "c779b98", - "git_create": false, - "git_run": false, - "last_seen": "558f740" - }, - "nonebot_plugin_addFriend": { - "_runtime_latest": "2.3.1", - "first_seen": "9e908d5", - "module_name": "nonebot_plugin_addFriend", - "project_link": "nonebot_plugin_addFriend", - "display_name": "处理好友添加和群邀请", - "homepage": "https://github.com/ziru-w/nonebot_plugin_addFriend", - "pypi_version": "2.5.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "38cabfd", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-date-name": { - "_runtime_latest": "2.3.1", - "first_seen": "12942f2", - "module_name": "nonebot_plugin_date_name", - "project_link": "nonebot-plugin-date-name", - "display_name": "群昵称时间", - "homepage": "https://github.com/bingqiu456/nonebot-plugin-date-name", - "pypi_version": "3.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "eae1591", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot_plugin_easyCommand": { - "_runtime_latest": "2.3.1", - "first_seen": "732b5b0", - "module_name": "nonebot_plugin_easyCommand", - "project_link": "nonebot_plugin_easyCommand", - "display_name": "易命令", - "homepage": "https://github.com/ziru-w/nonebot_plugin_easyCommand", - "pypi_version": "1.1.4", - "pypi_create": true, - "pypi_run": true, - "git_hash": "73d8596", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-report": { - "_runtime_latest": "2.3.1", - "first_seen": "6e98ac0", - "module_name": "nonebot_plugin_report", - "project_link": "nonebot-plugin-report", - "display_name": "推送钩子", - "homepage": "https://github.com/syrinka/nonebot-plugin-report", - "pypi_version": "1.3.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "bd9a768", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-hammer-nbnhhsh": { - "_runtime_latest": "2.3.1", - "first_seen": "63f8d78", - "module_name": "nonebot_plugin_hammer_nbnhhsh", - "project_link": "nonebot-plugin-hammer-nbnhhsh", - "display_name": "「能不能好好说话?」缩写翻译", - "homepage": "https://github.com/ArgonarioD/nonebot-plugin-hammer-nbnhhsh", - "pypi_version": "1.0.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9e4e07b", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bawiki": { - "_runtime_latest": "2.3.1", - "first_seen": "badb0c9", - "module_name": "nonebot_plugin_bawiki", - "project_link": "nonebot-plugin-bawiki", - "display_name": "BAWiki", - "homepage": "https://github.com/lgc-NB2Dev/nonebot-plugin-bawiki", - "pypi_version": "0.11.2", - "pypi_create": true, - "pypi_run": true, - "git_hash": "d4ae98b", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-mcqq": { - "_runtime_latest": "2.3.1", - "first_seen": "6583bc8", - "module_name": "nonebot_plugin_mcqq", - "project_link": "nonebot-plugin-mcqq", - "display_name": "MC_QQ", - "homepage": "https://github.com/17TheWord/nonebot-plugin-mcqq", - "pypi_version": "2.5.7.post1", - "pypi_create": true, - "pypi_run": true, - "git_hash": "69ec827", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-covid-19-by-guild": { - "_runtime_latest": "2.3.1", - "first_seen": "675e70f", - "module_name": "nonebot_plugin_covid_19_by_guild", - "project_link": "nonebot-plugin-covid-19-by-guild", - "display_name": "疫情小助手-频道版", - "homepage": "https://github.com/bingqiu456/nonebot-plugin-covid-19-by-guild", - "pypi_version": "1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "ce27f79", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bangumi-search": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "549a37b", - "module_name": "nonebot-plugin-bangumi-search", - "project_link": "nonebot-plugin-bangumi-search", - "display_name": "bangumi搜索", - "homepage": "https://github.com/Ankhyty/nonebot-plugin-bangumi-search", - "pypi_version": "1.0.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "fcb2149", - "git_create": true, - "git_run": false, - "last_seen": "558f740" - }, - "nonebot-plugin-wiki": { - "_runtime_latest": "2.3.1", - "first_seen": "549a37b", - "module_name": "nonebot_plugin_wiki", - "project_link": "nonebot-plugin-wiki", - "display_name": "wiki条目搜索、获取简介", - "homepage": "https://github.com/ZombieFly/nb2-wiki", - "pypi_version": "0.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "930c760", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-admin-hello": { - "_runtime_latest": "2.0.0b5", - "first_seen": "0e3ed0e", - "module_name": "nonebot_plugin_admin_hello", - "project_link": "nonebot-plugin-admin-hello", - "display_name": "多功能简易群管", - "homepage": "https://github.com/HuYihe2008/nonebot_plugin_manager", - "pypi_version": "0.6.5.8", - "pypi_create": true, - "pypi_run": false, - "git_hash": "ea0a47d", - "git_create": true, - "git_run": false, - "last_seen": "767b6a9" - }, - "nonebot_plugin_game_collection": { - "_runtime_latest": "2.3.1", - "first_seen": "0620bec", - "module_name": "nonebot_plugin_game_collection", - "project_link": "nonebot_plugin_game_collection", - "display_name": "小游戏合集", - "homepage": "https://github.com/KarisAya/nonebot_plugin_game_collection", - "pypi_version": "3.0.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "c4c9b64", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-drawer": { - "_runtime_latest": "2.3.1", - "first_seen": "96b0a86", - "module_name": "nonebot_plugin_drawer", - "project_link": "nonebot-plugin-drawer", - "display_name": "nonebot-plugin-drawer", - "homepage": "https://github.com/CrazyBoyM/nonebot-plugin-drawer", - "pypi_version": "0.4.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "4618a61", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-jrrp-n": { - "_runtime_latest": "2.3.1", - "first_seen": "0f70e97", - "module_name": "nonebot_plugin_jrrp-n", - "project_link": "nonebot-plugin-jrrp-n", - "display_name": "每日人品", - "homepage": "https://github.com/SkyDynamic/nonebot_plugin_jrrp", - "pypi_version": "1.0.1a1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "a76de25", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-moegoe": { - "_runtime_latest": "2.3.1", - "first_seen": "be5ac88", - "module_name": "nonebot_plugin_moegoe", - "project_link": "nonebot-plugin-moegoe", - "display_name": "日韩中 VITS 模型原神拟声", - "homepage": "https://github.com/Yiyuiii/nonebot-plugin-moegoe", - "pypi_version": "0.10.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "52f3b7b", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-pixivbot": { - "_runtime_latest": "2.3.1", - "first_seen": "be459e0", - "module_name": "nonebot_plugin_pixivbot", - "project_link": "nonebot-plugin-pixivbot", - "display_name": "PixivBot", - "homepage": "https://github.com/bot-ssttkkl/nonebot-plugin-pixivbot", - "pypi_version": "2.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "48575e9", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot_plugin_groupmate_waifu": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "ef35266", - "module_name": "nonebot_plugin_groupmate_waifu", - "project_link": "nonebot_plugin_groupmate_waifu", - "display_name": "娶群友", - "homepage": "https://github.com/KarisAya/nonebot_plugin_groupmate_waifu", - "pypi_version": "1.2.4", - "pypi_create": false, - "pypi_run": false, - "git_hash": "eaabe89", - "git_create": false, - "git_run": false, - "last_seen": "558f740" - }, - "nonebot-plugin-treehelp": { - "_runtime_latest": "2.3.1", - "first_seen": "ef35266", - "module_name": "nonebot_plugin_treehelp", - "project_link": "nonebot-plugin-treehelp", - "display_name": "帮助", - "homepage": "https://github.com/he0119/nonebot-plugin-treehelp", - "pypi_version": "0.4.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "a583e69", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-cqsat": { - "_runtime_latest": "2.3.1", - "first_seen": "00af815", - "module_name": "cqsat", - "project_link": "nonebot-plugin-cqsat", - "display_name": "HAM助手", - "homepage": "https://github.com/yzyyz1387/cqsat", - "pypi_version": "0.1.12.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "639f033", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-course": { - "_runtime_latest": "2.3.1", - "first_seen": "00af815", - "module_name": "nonebot_plugin_course", - "project_link": "nonebot-plugin-course", - "display_name": "课表查询", - "homepage": "https://github.com/InariInDream/nonebot_plugin_course", - "pypi_version": "0.1.9", - "pypi_create": true, - "pypi_run": false, - "git_hash": "dc11694", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-groupmanager": { - "_runtime_latest": "2.3.1", - "first_seen": "a101428", - "module_name": "nonebot_plugin_groupmanager", - "project_link": "nonebot-plugin-groupmanager", - "display_name": "多功能群管", - "homepage": "https://github.com/HuYihe2008/nonebot_plugin_groupmanager", - "pypi_version": "1.0.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5af0a31", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot_plugin_flash_silentsave": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "a101428", - "module_name": "nonebot_plugin_flash_silentsave", - "project_link": "nonebot_plugin_flash_silentsave", - "display_name": "保存群聊闪照", - "homepage": "https://github.com/KarisAya/nonebot_plugin_flash_silentsave", - "pypi_version": "1.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1136add", - "git_create": false, - "git_run": false, - "last_seen": "558f740" - }, - "nonebot-plugin-dialectlist": { - "_runtime_latest": "2.3.1", - "first_seen": "135c6e8", - "module_name": "nonebot_plugin_dialectlist", - "project_link": "nonebot-plugin-dialectlist", - "display_name": "话痨排行榜", - "homepage": "https://github.com/X-Skirt-X/nonebot_plugin_dialectlist", - "pypi_version": "1.4.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5a3ac8d", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-offline-mahjong-helper": { - "_runtime_latest": "2.3.1", - "first_seen": "7579878", - "module_name": "nonebot_plugin_offline_mahjong_helper", - "project_link": "nonebot-plugin-offline-mahjong-helper", - "display_name": "面麻小助手", - "homepage": "https://github.com/Nranphy/nonebot_plugin_offline_mahjong_helper", - "pypi_version": "0.2.3", - "pypi_create": true, - "pypi_run": true, - "git_hash": "1b0c44d", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-magiadice": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "e3a4834", - "module_name": "nonebot_plugin_magiadice", - "project_link": "nonebot-plugin-magiadice", - "display_name": "MagiaDice骰娘及TRPGLOG", - "homepage": "https://github.com/sena-nana/nonebot-plugin-magiadice", - "pypi_version": "0.2.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f54d86b", - "git_create": false, - "git_run": false, - "last_seen": "558f740" - }, - "nonebot-plugin-send": { - "_runtime_latest": "2.3.1", - "first_seen": "e3a4834", - "module_name": "nonebot_plugin_send", - "project_link": "nonebot-plugin-send", - "display_name": "反馈及通知", - "homepage": "https://github.com/sena-nana/nonebot-plugin-send", - "pypi_version": "0.1.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "213f498", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-ykt": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "60ab931", - "module_name": "nonebot-plugin-ykt", - "project_link": "nonebot-plugin-ykt", - "display_name": "雨课堂自动签到", - "homepage": "https://github.com/sena-nana/nonebot-plugin-ykt", - "pypi_version": "0.1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1b20c97", - "git_create": true, - "git_run": false, - "last_seen": "558f740" - }, - "nonebot-plugin-todo-nlp": { - "_runtime_latest": "2.3.1", - "first_seen": "c1faf68", - "module_name": "nonebot_plugin_todo_nlp", - "project_link": "nonebot-plugin-todo-nlp", - "display_name": "自识别todo", - "homepage": "https://github.com/CofinCup/nonebot-plugin-todo-nlp", - "pypi_version": "0.1.9", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1ad2858", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-wordsnorote": { - "_runtime_latest": "2.3.1", - "first_seen": "31c3eb8", - "module_name": "nonebot_plugin_wordsnorote", - "project_link": "nonebot-plugin-wordsnorote", - "display_name": "不背单词", - "homepage": "https://github.com/GC-ZF/nonebot_plugin_wordsnorote", - "pypi_version": "0.0.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "6d52395", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-CyberSensoji": { - "_runtime_latest": "2.3.1", - "first_seen": "c76f492", - "module_name": "nonebot_plugin_CyberSensoji", - "project_link": "nonebot-plugin-CyberSensoji", - "display_name": "赛博浅草寺", - "homepage": "https://github.com/Raidenneox/nonebot_plugin_CyberSensoji", - "pypi_version": "0.0.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "d242cfb", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-xiuxian": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "c76f492", - "module_name": "nonebot_plugin_xiuxian", - "project_link": "nonebot-plugin-xiuxian", - "display_name": "修仙模拟器", - "homepage": "https://github.com/s52047qwas/nonebot_plugin_xiuxian", - "pypi_version": "0.4.33", - "pypi_create": false, - "pypi_run": false, - "git_hash": "92e5cf1", - "git_create": false, - "git_run": false, - "last_seen": "558f740" - }, - "nonebot-plugin-gspanel": { - "_runtime_latest": "2.3.1", - "first_seen": "f1aec4e", - "module_name": "nonebot_plugin_gspanel", - "project_link": "nonebot-plugin-gspanel", - "display_name": "原神角色展柜查询", - "homepage": "https://github.com/monsterxcn/nonebot-plugin-gspanel", - "pypi_version": "0.2.25", - "pypi_create": true, - "pypi_run": true, - "git_hash": "292d2b6", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-mcqq-mcrcon": { - "_runtime_latest": "2.0.0rc4", - "first_seen": "f1aec4e", - "module_name": "nonebot_plugin_mcqq_mcrcon", - "project_link": "nonebot-plugin-mcqq-mcrcon", - "display_name": "MC_QQ_MCRcon", - "homepage": "https://github.com/17TheWord/nonebot-plugin-mcqq", - "pypi_version": "1.1.5.post2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1fccdc1", - "git_create": true, - "git_run": false, - "last_seen": "dc0aea9" - }, - "nonebot-plugin-gsmaterial": { - "_runtime_latest": "2.3.1", - "first_seen": "f87a38a", - "module_name": "nonebot_plugin_gsmaterial", - "project_link": "nonebot-plugin-gsmaterial", - "display_name": "原神每日材料查询", - "homepage": "https://github.com/monsterxcn/nonebot-plugin-gsmaterial", - "pypi_version": "0.2.7", - "pypi_create": true, - "pypi_run": false, - "git_hash": "737797b", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-mystool": { - "_runtime_latest": "2.3.1", - "first_seen": "b051320", - "module_name": "nonebot_plugin_mystool", - "project_link": "nonebot-plugin-mystool", - "display_name": "米游社小助手插件\n", - "homepage": "https://github.com/Ljzd-PRO/nonebot-plugin-mystool", - "pypi_version": "2.5.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "505b184", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-warframe": { - "_runtime_latest": "2.3.1", - "first_seen": "d281ec5", - "module_name": "nonebot_plugin_warframe", - "project_link": "nonebot-plugin-warframe", - "display_name": "星际战甲事件查询", - "homepage": "https://github.com/17TheWord/nonebot-plugin-warframe", - "pypi_version": "0.0.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5970b0b", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot2-plugin-eth-terminal": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "672f2ce", - "module_name": "ETH_Terminal", - "project_link": "nonebot2-plugin-eth-terminal", - "display_name": "查询ETH合并日期", - "homepage": "https://github.com/Sclock/nonebot2_plugin_eth_terminal", - "pypi_version": "0.0.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "eeeb4c2", - "git_create": true, - "git_run": false, - "last_seen": "558f740" - }, - "nonebot-plugin-mcqq-server": { - "_runtime_latest": "2.3.1", - "first_seen": "179d710", - "module_name": "nonebot_plugin_mcqq_server", - "project_link": "nonebot-plugin-mcqq-server", - "display_name": "Minecraft Server 聊天同步", - "homepage": "https://github.com/KarisAya/nonebot_plugin_mcqq_server", - "pypi_version": "1.0.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "139f904", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "git+https://github.com/KimigaiiWuyi/GenshinUID.git@nonebot2-beta1#egg=GenshinUID": { - "_runtime_latest": "2.0.0rc4", - "first_seen": "20f144b", - "module_name": "GenshinUID", - "project_link": "git+https://github.com/KimigaiiWuyi/GenshinUID.git@nonebot2-beta1#egg=GenshinUID", - "display_name": "GenshinUID", - "homepage": "https://github.com/KimigaiiWuyi/GenshinUID/tree/nonebot2-beta1", - "pypi_version": null, - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "716a047" - }, - "nonebot_plugin_RealESRGAN": { - "_runtime_latest": "2.3.1", - "first_seen": "7bedf7c", - "module_name": "nonebot_plugin_RealESRGAN", - "project_link": "nonebot_plugin_RealESRGAN", - "display_name": "图像超分辨率重建", - "homepage": "https://github.com/ppxxxg22/nonebot_plugin_RealESRGAN", - "pypi_version": "0.2.8", - "pypi_create": true, - "pypi_run": false, - "git_hash": "c91958a", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-ayaka": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "f6d189d", - "module_name": "ayaka", - "project_link": "nonebot-plugin-ayaka", - "display_name": "ayaka - 为群聊插件开发提供状态机支持", - "homepage": "https://bridgel.github.io/ayaka_doc/", - "pypi_version": "1.0.2", - "pypi_create": false, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "b289065" - }, - "nonebot-plugin-wolf-kill": { - "_runtime_latest": "2.3.1", - "first_seen": "13245cb", - "module_name": "nonebot-plugin-wolf-kill", - "project_link": "nonebot-plugin-wolf-kill", - "display_name": "狼人杀插件", - "homepage": "https://github.com/AbCooly/nonebot_plugin_wolf_kill", - "pypi_version": "2.0.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "470fa7a", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-iot": { - "_runtime_latest": "2.3.1", - "first_seen": "248af2a", - "module_name": "iot", - "project_link": "nonebot-plugin-iot", - "display_name": "nonebot物联网插件", - "homepage": "https://github.com/littlebutt/nonebot-plugin-iot", - "pypi_version": "1.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "fa8205e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bwiki-navigator": { - "_runtime_latest": "2.3.1", - "first_seen": "a0df535", - "module_name": "nonebot_plugin_bwiki_navigator", - "project_link": "nonebot-plugin-bwiki-navigator", - "display_name": "Bwiki Navigator", - "homepage": "https://github.com/xzhouqd/nonebot-plugin-bwiki-navigator", - "pypi_version": "0.2.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "de1a1d1", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bottle": { - "_runtime_latest": "2.3.1", - "first_seen": "b249802", - "module_name": "nonebot_plugin_bottle", - "project_link": "nonebot-plugin-bottle", - "display_name": "漂流瓶", - "homepage": "https://github.com/Todysheep/nonebot_plugin_bottle", - "pypi_version": "2.0.0.9", - "pypi_create": true, - "pypi_run": true, - "git_hash": "3e46a3f", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-tts-gal": { - "_runtime_latest": "2.3.1", - "first_seen": "57ef19a", - "module_name": "nonebot_plugin_tts_gal", - "project_link": "nonebot-plugin-tts-gal", - "display_name": "vits角色语音合成本地化", - "homepage": "https://github.com/dpm12345/nonebot_plugin_tts_gal", - "pypi_version": "0.3.11", - "pypi_create": true, - "pypi_run": false, - "git_hash": "bde3b3a", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-alicdk-get": { - "_runtime_latest": "2.3.1", - "first_seen": "57ef19a", - "module_name": "nonebot_plugin_alicdk_get", - "project_link": "nonebot-plugin-alicdk-get", - "display_name": "阿里云盘福利码自动兑换", - "homepage": "https://github.com/Kaguya233qwq/nonebot_plugin_alicdk_get", - "pypi_version": "1.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "44f9ad6", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-picstatus": { - "_runtime_latest": "2.3.1", - "first_seen": "84c24b0", - "module_name": "nonebot_plugin_picstatus", - "project_link": "nonebot-plugin-picstatus", - "display_name": "PicStatus", - "homepage": "https://github.com/lgc-NB2Dev/nonebot-plugin-picstatus", - "pypi_version": "2.0.0.post4", - "pypi_create": true, - "pypi_run": true, - "git_hash": "ba92700", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-tuling": { - "_runtime_latest": "2.3.1", - "first_seen": "75470fe", - "module_name": "nonebot_plugin_tuling", - "project_link": "nonebot-plugin-tuling", - "display_name": "图灵机器人", - "homepage": "https://github.com/Matrix-King-Studio/nonebot_plugin_tuling", - "pypi_version": "0.0.16", - "pypi_create": true, - "pypi_run": false, - "git_hash": "19699cf", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot_plugin_makemidi": { - "_runtime_latest": "2.3.1", - "first_seen": "ba5c030", - "module_name": "nonebot_plugin_makemidi", - "project_link": "nonebot_plugin_makemidi", - "display_name": "在线编曲", - "homepage": "https://github.com/RandomEnch/nonebot_plugin_makemidi", - "pypi_version": "0.1.12", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3056897", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-ocr": { - "_runtime_latest": "2.3.1", - "first_seen": "ba5c030", - "module_name": "nonebot_plugin_ocr", - "project_link": "nonebot-plugin-ocr", - "display_name": "文字识别", - "homepage": "https://github.com/NewYearPrism/nonebot-plugin-ocr", - "pypi_version": "0.3.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "41c3fde", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-listener": { - "_runtime_latest": "2.3.1", - "first_seen": "e9bd81d", - "module_name": "nonebot_plugin_listener", - "project_link": "nonebot-plugin-listener", - "display_name": "监听者", - "homepage": "https://github.com/AbCooly/nonebot_plugin_listener", - "pypi_version": "1.0.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "701da81", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-BiliRequestAll": { - "_runtime_latest": "2.3.1", - "first_seen": "0bcc427", - "module_name": "nonebot_plugin_BiliRequestAll", - "project_link": "nonebot-plugin-BiliRequestAll", - "display_name": "BiliRequestAll", - "homepage": "https://github.com/Shadow403/nonebot_plugin_BiliRequestAll", - "pypi_version": "0.2.8", - "pypi_create": true, - "pypi_run": false, - "git_hash": "abc5c6f", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-masiro": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "77aa16c", - "module_name": "nonebot-plugin-masiro", - "project_link": "nonebot-plugin-masiro", - "display_name": "真白萌自动签到", - "homepage": "https://github.com/Ankhyty/nonebot-plugin-masiro", - "pypi_version": "1.0.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "8f870c8", - "git_create": true, - "git_run": false, - "last_seen": "558f740" - }, - "nonebot-plugin-russian-ban": { - "_runtime_latest": "2.3.1", - "first_seen": "138fb45", - "module_name": "nonebot_plugin_russian_ban", - "project_link": "nonebot-plugin-russian-ban", - "display_name": "轮盘禁言小游戏", - "homepage": "https://github.com/KarisAya/nonebot_plugin_russian_ban", - "pypi_version": "1.0.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "96c42b1", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-monitor": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "ab227ee", - "module_name": "nonebot_plugin_monitor", - "project_link": "nonebot-plugin-monitor", - "display_name": "监测群事件", - "homepage": "https://github.com/cjladmin/nonebot_plugin_monitor", - "pypi_version": "0.0.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "35a0bfc", - "git_create": true, - "git_run": false, - "last_seen": "558f740" - }, - "nonebot-plugin-ygo-trade": { - "_runtime_latest": "2.3.1", - "first_seen": "ebc5a3c", - "module_name": "nonebot_plugin_ygo_trade", - "project_link": "nonebot-plugin-ygo-trade", - "display_name": "游戏王小程序查价", - "homepage": "https://github.com/Kaguyaya/nonebot_plugin_ygo_trade", - "pypi_version": "1.0.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "10ec7a5", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-novelai": { - "_runtime_latest": "2.3.1", - "first_seen": "3e3d6f9", - "module_name": "nonebot_plugin_novelai", - "project_link": "nonebot-plugin-novelai", - "display_name": "novelai", - "homepage": "https://github.com/sena-nana/nonebot-plugin-novelai", - "pypi_version": "0.5.9", - "pypi_create": true, - "pypi_run": false, - "git_hash": "7a387d5", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-aidraw": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "67b9652", - "module_name": "nonebot_plugin_aidraw", - "project_link": "nonebot-plugin-aidraw", - "display_name": "AI绘图", - "homepage": "https://github.com/A-kirami/nonebot-plugin-aidraw", - "pypi_version": "0.7.1", - "pypi_create": false, - "pypi_run": false, - "git_hash": "fb27989", - "git_create": true, - "git_run": true, - "last_seen": "081d212" - }, - "nonebot-plugin-bnhhsh": { - "_runtime_latest": "2.0.0rc3", - "first_seen": "512c66c", - "module_name": "nonebot_plugin_bnhhsh", - "project_link": "nonebot-plugin-bnhhsh", - "display_name": "bnhhsh -「不能好好说话!」", - "homepage": "https://github.com/lgc2333/nonebot-plugin-bnhhsh", - "pypi_version": "0.1.2.post1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "ad866ff", - "git_create": true, - "git_run": false, - "last_seen": "3a14203" - }, - "nonebot-plugin-ayaka-games": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "eaa3dbd", - "module_name": "ayaka_games", - "project_link": "nonebot-plugin-ayaka-games", - "display_name": "ayaka衍生插件 - 小游戏合集", - "homepage": "https://github.com/bridgeL/nonebot-plugin-ayaka-games", - "pypi_version": "0.5.7", - "pypi_create": false, - "pypi_run": false, - "git_hash": "cc9f34a", - "git_create": true, - "git_run": false, - "last_seen": "b289065" - }, - "nonebot-plugin-ayaka-who-is-suspect": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "1ad1e06", - "module_name": "ayaka_who_is_suspect", - "project_link": "nonebot-plugin-ayaka-who-is-suspect", - "display_name": "ayaka衍生插件 - 谁是卧底", - "homepage": "https://github.com/bridgeL/nonebot-plugin-ayaka-who-is-suspect", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": true, - "git_hash": "9f33a99", - "git_create": true, - "git_run": false, - "last_seen": "58f82bf" - }, - "nonebot-plugin-ayaka-timezone": { - "_runtime_latest": "2.3.1", - "first_seen": "5566777", - "module_name": "ayaka_timezone", - "project_link": "nonebot-plugin-ayaka-timezone", - "display_name": "ayaka衍生插件 - 时区助手", - "homepage": "https://github.com/bridgeL/nonebot-plugin-ayaka-timezone", - "pypi_version": "0.4.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "be39140", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-ayaka-prevent-bad-words": { - "_runtime_latest": "2.3.1", - "first_seen": "6ae8911", - "module_name": "ayaka_prevent_bad_words", - "project_link": "nonebot-plugin-ayaka-prevent-bad-words", - "display_name": "ayaka衍生插件 - 坏词撤回", - "homepage": "https://github.com/bridgeL/nonebot-plugin-ayaka-prevent-bad-words", - "pypi_version": "0.4.2", - "pypi_create": true, - "pypi_run": true, - "git_hash": "7fef71e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-savor": { - "_runtime_latest": "2.3.1", - "first_seen": "bdc9e44", - "module_name": "nonebot_plugin_savor", - "project_link": "nonebot-plugin-savor", - "display_name": "二次元图像鉴赏", - "homepage": "https://github.com/A-kirami/nonebot-plugin-savor", - "pypi_version": "0.2.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "43ece5f", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-kfcrazy": { - "_runtime_latest": "2.3.1", - "first_seen": "876acf3", - "module_name": "nonebot_plugin_kfcrazy", - "project_link": "nonebot-plugin-kfcrazy", - "display_name": "kfcrazy", - "homepage": "https://github.com/Kaguya233qwq/nonebot_plugin_kfcrazy", - "pypi_version": "2.0.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5b8247a", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-random": { - "_runtime_latest": "2.3.1", - "first_seen": "f684b96", - "module_name": "nonebot-plugin-random", - "project_link": "nonebot-plugin-random", - "display_name": "通用抽图/语音", - "homepage": "https://github.com/jcjrobert/nonebot-plugin-random", - "pypi_version": "0.0.9", - "pypi_create": true, - "pypi_run": false, - "git_hash": "6e35e15", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-sqlalchemy": { - "_runtime_latest": "2.3.1", - "first_seen": "ed25e7a", - "module_name": "nonebot_plugin_sqlalchemy", - "project_link": "nonebot-plugin-sqlalchemy", - "display_name": "NoneBot2 SQLAlchemy 插件", - "homepage": "https://github.com/bot-ssttkkl/nonebot-plugin-sqlalchemy", - "pypi_version": "0.2.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "b7e7438", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-blacklist": { - "_runtime_latest": "2.3.1", - "first_seen": "bfa4a07", - "module_name": "nonebot_plugin_blacklist", - "project_link": "nonebot-plugin-blacklist", - "display_name": "黑名单", - "homepage": "https://github.com/tkgs0/nonebot-plugin-blacklist", - "pypi_version": "1.3.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "701a2b1", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-antiinsult": { - "_runtime_latest": "2.3.1", - "first_seen": "a70c37d", - "module_name": "nonebot_plugin_antiinsult", - "project_link": "nonebot-plugin-antiinsult", - "display_name": "反嘴臭", - "homepage": "https://github.com/tkgs0/nonebot-plugin-antiinsult", - "pypi_version": "0.6.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9e744a3", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-oddtext": { - "_runtime_latest": "2.3.1", - "first_seen": "a70c37d", - "module_name": "nonebot_plugin_oddtext", - "project_link": "nonebot-plugin-oddtext", - "display_name": "文本生成器", - "homepage": "https://github.com/noneplugin/nonebot-plugin-oddtext", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": true, - "git_hash": "0e28825", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-mahjong-scoreboard": { - "_runtime_latest": "2.3.1", - "first_seen": "a70c37d", - "module_name": "nonebot_plugin_mahjong_scoreboard", - "project_link": "nonebot-plugin-mahjong-scoreboard", - "display_name": "日麻寄分器", - "homepage": "https://github.com/ssttkkl/nonebot-plugin-mahjong-scoreboard", - "pypi_version": "0.6.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "23f3437", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-cartoon": { - "_runtime_latest": "2.3.1", - "first_seen": "36e5b81", - "module_name": "nonebot_plugin_cartoon", - "project_link": "nonebot-plugin-cartoon", - "display_name": "二次元化图像", - "homepage": "https://github.com/A-kirami/nonebot-plugin-cartoon", - "pypi_version": "0.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "32efa66", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-super-resolution": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "36e5b81", - "module_name": "nonebot_plugin_super_resolution", - "project_link": "nonebot-plugin-super-resolution", - "display_name": "图像超分辨率增强", - "homepage": "https://github.com/A-kirami/nonebot-plugin-super-resolution", - "pypi_version": "0.1.1", - "pypi_create": true, - "pypi_run": true, - "git_hash": "0c93051", - "git_create": true, - "git_run": true, - "last_seen": "a930fc0" - }, - "nonebot-plugin-mahjong-utils": { - "_runtime_latest": "2.3.1", - "first_seen": "c1aec63", - "module_name": "nonebot_plugin_mahjong_utils", - "project_link": "nonebot-plugin-mahjong-utils", - "display_name": "麻将小工具", - "homepage": "https://github.com/bot-ssttkkl/nonebot-plugin-mahjong-utils", - "pypi_version": "0.4.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "0fa9771", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-animeres": { - "_runtime_latest": "2.3.1", - "first_seen": "828714a", - "module_name": "nonebot_plugin_animeres", - "project_link": "nonebot-plugin-animeres", - "display_name": "动漫资源插件", - "homepage": "https://github.com/MelodyKnit/nonebot_plugin_animeres", - "pypi_version": "1.0.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "4c39276", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-person": { - "_runtime_latest": "2.3.1", - "first_seen": "e1720d8", - "module_name": "nonebot-plugin-person", - "project_link": "nonebot-plugin-person", - "display_name": "随个人", - "homepage": "https://github.com/jcjrobert/nonebot-plugin-person", - "pypi_version": "0.0.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "36ba666", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-apex-api-query": { - "_runtime_latest": "2.3.1", - "first_seen": "7de8912", - "module_name": "nonebot_plugin_apex_api_query", - "project_link": "nonebot-plugin-apex-api-query", - "display_name": "Apex API Query", - "homepage": "https://github.com/H-xiaoH/nonebot-plugin-apex-api-query", - "pypi_version": "24.1.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "da376fd", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-reborn": { - "_runtime_latest": "2.3.1", - "first_seen": "0bc8a39", - "module_name": "nonebot_plugin_reborn", - "project_link": "nonebot-plugin-reborn", - "display_name": "投胎模拟器", - "homepage": "https://github.com/Aziteee/nonebot_plugin_reborn", - "pypi_version": "0.4", - "pypi_create": true, - "pypi_run": true, - "git_hash": "522641a", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-searchBiliInfo": { - "_runtime_latest": "2.3.1", - "first_seen": "cecc853", - "module_name": "nonebot_plugin_searchBiliInfo", - "project_link": "nonebot-plugin-searchBiliInfo", - "display_name": "b站用户信息查询", - "homepage": "https://github.com/Ikaros-521/nonebot_plugin_searchBiliInfo", - "pypi_version": "1.8.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "db6ba18", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-colab-novelai": { - "_runtime_latest": "2.3.1", - "first_seen": "cecc853", - "module_name": "nonebot_plugin_colab_novelai", - "project_link": "nonebot-plugin-colab-novelai", - "display_name": "Colab-NovelAI", - "homepage": "https://github.com/EtherLeaF/nonebot-plugin-colab-novelai", - "pypi_version": "0.2.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "6326e78", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-sky": { - "_runtime_latest": "2.3.1", - "first_seen": "f1525c1", - "module_name": "nonebot_plugin_sky", - "project_link": "nonebot-plugin-sky", - "display_name": "Sky光遇", - "homepage": "https://github.com/Kaguya233qwq/nonebot_plugin_sky", - "pypi_version": "2.2.12", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5be674b", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-zyk-novelai": { - "_runtime_latest": "2.3.1", - "first_seen": "c783ab5", - "module_name": "nonebot_plugin_zyk_novelai", - "project_link": "nonebot-plugin-zyk-novelai", - "display_name": "免费版NovelAI生图插件", - "homepage": "https://github.com/ZYKsslm/nonebot_plugin_zyk_novelai", - "pypi_version": "2.9.5.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "d3f07e2", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-repeep": { - "_runtime_latest": "2.3.1", - "first_seen": "d83866f", - "module_name": "nonebot_plugin_repeep", - "project_link": "nonebot-plugin-repeep", - "display_name": "谁在窥屏", - "homepage": "https://github.com/p0ise/nonebot-plugin-repeep", - "pypi_version": "0.1.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "8d0f310", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-gscode": { - "_runtime_latest": "2.3.1", - "first_seen": "a758e6f", - "module_name": "nonebot_plugin_gscode", - "project_link": "nonebot-plugin-gscode", - "display_name": "原神前瞻直播兑换码查询", - "homepage": "https://github.com/monsterxcn/nonebot-plugin-gscode", - "pypi_version": "0.2.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "82dead9", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-note": { - "_runtime_latest": "2.3.1", - "first_seen": "6c27ec7", - "module_name": "nonebot_plugin_note", - "project_link": "nonebot-plugin-note", - "display_name": "记事本", - "homepage": "https://github.com/Passerby-D/nonebot_plugin_note", - "pypi_version": "0.2.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f5d92d0", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bilibili-image": { - "_runtime_latest": "2.3.1", - "first_seen": "5006cf7", - "module_name": "nonebot-plugin-bilibili-image", - "project_link": "nonebot-plugin-bilibili-image", - "display_name": "b站图片下载", - "homepage": "https://github.com/jcjrobert/nonebot-plugin-bilibili-image", - "pypi_version": "0.0.2.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "00b4990", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-trace-moe": { - "_runtime_latest": "2.3.1", - "first_seen": "665de1d", - "module_name": "nonebot_plugin_trace_moe", - "project_link": "nonebot-plugin-trace-moe", - "display_name": "动画截图追溯来源", - "homepage": "https://github.com/Ikaros-521/nonebot_plugin_trace_moe", - "pypi_version": "0.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "2ebbbfe", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-zyk-music": { - "_runtime_latest": "2.3.1", - "first_seen": "df7e8f6", - "module_name": "nonebot_plugin_zyk_music", - "project_link": "nonebot-plugin-zyk-music", - "display_name": "免费快捷点歌插件", - "homepage": "https://github.com/ZYKsslm/nonebot_plugin_zyk_music", - "pypi_version": "0.1.7.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9865906", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-chatgpt": { - "_runtime_latest": "2.3.1", - "first_seen": "433b50c", - "module_name": "nonebot_plugin_chatgpt", - "project_link": "nonebot-plugin-chatgpt", - "display_name": "ChatGPT", - "homepage": "https://github.com/A-kirami/nonebot-plugin-chatgpt", - "pypi_version": "0.7.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "44c6aaa", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-majsoul": { - "_runtime_latest": "2.3.1", - "first_seen": "9826bc2", - "module_name": "nonebot_plugin_majsoul", - "project_link": "nonebot-plugin-majsoul", - "display_name": "雀魂查询", - "homepage": "https://github.com/bot-ssttkkl/nonebot-plugin-majsoul", - "pypi_version": "0.2.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5dfde18", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-remove-bg": { - "_runtime_latest": "2.3.1", - "first_seen": "6bb15f6", - "module_name": "nonebot_plugin_remove_bg", - "project_link": "nonebot-plugin-remove-bg", - "display_name": "图片背景消除", - "homepage": "https://github.com/Ikaros-521/nonebot_plugin_remove_bg", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9ed5743", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-broadcast": { - "_runtime_latest": "2.3.1", - "first_seen": "b25de93", - "module_name": "nonebot_plugin_broadcast", - "project_link": "nonebot-plugin-broadcast", - "display_name": "全群广播", - "homepage": "https://github.com/A-kirami/nonebot-plugin-broadcast", - "pypi_version": "0.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "d1652f1", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-exchangerate": { - "_runtime_latest": "2.3.1", - "first_seen": "cd9e30b", - "module_name": "nonebot_plugin_exchangerate", - "project_link": "nonebot-plugin-exchangerate", - "display_name": "汇率换算", - "homepage": "https://github.com/A-kirami/nonebot-plugin-exchangerate", - "pypi_version": "0.1.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "0ef6239", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-access-control": { - "_runtime_latest": "2.3.1", - "first_seen": "b6cd042", - "module_name": "nonebot_plugin_access_control", - "project_link": "nonebot-plugin-access-control", - "display_name": "权限控制", - "homepage": "https://github.com/bot-ssttkkl/nonebot-plugin-access-control", - "pypi_version": "1.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e6717d2", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-multi-chatgpt": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "8ec1552", - "module_name": "nonebot_plugin_multi_chatgpt", - "project_link": "nonebot-plugin-multi-chatgpt", - "display_name": "multi-ChatGPT", - "homepage": "https://github.com/chrisyy2003/nonebot-plugin-multi-chatgpt", - "pypi_version": "3.0.0", - "pypi_create": false, - "pypi_run": false, - "git_hash": "c5afb65", - "git_create": true, - "git_run": false, - "last_seen": "558f740" - }, - "nonebot-plugin-colormind": { - "_runtime_latest": "2.3.1", - "first_seen": "6711a84", - "module_name": "nonebot_plugin_colormind", - "project_link": "nonebot-plugin-colormind", - "display_name": "随机配色方案", - "homepage": "https://github.com/Ikaros-521/nonebot_plugin_colormind", - "pypi_version": "0.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "709865e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-idiom": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "44ca4f7", - "module_name": "nonebot_plugin_idiom", - "project_link": "nonebot-plugin-idiom", - "display_name": "nonebot_plugin_idiom", - "homepage": "https://github.com/wsdtl/nonebot_plugin_Idiom", - "pypi_version": "0.1.4", - "pypi_create": false, - "pypi_run": false, - "git_hash": "99236de", - "git_create": true, - "git_run": false, - "last_seen": "558f740" - }, - "nonebot-plugin-abstain-diary": { - "_runtime_latest": "2.3.1", - "first_seen": "60733c9", - "module_name": "nonebot_plugin_abstain_diary", - "project_link": "nonebot-plugin-abstain-diary", - "display_name": "戒x打卡日记", - "homepage": "https://github.com/Ikaros-521/nonebot_plugin_abstain_diary", - "pypi_version": "0.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "099f0c5", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-backup": { - "_runtime_latest": "2.3.1", - "first_seen": "60733c9", - "module_name": "nonebot_plugin_backup", - "project_link": "nonebot-plugin-backup", - "display_name": "QQ群文件备份", - "homepage": "https://github.com/Yuelioi/nonebot-plugin-backup", - "pypi_version": "1.0.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e42cbfe", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-kuma-san": { - "_runtime_latest": "2.3.1", - "first_seen": "5a49d1e", - "module_name": "nonebot_plugin_kuma_san", - "project_link": "nonebot-plugin-kuma-san", - "display_name": "熊老板", - "homepage": "https://github.com/ReiiNoki/nonebot-plugin-kuma-san", - "pypi_version": "1.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "d7f3a90", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-gpt3": { - "_runtime_latest": "2.3.1", - "first_seen": "932f50d", - "module_name": "nonebot_plugin_gpt3", - "project_link": "nonebot-plugin-gpt3", - "display_name": "GPT3", - "homepage": "https://github.com/chrisyy2003/nonebot-plugin-gpt3", - "pypi_version": "1.1.9", - "pypi_create": true, - "pypi_run": false, - "git_hash": "2da2aaf", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-ikun-evolution": { - "_runtime_latest": "2.3.1", - "first_seen": "827d8fb", - "module_name": "nonebot_plugin_ikun_evolution", - "project_link": "nonebot-plugin-ikun-evolution", - "display_name": "只因进化录", - "homepage": "https://github.com/RShock/nonebot_plugin_ikun_evolution", - "pypi_version": "1.0.12", - "pypi_create": true, - "pypi_run": false, - "git_hash": "715d08c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-random-ban": { - "_runtime_latest": "2.3.1", - "first_seen": "827d8fb", - "module_name": "nonebot_plugin_random_ban", - "project_link": "nonebot-plugin-random-ban", - "display_name": "随机禁言", - "homepage": "https://github.com/Ikaros-521/nonebot_plugin_random_ban", - "pypi_version": "0.2.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "bffcb0c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-antirecall": { - "_runtime_latest": "2.3.1", - "first_seen": "2b0973c", - "module_name": "nonebot_plugin_antirecall", - "project_link": "nonebot-plugin-antirecall", - "display_name": "防撤回", - "homepage": "https://github.com/Jerry080801/nonebot-plugin-antirecall/", - "pypi_version": "0.1.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1ed7e71", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-javamc-status": { - "_runtime_latest": "2.0.0rc2", - "first_seen": "73d1e5d", - "module_name": "nonebot_plugin_javamc_status", - "project_link": "nonebot-plugin-javamc-status", - "display_name": "JAVA MC服务器信息查询", - "homepage": "https://github.com/nikissXI/nonebot_plugins/tree/main/nonebot_plugin_javamc_status", - "pypi_version": null, - "pypi_create": false, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "081d212" - }, - "nonebot-plugin-no-repeat": { - "_runtime_latest": "2.3.1", - "first_seen": "d1da0be", - "module_name": "nonebot_plugin_no_repeat", - "project_link": "nonebot-plugin-no-repeat", - "display_name": "不要复读", - "homepage": "https://github.com/bridgeL/nonebot-plugin-no-repeat", - "pypi_version": "0.0.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "79ce1af", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bfchat": { - "_runtime_latest": "2.3.1", - "first_seen": "e5ad15d", - "module_name": "nonebot_plugin_bfchat", - "project_link": "nonebot-plugin-bfchat", - "display_name": "战地群聊天插件", - "homepage": "https://github.com/050644zf/nonebot-plugin-bfchat", - "pypi_version": "0.3.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "8467757", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-summon": { - "_runtime_latest": "2.3.1", - "first_seen": "e5ad15d", - "module_name": "nonebot_plugin_summon", - "project_link": "nonebot-plugin-summon", - "display_name": "群友召唤术", - "homepage": "https://github.com/zhulinyv/nonebot_plugin_summon", - "pypi_version": "2.5.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "58bb4b1", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-ping": { - "_runtime_latest": "2.3.1", - "first_seen": "c9dc6e6", - "module_name": "nonebot_plugin_ping", - "project_link": "nonebot-plugin-ping", - "display_name": "Ping", - "homepage": "https://github.com/zhulinyv/nonebot_plugin_ping", - "pypi_version": "1.7.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "59a2a4e", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot_plugin_face2cartoonpic": { - "_runtime_latest": "2.3.1", - "first_seen": "8045420", - "module_name": "nonebot_plugin_face2cartoonpic", - "project_link": "nonebot_plugin_face2cartoonpic", - "display_name": "腾讯云图像变换", - "homepage": "https://github.com/ANGJustinl/nonebot_plugin_face2cartoonpic_main", - "pypi_version": "0.3.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "41750f0", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-servicestate": { - "_runtime_latest": "2.3.1", - "first_seen": "125bcb9", - "module_name": "nonebot_plugin_servicestate", - "project_link": "nonebot-plugin-servicestate", - "display_name": "服务状态查询", - "homepage": "https://github.com/OREOCODEDEV/nonebot-plugin-servicestate", - "pypi_version": "0.2.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "45f7371", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-animalVoice": { - "_runtime_latest": "2.3.1", - "first_seen": "f0bebb6", - "module_name": "nonebot_plugin_animalVoice", - "project_link": "nonebot-plugin-animalVoice", - "display_name": "AnimalVoice_Convert", - "homepage": "https://github.com/ANGJustinl/nonebot_plugin_animalVoice/", - "pypi_version": "0.2.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "940af0a", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-ayaka-scan-cmd": { - "_runtime_latest": "2.3.1", - "first_seen": "53dded5", - "module_name": "nonebot_plugin_ayaka_scan_cmd", - "project_link": "nonebot-plugin-ayaka-scan-cmd", - "display_name": "命令探查", - "homepage": "https://github.com/bridgeL/nonebot-plugin-ayaka-scan-cmd", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "0c12b42", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-HttpCat": { - "_runtime_latest": "2.3.1", - "first_seen": "f13c1cc", - "module_name": "nonebot_plugin_HttpCat", - "project_link": "nonebot-plugin-HttpCat", - "display_name": "HttpCat🐱猫猫http状态码", - "homepage": "https://github.com/ANGJustinl/nonebot_plugin_HttpCat", - "pypi_version": "0.0.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "ef10880", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-revoke": { - "_runtime_latest": "2.3.1", - "first_seen": "f13c1cc", - "module_name": "nonebot_plugin_revoke", - "project_link": "nonebot-plugin-revoke", - "display_name": "主动消息撤回", - "homepage": "https://github.com/ssttkkl/nonebot-plugin-revoke", - "pypi_version": "0.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5ba3bc0", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-setu-customization": { - "_runtime_latest": "2.3.1", - "first_seen": "b60035f", - "module_name": "nonebot_plugin_setu_customization", - "project_link": "nonebot-plugin-setu-customization", - "display_name": "setu_customization", - "homepage": "https://github.com/nikissXI/nonebot_plugins/tree/main/nonebot_plugin_setu_customization", - "pypi_version": "1.7.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-l4d2-server": { - "_runtime_latest": "2.3.1", - "first_seen": "b60035f", - "module_name": "nonebot_plugin_l4d2_server", - "project_link": "nonebot-plugin-l4d2-server", - "display_name": "求生之路小助手", - "homepage": "https://github.com/Agnes4m/nonebot_plugin_l4d2_server", - "pypi_version": "0.6.6", - "pypi_create": true, - "pypi_run": true, - "git_hash": "378eeba", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-learning-chat": { - "_runtime_latest": "2.3.1", - "first_seen": "d5ec31d", - "module_name": "nonebot_plugin_learning_chat", - "project_link": "nonebot-plugin-learning-chat", - "display_name": "群聊学习", - "homepage": "https://github.com/CMHopeSunshine/nonebot-plugin-learning-chat", - "pypi_version": "0.4.0", - "pypi_create": true, - "pypi_run": true, - "git_hash": "ee79cc6", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-couplets": { - "_runtime_latest": "2.3.1", - "first_seen": "d5ec31d", - "module_name": "nonebot_plugin_couplets", - "project_link": "nonebot-plugin-couplets", - "display_name": "对对联", - "homepage": "https://github.com/CMHopeSunshine/nonebot-plugin-couplets", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "8a434b7", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-Imagelabels": { - "_runtime_latest": "2.3.1", - "first_seen": "ace053f", - "module_name": "nonebot_plugin_Imagelabels", - "project_link": "nonebot-plugin-Imagelabels", - "display_name": "图像标注", - "homepage": "https://github.com/istrashguy/nonebot_plugin_Imagelabels", - "pypi_version": "1.0.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "bf83fa7", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-cloudsignx": { - "_runtime_latest": "2.3.1", - "first_seen": "ace053f", - "module_name": "nonebot_plugin_cloudsignx", - "project_link": "nonebot-plugin-cloudsignx", - "display_name": "云签到", - "homepage": "https://github.com/Monarchdos/nonebot_plugin_cloudsign", - "pypi_version": "2.0.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "52c619e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-imgexploration": { - "_runtime_latest": "2.3.1", - "first_seen": "ace053f", - "module_name": "nonebot_plugin_imgexploration", - "project_link": "nonebot-plugin-imgexploration", - "display_name": "查找图片出处", - "homepage": "https://github.com/cpuopt/nonebot_plugin_imgexploration", - "pypi_version": "0.3.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "b47a9fd", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-hypixel": { - "_runtime_latest": "2.3.1", - "first_seen": "d737679", - "module_name": "nonebot_plugin_hypixel", - "project_link": "nonebot-plugin-hypixel", - "display_name": "Hypixel数据查询", - "homepage": "https://github.com/SkyDynamic/nonebot_plugin_hypixel", - "pypi_version": "1.0.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3b18f92", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-nowtime": { - "_runtime_latest": "2.3.1", - "first_seen": "bbaba1c", - "module_name": "nonebot_plugin_nowtime", - "project_link": "nonebot-plugin-nowtime", - "display_name": "整点报时", - "homepage": "https://github.com/Cvandia/nonebot_plugin_nowtime", - "pypi_version": "0.1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "67899b0", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-cave": { - "_runtime_latest": "2.3.1", - "first_seen": "afd13ed", - "module_name": "nonebot_plugin_cave", - "project_link": "nonebot-plugin-cave", - "display_name": "回声洞", - "homepage": "https://github.com/hmzz804/nonebot_plugin_cave", - "pypi_version": "1.1.12", - "pypi_create": true, - "pypi_run": false, - "git_hash": "de233ab", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-xingzuo": { - "_runtime_latest": "2.3.1", - "first_seen": "afd13ed", - "module_name": "nonebot_plugin_xingzuo", - "project_link": "nonebot-plugin-xingzuo", - "display_name": "星座运势", - "homepage": "https://github.com/mengxinyuan638/xingzuo_luck", - "pypi_version": "1.0.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1d1812a", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-BingImage": { - "_runtime_latest": "2.3.1", - "first_seen": "f43c008", - "module_name": "nonebot_plugin_BingImage", - "project_link": "nonebot-plugin-BingImage", - "display_name": "Bing每日图片获取", - "homepage": "https://github.com/ericzhang-debug/nonebot_plugin_BingImage", - "pypi_version": "0.0.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "807a687", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-soup": { - "_runtime_latest": "2.3.1", - "first_seen": "b289065", - "module_name": "nonebot_plugin_soup", - "project_link": "nonebot-plugin-soup", - "display_name": "心灵鸡汤", - "homepage": "https://github.com/Monarchdos/nonebot_plugin_soup", - "pypi_version": "1.0.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "8d5a44c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "ayaka_games": { - "_runtime_latest": "2.3.1", - "first_seen": "fa934a1", - "module_name": "ayaka_games", - "project_link": "ayaka_games", - "display_name": "ayaka小游戏合集", - "homepage": "https://bridgel.github.io/ayaka_games/", - "pypi_version": "0.4.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-yuanshen-notice": { - "_runtime_latest": "2.3.1", - "first_seen": "081d212", - "module_name": "nonebot_plugin_yuanshen_notice", - "project_link": "nonebot-plugin-yuanshen-notice", - "display_name": "原神实时公告", - "homepage": "https://github.com/mengxinyuan638/nonebot_plugin_yuanshen_notice", - "pypi_version": "0.1.7", - "pypi_create": true, - "pypi_run": false, - "git_hash": "4b27131", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-mc-server-status": { - "_runtime_latest": "2.3.1", - "first_seen": "76f37c4", - "module_name": "nonebot_plugin_mc_server_status", - "project_link": "nonebot-plugin-mc-server-status", - "display_name": "Minecraft服务器信息查询", - "homepage": "https://github.com/nikissXI/nonebot_plugins/tree/main/nonebot_plugin_mc_server_status", - "pypi_version": "0.2.14", - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bilibili-yuan": { - "_runtime_latest": "2.3.1", - "first_seen": "76f37c4", - "module_name": "nonebot_plugin_bilibili_yuan", - "project_link": "nonebot-plugin-bilibili-yuan", - "display_name": "哔哩哔哩q群登录", - "homepage": "https://github.com/mengxinyuan638/nonebot-plugin-bilibili-yuan", - "pypi_version": "0.1.0", - "pypi_create": true, - "pypi_run": true, - "git_hash": "0f47e79", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-easy-translate": { - "_runtime_latest": "2.3.1", - "first_seen": "bdf8cb0", - "module_name": "nonebot_plugin_easy_translate", - "project_link": "nonebot-plugin-easy-translate", - "display_name": "简易谷歌翻译插件", - "homepage": "https://github.com/nikissXI/nonebot_plugins/tree/main/nonebot_plugin_easy_translate", - "pypi_version": "0.2.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-orangedice": { - "_runtime_latest": "2.3.1", - "first_seen": "bdf8cb0", - "module_name": "nonebot_plugin_orangedice", - "project_link": "nonebot-plugin-orangedice", - "display_name": "orange_dice", - "homepage": "https://github.com/BigOrangeQWQ/nonebot_plugin_orangedice", - "pypi_version": "0.3.9", - "pypi_create": true, - "pypi_run": false, - "git_hash": "57360c8", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-record": { - "_runtime_latest": "2.3.1", - "first_seen": "bdf8cb0", - "module_name": "nonebot_plugin_record", - "project_link": "nonebot-plugin-record", - "display_name": "语音功能", - "homepage": "https://github.com/itsevin/nonebot_plugin_record", - "pypi_version": "1.0.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "8ab647d", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-nya-cook-menu": { - "_runtime_latest": "2.3.1", - "first_seen": "8be262d", - "module_name": "nonebot_plugin_nya_cook_menu", - "project_link": "nonebot-plugin-nya-cook-menu", - "display_name": "喵喵自记菜谱", - "homepage": "https://github.com/nikissXI/nonebot_plugins/tree/main/nonebot_plugin_nya_cook_menu", - "pypi_version": "0.1.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "criminal-dance": { - "_runtime_latest": "2.3.1", - "first_seen": "6f57a29", - "module_name": "criminal_dance", - "project_link": "criminal-dance", - "display_name": "犯人在跳舞", - "homepage": "https://github.com/bridgeL/criminal_dance", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5437aed", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-picmcstat": { - "_runtime_latest": "2.3.1", - "first_seen": "558f740", - "module_name": "nonebot_plugin_picmcstat", - "project_link": "nonebot-plugin-picmcstat", - "display_name": "PicMCStat", - "homepage": "https://github.com/lgc-NB2Dev/nonebot-plugin-picmcstat", - "pypi_version": "0.6.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "6a858cf", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-wantwords": { - "_runtime_latest": "2.3.1", - "first_seen": "558f740", - "module_name": "nonebot_plugin_wantwords", - "project_link": "nonebot-plugin-wantwords", - "display_name": "反向词典", - "homepage": "https://github.com/limnium/nonebot_plugin_wantwords", - "pypi_version": "0.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "098f229", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-pvz": { - "_runtime_latest": "2.3.1", - "first_seen": "6410af1", - "module_name": "nonebot_plugin_pvz", - "project_link": "nonebot-plugin-pvz", - "display_name": "植物大战僵尸小游戏", - "homepage": "https://github.com/longchengguxiao/nonebot_plugin_pvz", - "pypi_version": "1.3.9", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9441b00", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-molar-mass": { - "_runtime_latest": "2.3.0", - "first_seen": "6410af1", - "module_name": "nonebot_plugin_molar_mass", - "project_link": "nonebot-plugin-molar-mass", - "display_name": "摩尔质量计算器", - "homepage": "https://github.com/kifuan/nonebot-plugin-molar-mass", - "pypi_version": null, - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-report-manager": { - "_runtime_latest": "2.3.1", - "first_seen": "735cf9d", - "module_name": "nonebot_plugin_report_manager", - "project_link": "nonebot-plugin-report-manager", - "display_name": "对话超管", - "homepage": "https://github.com/Hiroshi12138/nonebot_plugin_report_manager", - "pypi_version": "0.2.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f53776a", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "qinglan-bot": { - "_runtime_latest": "2.3.1", - "first_seen": "735cf9d", - "module_name": "qinglan_bot", - "project_link": "qinglan-bot", - "display_name": "青岚Bot", - "homepage": "https://github.com/17TheWord/qinglan_bot", - "pypi_version": "0.1.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "b519d3e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-easy-group-manager": { - "_runtime_latest": "2.3.1", - "first_seen": "c369475", - "module_name": "nonebot_plugin_easy_group_manager", - "project_link": "nonebot-plugin-easy-group-manager", - "display_name": "简易群管女生自用99新", - "homepage": "https://github.com/zhulinyv/nonebot_plugin_easy_group_manager", - "pypi_version": "0.4.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "484f32b", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-group-link-guild": { - "_runtime_latest": "2.3.1", - "first_seen": "c369475", - "module_name": "nonebot_plugin_group_link_guild", - "project_link": "nonebot-plugin-group-link-guild", - "display_name": "群频互通", - "homepage": "https://github.com/17TheWord/nonebot-plugin-group-link-guild", - "pypi_version": "0.0.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "0a7b911", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-alconna": { - "_runtime_latest": "2.3.1", - "first_seen": "c369475", - "module_name": "nonebot_plugin_alconna", - "project_link": "nonebot-plugin-alconna", - "display_name": "Alconna 插件", - "homepage": "https://github.com/nonebot/plugin-alconna", - "pypi_version": "0.46.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "cc93fb1", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-mcport": { - "_runtime_latest": "2.3.1", - "first_seen": "c5a0f0b", - "module_name": "nonebot-plugin-mcport", - "project_link": "nonebot-plugin-mcport", - "display_name": "nonebot-plugin-mcport", - "homepage": "https://github.com/Proviasw/nonebot-plugin-mcport", - "pypi_version": "0.1.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "66ec335", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot_plugin_xdu_support": { - "_runtime_latest": "2.3.1", - "first_seen": "b39fe9f", - "module_name": "nonebot_plugin_xdu_support", - "project_link": "nonebot_plugin_xdu_support", - "display_name": "XDU校园服务", - "homepage": "https://github.com/longchengguxiao/nonebot_plugin_xdu_support", - "pypi_version": "0.6.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "d095957", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-zyk-lightNVL": { - "_runtime_latest": "2.3.1", - "first_seen": "0533058", - "module_name": "nonebot_plugin_zyk_lightNVL", - "project_link": "nonebot-plugin-zyk-lightNVL", - "display_name": "查找轻小说", - "homepage": "https://github.com/ZYKsslm/nonebot_plugin_zyk_lightNVL", - "pypi_version": "0.3.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9364b34", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-dog": { - "_runtime_latest": "2.3.1", - "first_seen": "9e1b439", - "module_name": "nonebot_plugin_dog", - "project_link": "nonebot-plugin-dog", - "display_name": "dog", - "homepage": "https://github.com/Reversedeer/nonebot_plugin_dog", - "pypi_version": "0.3.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9d638dd", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-uuid": { - "_runtime_latest": "2.3.1", - "first_seen": "9e1b439", - "module_name": "nonebot_plugin_uuid", - "project_link": "nonebot-plugin-uuid", - "display_name": "uuid生成器", - "homepage": "https://github.com/ZombieFly/nonebot-plugin-uuid", - "pypi_version": "0.1.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1746914", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-naturel-gpt": { - "_runtime_latest": "2.3.1", - "first_seen": "f323fea", - "module_name": "nonebot_plugin_naturel_gpt", - "project_link": "nonebot-plugin-naturel-gpt", - "display_name": "更人性化的GPT-Ai聊天插件", - "homepage": "https://github.com/KroMiose/nonebot_plugin_naturel_gpt", - "pypi_version": "2.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "40baa8c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-impact": { - "_runtime_latest": "2.3.1", - "first_seen": "646ab10", - "module_name": "nonebot_plugin_impact", - "project_link": "nonebot-plugin-impact", - "display_name": "impact", - "homepage": "https://github.com/Special-Week/nonebot_plugin_impact", - "pypi_version": "0.12.114514", - "pypi_create": true, - "pypi_run": false, - "git_hash": "a18328e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-mcping": { - "_runtime_latest": "2.3.1", - "first_seen": "6e214ef", - "module_name": "nonebot_plugin_mcping", - "project_link": "nonebot-plugin-mcping", - "display_name": "MC Ping", - "homepage": "https://github.com/17TheWord/nonebot-plugin-mcping", - "pypi_version": "0.0.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "8e1798c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-b23": { - "_runtime_latest": "2.3.1", - "first_seen": "b534b3b", - "module_name": "nonebot_plugin_b23", - "project_link": "nonebot-plugin-b23", - "display_name": "B站热搜", - "homepage": "https://github.com/eya46/nonebot_plugin_b23", - "pypi_version": "0.3.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "321d104", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-autoreply": { - "_runtime_latest": "2.3.1", - "first_seen": "b534b3b", - "module_name": "nonebot_plugin_autoreply", - "project_link": "nonebot-plugin-autoreply", - "display_name": "AutoReply", - "homepage": "https://github.com/lgc-NB2Dev/nonebot-plugin-autoreply", - "pypi_version": "0.2.12.post1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "0ffbcc1", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-setu-collection": { - "_runtime_latest": "2.3.1", - "first_seen": "e8760b6", - "module_name": "nonebot_plugin_setu_collection", - "project_link": "nonebot-plugin-setu-collection", - "display_name": "我要一张xx涩图", - "homepage": "https://github.com/KarisAya/nonebot_plugin_setu_collection", - "pypi_version": "0.2.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "d3f7ac5", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-groupmate-waifu": { - "_runtime_latest": "2.3.1", - "first_seen": "6bff6e9", - "module_name": "nonebot_plugin_groupmate_waifu", - "project_link": "nonebot-plugin-groupmate-waifu", - "display_name": "娶群友", - "homepage": "https://github.com/KarisAya/nonebot_plugin_groupmate_waifu", - "pypi_version": "1.4.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "d4daf1d", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-jrrp2": { - "_runtime_latest": "2.3.1", - "first_seen": "22e27cc", - "module_name": "nonebot_plugin_jrrp2", - "project_link": "nonebot-plugin-jrrp2", - "display_name": "每日人品2", - "homepage": "https://github.com/Rene8028/nonebot_plugin_jrrp2", - "pypi_version": "1.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f7be2ab", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-dicky-pk": { - "_runtime_latest": "2.3.1", - "first_seen": "22e27cc", - "module_name": "nonebot_plugin_dicky_pk", - "project_link": "nonebot-plugin-dicky-pk", - "display_name": "牛子PK", - "homepage": "https://github.com/tkgs0/nonebot-plugin-dicky-pk", - "pypi_version": "0.5.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5a2c676", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-eventmonitor": { - "_runtime_latest": "2.3.1", - "first_seen": "22e27cc", - "module_name": "nonebot_plugin_eventmonitor", - "project_link": "nonebot-plugin-eventmonitor", - "display_name": "eventmonitor", - "homepage": "https://github.com/Reversedeer/nonebot_plugin_eventmonitor", - "pypi_version": "0.2.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "0f5c101", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-whateat-pic": { - "_runtime_latest": "2.3.1", - "first_seen": "d8cc1bd", - "module_name": "nonebot_plugin_whateat_pic", - "project_link": "nonebot-plugin-whateat-pic", - "display_name": "今天吃喝什么呢", - "homepage": "https://github.com/Cvandia/nonebot-plugin-whateat-pic", - "pypi_version": "1.1.7", - "pypi_create": true, - "pypi_run": false, - "git_hash": "822d2bd", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-matcher-block": { - "_runtime_latest": "2.3.1", - "first_seen": "6d7435b", - "module_name": "nonebot_plugin_matcher_block", - "project_link": "nonebot-plugin-matcher-block", - "display_name": "通用指令阻断", - "homepage": "https://github.com/KarisAya/nonebot_plugin_matcher_block", - "pypi_version": "0.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "c01af2e", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-acm-reminder": { - "_runtime_latest": "2.3.1", - "first_seen": "6d7435b", - "module_name": "nonebot_plugin_acm_reminder", - "project_link": "nonebot-plugin-acm-reminder", - "display_name": "ACMReminder", - "homepage": "https://github.com/BigOrangeQWQ/nonebot_plugin_acm_reminder", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": true, - "git_hash": "49c4824", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-maimai": { - "_runtime_latest": "2.3.1", - "first_seen": "720c736", - "module_name": "nonebot_plugin_maimai", - "project_link": "nonebot-plugin-maimai", - "display_name": "舞萌maimai", - "homepage": "https://github.com/Agnes4m/maimai_plugin", - "pypi_version": "0.4.4.post1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3c2e49c", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-all4one": { - "_runtime_latest": "2.3.1", - "first_seen": "4c31683", - "module_name": "nonebot_plugin_all4one", - "project_link": "nonebot-plugin-all4one", - "display_name": "OneBot 实现", - "homepage": "https://github.com/nonepkg/nonebot-plugin-all4one", - "pypi_version": "0.1.0a3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "b98df69", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-extrautils": { - "_runtime_latest": "2.0.0rc4", - "first_seen": "4c31683", - "module_name": "nonebot_plugin_extrautils", - "project_link": "nonebot-plugin-extrautils", - "display_name": "工具拓展", - "homepage": "https://github.com/NCBM/nonebot-plugin-extrautils", - "pypi_version": "0.2.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "61512f6", - "git_create": true, - "git_run": false, - "last_seen": "170fb94" - }, - "nonebot-plugin-gsabyss": { - "_runtime_latest": "2.3.1", - "first_seen": "eac72d2", - "module_name": "nonebot_plugin_gsabyss", - "project_link": "nonebot-plugin-gsabyss", - "display_name": "原神深境螺旋数据查询", - "homepage": "https://github.com/monsterxcn/nonebot-plugin-gsabyss", - "pypi_version": "0.1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "fb1e31a", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-gartic-room": { - "_runtime_latest": "2.3.1", - "first_seen": "1dc02bf", - "module_name": "gartic_room", - "project_link": "nonebot-plugin-gartic-room", - "display_name": "你画我猜组队", - "homepage": "https://github.com/bridgeL/gartic_room", - "pypi_version": "0.0.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "6e5f1d6", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-resolver": { - "_runtime_latest": "2.3.1", - "first_seen": "8d4eb7f", - "module_name": "nonebot-plugin-resolver", - "project_link": "nonebot-plugin-resolver", - "display_name": "链接分享解析器", - "homepage": "https://github.com/zhiyu1998/nonebot-plugin-resolver", - "pypi_version": "1.0.22", - "pypi_create": true, - "pypi_run": false, - "git_hash": "0decef5", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bing-chat": { - "_runtime_latest": "2.3.1", - "first_seen": "8d4eb7f", - "module_name": "nonebot_plugin_bing_chat", - "project_link": "nonebot-plugin-bing-chat", - "display_name": "Bing Chat", - "homepage": "https://github.com/Harry-Jing/nonebot-plugin-bing-chat", - "pypi_version": "0.7.11", - "pypi_create": true, - "pypi_run": false, - "git_hash": "c57a389", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-send-anything-anywhere": { - "_runtime_latest": "2.3.1", - "first_seen": "1bd1f15", - "module_name": "nonebot_plugin_saa", - "project_link": "nonebot-plugin-send-anything-anywhere", - "display_name": "峯驰物流", - "homepage": "https://send-anything-anywhere.felinae98.cn/", - "pypi_version": "0.6.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-random-stereotypes": { - "_runtime_latest": "2.3.1", - "first_seen": "d9e7986", - "module_name": "nonebot_plugin_random_stereotypes", - "project_link": "nonebot-plugin-random-stereotypes", - "display_name": "发病语录", - "homepage": "https://github.com/Ikaros-521/nonebot_plugin_random_stereotypes", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "d25a9a6", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot_plugin_xiuxian_2": { - "_runtime_latest": "2.3.1", - "first_seen": "74743e6", - "module_name": "nonebot_plugin_xiuxian_2", - "project_link": "nonebot_plugin_xiuxian_2", - "display_name": "修仙_2.0", - "homepage": "https://github.com/QingMuCat/nonebot_plugin_xiuxian_2.0", - "pypi_version": "2.9.2.2", - "pypi_create": true, - "pypi_run": true, - "git_hash": "c91542e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-h2e": { - "_runtime_latest": "2.3.1", - "first_seen": "dd04190", - "module_name": "nonebot_plugin_h2e", - "project_link": "nonebot-plugin-h2e", - "display_name": "呆呆兽都会起来锻炼 H2E", - "homepage": "https://github.com/Gin2O/nonebot_plugin_h2e", - "pypi_version": "0.1.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "87b3f87", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-oachat": { - "_runtime_latest": "2.3.1", - "first_seen": "dd04190", - "module_name": "nonebot_plugin_oachat", - "project_link": "nonebot-plugin-oachat", - "display_name": "呆呆兽都会用的chatbot接api", - "homepage": "https://github.com/Gin2O/nonebot_plugin_oachat", - "pypi_version": "0.1.8", - "pypi_create": true, - "pypi_run": false, - "git_hash": "c48d118", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-warframe-mode": { - "_runtime_latest": "2.3.1", - "first_seen": "dd04190", - "module_name": "nonebot_plugin_warframe_mode", - "project_link": "nonebot-plugin-warframe-mode", - "display_name": "wf的wm市场", - "homepage": "https://github.com/mmxd12/nonebot_plugin_warframe_mode", - "pypi_version": "1.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f300e01", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bf1-groptools": { - "_runtime_latest": "2.3.1", - "first_seen": "f8c67eb", - "module_name": "nonebot_plugin_bf1_groptools", - "project_link": "nonebot-plugin-bf1-groptools", - "display_name": "战地一入群审批", - "homepage": "https://github.com/zzcqie666/nonebot_plugin_bf1_groptools", - "pypi_version": "0.0.13", - "pypi_create": true, - "pypi_run": false, - "git_hash": "0bc4c98", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-afd": { - "_runtime_latest": "2.3.1", - "first_seen": "f8c67eb", - "module_name": "nonebot_plugin_afd", - "project_link": "nonebot-plugin-afd", - "display_name": "爱发电进群审核", - "homepage": "https://github.com/17TheWord/nonebot-plugin-afd", - "pypi_version": "0.0.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5158c36", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-ncm-saying": { - "_runtime_latest": "2.3.1", - "first_seen": "a21b511", - "module_name": "nonebot_plugin_ncm_saying", - "project_link": "nonebot-plugin-ncm-saying", - "display_name": "网抑云", - "homepage": "https://github.com/techotaku39/nonebot-plugin-ncm-saying", - "pypi_version": "0.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9342ebe", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "teenstudy": { - "_runtime_latest": "2.3.1", - "first_seen": "8dc36aa", - "module_name": "TeenStudy", - "project_link": "teenstudy", - "display_name": "青年大学习提交", - "homepage": "https://github.com/YouthLearning/TeenStudy", - "pypi_version": "0.2.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "fc59635", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-60s": { - "_runtime_latest": "2.3.1", - "first_seen": "a5302a1", - "module_name": "nonebot_plugin_60s", - "project_link": "nonebot-plugin-60s", - "display_name": "60s日历", - "homepage": "https://github.com/techotaku39/nonebot-plugin-60s", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "fc54623", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-AutoRepeater": { - "_runtime_latest": "2.3.1", - "first_seen": "b209b77", - "module_name": "nonebot_plugin_AutoRepeater", - "project_link": "nonebot-plugin-AutoRepeater", - "display_name": "AutoRepeater", - "homepage": "https://github.com/DMCSWCG/nonebot-plugin-AutoRepeater", - "pypi_version": "0.1.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "96bab30", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-ai-timetable": { - "_runtime_latest": "2.3.1", - "first_seen": "6116d39", - "module_name": "nonebot_plugin_ai_timetable", - "project_link": "nonebot-plugin-ai-timetable", - "display_name": "小爱课表", - "homepage": "https://github.com/maoxig/nonebot-plugin-ai-timetable", - "pypi_version": "0.4.1", - "pypi_create": true, - "pypi_run": true, - "git_hash": "6c69f3b", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-sanae": { - "_runtime_latest": "2.3.1", - "first_seen": "7e614bb", - "module_name": "nonebot_plugin_sanae", - "project_link": "nonebot-plugin-sanae", - "display_name": "Sanae", - "homepage": "https://github.com/Hoshinonyaruko/nonebot-plugin-sanae", - "pypi_version": "0.0.9", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9f2ec34", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-arkrecord": { - "_runtime_latest": "2.3.1", - "first_seen": "3ec7645", - "module_name": "nonebot_plugin_arkrecord", - "project_link": "nonebot-plugin-arkrecord", - "display_name": "明日方舟抽卡记录分析", - "homepage": "https://github.com/zheuziihau/nonebot_plugin_arkrecord", - "pypi_version": "1.7.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5b979cc", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-chatgpt-turbo": { - "_runtime_latest": "2.3.1", - "first_seen": "e788705", - "module_name": "nonebot_plugin_chatgpt_turbo", - "project_link": "nonebot-plugin-chatgpt-turbo", - "display_name": "ChatGPT官方接口版", - "homepage": "https://github.com/Alpaca4610/nonebot_plugin_chatgpt_turbo", - "pypi_version": "0.3.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9296923", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-chatgpt-on-qq": { - "_runtime_latest": "2.3.1", - "first_seen": "e788705", - "module_name": "nonebot_plugin_chatgpt_on_qq", - "project_link": "nonebot-plugin-chatgpt-on-qq", - "display_name": "多功能的ChatGPT机器人", - "homepage": "https://github.com/Suxmx/nonebot_plugin_chatgpt_on_qq", - "pypi_version": "1.6.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "67c9ac8", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-tuan-chatgpt": { - "_runtime_latest": "2.3.1", - "first_seen": "e788705", - "module_name": "nonebot_plugin_tuan_chatgpt", - "project_link": "nonebot-plugin-tuan-chatgpt", - "display_name": "和团子聊天!", - "homepage": "https://github.com/TheLZY/nonebot_plugin_tuan_chatgpt", - "pypi_version": "0.4.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e2b7968", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-chatpdf": { - "_runtime_latest": "2.3.1", - "first_seen": "3a14203", - "module_name": "nonebot_plugin_chatpdf", - "project_link": "nonebot-plugin-chatpdf", - "display_name": "ChatPDF文章分析", - "homepage": "https://github.com/Alpaca4610/nonebot_plugin_chatpdf", - "pypi_version": "0.4.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "eee8ef1", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-rimofun": { - "_runtime_latest": "2.3.1", - "first_seen": "856f0b9", - "module_name": "nonebot_plugin_rimofun", - "project_link": "nonebot-plugin-rimofun", - "display_name": "RimoFun", - "homepage": "https://github.com/lgc-NB2Dev/nonebot-plugin-rimofun", - "pypi_version": "0.3.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9b83815", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-customemote": { - "_runtime_latest": "2.3.1", - "first_seen": "97eee5a", - "module_name": "nonebot_plugin_customemote", - "project_link": "nonebot-plugin-customemote", - "display_name": "群聊自定义表情包", - "homepage": "https://github.com/DMCSWCG/nonebot-plugin-customemote/", - "pypi_version": "0.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "73fe745", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-justsix": { - "_runtime_latest": "2.3.1", - "first_seen": "fca2d07", - "module_name": "nonebot_plugin_justsix", - "project_link": "nonebot-plugin-justsix", - "display_name": "发6", - "homepage": "https://github.com/iidamie/nonebot_plugin_justsix", - "pypi_version": "1.0.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "df9c6b5", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-simulator-xiuxian": { - "_runtime_latest": "2.3.1", - "first_seen": "cf9788e", - "module_name": "nonebot_plugin_simulator_xiuxian", - "project_link": "nonebot-plugin-simulator-xiuxian", - "display_name": "修仙模拟器", - "homepage": "https://github.com/luoyefufeng/nonebot_plugin_simulator_xiuxian", - "pypi_version": "0.5.42", - "pypi_create": true, - "pypi_run": false, - "git_hash": "7ba2b39", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bracket": { - "_runtime_latest": "2.3.1", - "first_seen": "ad4b244", - "module_name": "nonebot_plugin_bracket", - "project_link": "nonebot-plugin-bracket", - "display_name": "括号补全", - "homepage": "https://github.com/noneplugin/nonebot-plugin-bracket", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": true, - "git_hash": "a7ae3d1", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-gshisbanner": { - "_runtime_latest": "2.3.1", - "first_seen": "ad4b244", - "module_name": "nonebot_plugin_gshisbanner", - "project_link": "nonebot-plugin-gshisbanner", - "display_name": "gshisbanner", - "homepage": "https://github.com/forchannot/nonebot-plugin-gshisbanner", - "pypi_version": "1.3.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1936ddf", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-unoconv": { - "_runtime_latest": "2.3.1", - "first_seen": "d1404f6", - "module_name": "nonebot_plugin_unoconv", - "project_link": "nonebot-plugin-unoconv", - "display_name": "unoconv文件转换", - "homepage": "https://github.com/Zeta-qixi/nonebot-plugin-unoconv", - "pypi_version": "0.5.7", - "pypi_create": true, - "pypi_run": false, - "git_hash": "105eb1d", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-apexranklookup": { - "_runtime_latest": "2.3.1", - "first_seen": "d1404f6", - "module_name": "nonebot_plugin_apexranklookup", - "project_link": "nonebot-plugin-apexranklookup", - "display_name": "apex信息查询", - "homepage": "https://github.com/Windylh/nonebot_plugin_apexranklookup", - "pypi_version": "0.1.7", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3f8410e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-randomnana": { - "_runtime_latest": "2.3.1", - "first_seen": "7822cab", - "module_name": "nonebot_plugin_randomnana", - "project_link": "nonebot-plugin-randomnana", - "display_name": "随机狗妈", - "homepage": "https://github.com/NanakoOfficial/nonebot_plugin_randomnana", - "pypi_version": "0.1.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e219c5f", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-quote": { - "_runtime_latest": "2.3.1", - "first_seen": "9f1b9ce", - "module_name": "nonebot_plugin_quote", - "project_link": "nonebot-plugin-quote", - "display_name": "群聊语录库", - "homepage": "https://github.com/RongRongJi/nonebot_plugin_quote", - "pypi_version": "0.3.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "68aca25", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-memes-api": { - "_runtime_latest": "2.3.1", - "first_seen": "53898df", - "module_name": "nonebot_plugin_memes_api", - "project_link": "nonebot-plugin-memes-api", - "display_name": "表情包制作", - "homepage": "https://github.com/noneplugin/nonebot-plugin-memes-api", - "pypi_version": "0.3.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "03f965f", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-rrc": { - "_runtime_latest": "2.3.1", - "first_seen": "c544479", - "module_name": "nonebot_plugin_rrc", - "project_link": "nonebot-plugin-rrc", - "display_name": "随机点名", - "homepage": "https://github.com/QingMuCat/nonebot-plugin-rrc", - "pypi_version": "0.0.6", - "pypi_create": true, - "pypi_run": true, - "git_hash": "7e4d812", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-hotsearch": { - "_runtime_latest": "2.3.1", - "first_seen": "05a6af4", - "module_name": "nonebot_plugin_hotsearch", - "project_link": "nonebot-plugin-hotsearch", - "display_name": "多平台热搜获取插件", - "homepage": "https://github.com/Astolfocat/nonebot_plugin_hotsearch", - "pypi_version": "0.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "4401750", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-ai-interviewer": { - "_runtime_latest": "2.3.1", - "first_seen": "9afaf3d", - "module_name": "nonebot_plugin_ai_interviewer", - "project_link": "nonebot-plugin-ai-interviewer", - "display_name": "基于OpenAI的AI模拟面试官", - "homepage": "https://github.com/Alpaca4610/nonebot-plugin-ai-interviewer", - "pypi_version": "0.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "65c6628", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-chatglm": { - "_runtime_latest": "2.3.1", - "first_seen": "d4da953", - "module_name": "nonebot_plugin_chatglm", - "project_link": "nonebot-plugin-chatglm", - "display_name": "ChatGLM", - "homepage": "https://github.com/DaoMingze/zhukebot/tree/main/zhukebot/plugins/chatglm", - "pypi_version": "0.1.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-chatglm6b": { - "_runtime_latest": "2.3.1", - "first_seen": "d4da953", - "module_name": "nonebot_plugin_chatglm6b", - "project_link": "nonebot-plugin-chatglm6b", - "display_name": "ChatGLM-6B API版", - "homepage": "https://github.com/QNLanYang/nonebot_plugin_ChatGLM6B", - "pypi_version": "0.1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "35dc91f", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-nya-music": { - "_runtime_latest": "2.1.0", - "first_seen": "744443a", - "module_name": "nonebot_plugin_nya_music", - "project_link": "nonebot-plugin-nya-music", - "display_name": "喵喵点歌", - "homepage": "https://github.com/nikissXI/nonebot_plugins/tree/main/nonebot_plugin_nya_music", - "pypi_version": "0.1.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "5d4cf7e" - }, - "nonebot-plugin-helloworld": { - "_runtime_latest": "2.3.1", - "first_seen": "d5234e4", - "module_name": "nonebot_plugin_helloworld", - "project_link": "nonebot-plugin-helloworld", - "display_name": "Hello World", - "homepage": "https://github.com/A-kirami/nonebot-plugin-helloworld", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "012e672", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-overbracket": { - "_runtime_latest": "2.3.1", - "first_seen": "3709e0b", - "module_name": "nonebot_plugin_overbracket", - "project_link": "nonebot-plugin-overbracket", - "display_name": "通括膨胀", - "homepage": "https://github.com/NCBM/nonebot-plugin-overbracket", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "146980e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-miao": { - "_runtime_latest": "2.3.1", - "first_seen": "3709e0b", - "module_name": "nonebot_plugin_miao", - "project_link": "nonebot-plugin-miao", - "display_name": "口癖", - "homepage": "https://github.com/CMHopeSunshine/nonebot-plugin-miao", - "pypi_version": "1.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f756667", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-questionmark": { - "_runtime_latest": "2.3.1", - "first_seen": "47536e6", - "module_name": "nonebot_plugin_questionmark", - "project_link": "nonebot-plugin-questionmark", - "display_name": "颠倒问号", - "homepage": "https://github.com/NumberSir/nonebot-plugin-questionmark", - "pypi_version": "0.4.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "98c91b6", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-genshin-cos": { - "_runtime_latest": "2.3.1", - "first_seen": "315dcb3", - "module_name": "nonebot_plugin_genshin_cos", - "project_link": "nonebot-plugin-genshin-cos", - "display_name": "米游社cos", - "homepage": "https://github.com/Cvandia/nonebot_plugin_genshin_cos", - "pypi_version": "0.3.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "50a70de", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-chatgpt-plus": { - "_runtime_latest": "2.3.1", - "first_seen": "0091a03", - "module_name": "nonebot_plugin_chatgpt_plus", - "project_link": "nonebot-plugin-chatgpt-plus", - "display_name": "ChatGPT网页端API", - "homepage": "https://github.com/AkashiCoin/nonebot-plugin-chatgpt-plus", - "pypi_version": "0.8.9", - "pypi_create": true, - "pypi_run": false, - "git_hash": "0958a96", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-sayoroll": { - "_runtime_latest": "2.3.1", - "first_seen": "c8c5f17", - "module_name": "nonebot_plugin_sayoroll", - "project_link": "nonebot-plugin-sayoroll", - "display_name": "sayoroll", - "homepage": "https://github.com/mas-alone/nonebot-plugin-sayoroll", - "pypi_version": "1.0.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "14253d4", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-gw2": { - "_runtime_latest": "2.3.1", - "first_seen": "c8c5f17", - "module_name": "nonebot_plugin_gw2", - "project_link": "nonebot-plugin-gw2", - "display_name": "激战2", - "homepage": "https://github.com/Agnes4m/nonebot_plugin_gw2", - "pypi_version": "0.0.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "7a8c996", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-today-waifu": { - "_runtime_latest": "2.3.1", - "first_seen": "d028960", - "module_name": "nonebot_plugin_today_waifu", - "project_link": "nonebot-plugin-today-waifu", - "display_name": "今日老婆", - "homepage": "https://github.com/glamorgan9826/nonebot-plugin-today-waifu", - "pypi_version": "0.1.5", - "pypi_create": true, - "pypi_run": true, - "git_hash": "9a527c4", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-sleep": { - "_runtime_latest": "2.3.1", - "first_seen": "d028960", - "module_name": "nonebot_plugin_sleep", - "project_link": "nonebot-plugin-sleep", - "display_name": "来份睡眠套餐", - "homepage": "https://github.com/mas-alone/nonebot-plugin-sleep", - "pypi_version": "0.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "a007e4b", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-api-paddle": { - "_runtime_latest": "2.3.1", - "first_seen": "8e5ec5c", - "module_name": "nonebot_api_paddle", - "project_link": "nonebot-api-paddle", - "display_name": "nonebot_api_paddle", - "homepage": "https://github.com/canxin121/nonebot_api_paddleocr", - "pypi_version": "1.0.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "41ba5eb", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-paddle-ocr": { - "_runtime_latest": "2.0.0rc4", - "first_seen": "8e5ec5c", - "module_name": "nonebot_paddle_ocr", - "project_link": "nonebot-paddle-ocr", - "display_name": "nonebot_paddle_ocr", - "homepage": "https://github.com/canxin121/nonebot_paddle_ocr", - "pypi_version": "1.1.1", - "pypi_create": true, - "pypi_run": true, - "git_hash": "4947f62", - "git_create": false, - "git_run": false, - "last_seen": "2dcbce9" - }, - "nonebot-plugin-chatppt": { - "_runtime_latest": "2.3.1", - "first_seen": "8e5ec5c", - "module_name": "nonebot_plugin_chatppt", - "project_link": "nonebot-plugin-chatppt", - "display_name": "AI生成PPT", - "homepage": "https://github.com/Alpaca4610/nonebot-plugin-chatppt", - "pypi_version": "0.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "71b8f35", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-steam-game-status": { - "_runtime_latest": "2.3.1", - "first_seen": "8e5ec5c", - "module_name": "nonebot_plugin_steam_game_status", - "project_link": "nonebot-plugin-steam-game-status", - "display_name": "Steam游戏状态", - "homepage": "https://github.com/nek0us/nonebot_plugin_steam_game_status", - "pypi_version": "0.1.8", - "pypi_create": true, - "pypi_run": false, - "git_hash": "6ce3298", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bilichat": { - "_runtime_latest": "2.3.1", - "first_seen": "f3d7a30", - "module_name": "nonebot_plugin_bilichat", - "project_link": "nonebot-plugin-bilichat", - "display_name": "nonebot-plugin-bilichat", - "homepage": "https://github.com/Well2333/nonebot-plugin-bilichat", - "pypi_version": "5.10.3", - "pypi_create": true, - "pypi_run": true, - "git_hash": "d1e663c", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-genshinuid": { - "_runtime_latest": "2.3.1", - "first_seen": "716a047", - "module_name": "GenshinUID", - "project_link": "nonebot-plugin-genshinuid", - "display_name": "GenshinUID", - "homepage": "https://docs.sayu-bot.com", - "pypi_version": "4.6.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-blive-danmaku": { - "_runtime_latest": "2.3.1", - "first_seen": "020705b", - "module_name": "nonebot_plugin_blive_danmaku", - "project_link": "nonebot-plugin-blive-danmaku", - "display_name": "B站直播间路灯", - "homepage": "https://github.com/zangxx66/nonebot_plugin_blive_danmaku", - "pypi_version": "0.4.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "ad7b543", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-clock": { - "_runtime_latest": "2.3.1", - "first_seen": "139eeac", - "module_name": "nonebot_plugin_clock", - "project_link": "nonebot-plugin-clock", - "display_name": "nonebot clock 群闹钟 ⏰", - "homepage": "https://github.com/Zeta-qixi/nonebot-plugin-clock", - "pypi_version": "0.9", - "pypi_create": true, - "pypi_run": false, - "git_hash": "d7a11a7", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-SDGPT": { - "_runtime_latest": "2.3.1", - "first_seen": "1bc3a8e", - "module_name": "nonebot_plugin_SDGPT", - "project_link": "nonebot-plugin-SDGPT", - "display_name": "SDGPT", - "homepage": "https://github.com/thx114/sdgpt", - "pypi_version": "0.2.8", - "pypi_create": true, - "pypi_run": false, - "git_hash": "c6b6f89", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-fuckyou": { - "_runtime_latest": "2.3.1", - "first_seen": "97829aa", - "module_name": "nonebot_plugin_fuckyou", - "project_link": "nonebot-plugin-fuckyou", - "display_name": "FuckYou", - "homepage": "https://github.com/lgc-NB2Dev/nonebot-plugin-fuckyou", - "pypi_version": "0.3.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "195fde5", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-pokemonfusion": { - "_runtime_latest": "2.3.1", - "first_seen": "97829aa", - "module_name": "nonebot_plugin_pokemonfusion", - "project_link": "nonebot-plugin-pokemonfusion", - "display_name": "宝可梦融合", - "homepage": "https://github.com/IllusiveBull/nonebot_plugin_pokemonfusion", - "pypi_version": "1.1.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "877066a", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "tatarubot2": { - "_runtime_latest": "2.3.1", - "first_seen": "04be5cb", - "module_name": "tatarubot2", - "project_link": "tatarubot2", - "display_name": "TataruBot2", - "homepage": "https://github.com/aaron-lii/TataruBot2", - "pypi_version": "1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "eb21c99", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-talk-with-chatgpt": { - "_runtime_latest": "2.3.1", - "first_seen": "04be5cb", - "module_name": "nonebot_plugin_talk_with_chatgpt", - "project_link": "nonebot-plugin-talk-with-chatgpt", - "display_name": "与ChatGpt聊天", - "homepage": "https://github.com/nikissXI/nonebot_plugins/tree/main/nonebot_plugin_talk_with_chatgpt", - "pypi_version": "0.6.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-osuverify": { - "_runtime_latest": "2.3.1", - "first_seen": "21eb289", - "module_name": "nonebot_plugin_osuverify", - "project_link": "nonebot-plugin-osuverify", - "display_name": "osu!入群验证", - "homepage": "https://github.com/mas-alone/nonebot-plugin-osuverify", - "pypi_version": "0.1.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3be35bc", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bilifan": { - "_runtime_latest": "2.3.1", - "first_seen": "21eb289", - "module_name": "nonebot_plugin_bilifan", - "project_link": "nonebot-plugin-bilifan", - "display_name": "bilifan", - "homepage": "https://github.com/Agnes4m/nonebot_plugin_bilifan", - "pypi_version": "0.3.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "b8d2a80", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-akinator": { - "_runtime_latest": "2.3.1", - "first_seen": "1b2f560", - "module_name": "nonebot_plugin_akinator", - "project_link": "nonebot-plugin-akinator", - "display_name": "Akinator", - "homepage": "https://github.com/lgc-NB2Dev/nonebot-plugin-akinator", - "pypi_version": "0.2.0.post1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f0291d0", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-rename": { - "_runtime_latest": "2.3.1", - "first_seen": "2061887", - "module_name": "nonebot_plugin_rename", - "project_link": "nonebot-plugin-rename", - "display_name": "nonebot_plugin_rename", - "homepage": "https://github.com/forchannot/nonebot_plugin_rename", - "pypi_version": "1.7.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3dd936a", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-poe-chat": { - "_runtime_latest": "2.0.0rc4", - "first_seen": "0d7c399", - "module_name": "nonebot_poe_chat", - "project_link": "nonebot-poe-chat", - "display_name": "nonebot_poe_chat", - "homepage": "https://github.com/canxin121/nonebot_poe_chat", - "pypi_version": "1.1.9", - "pypi_create": true, - "pypi_run": false, - "git_hash": "38e0bfc", - "git_create": true, - "git_run": false, - "last_seen": "2dcbce9" - }, - "nonebot-plugin-appinsights": { - "_runtime_latest": "2.3.1", - "first_seen": "392502d", - "module_name": "nonebot_plugin_appinsights", - "project_link": "nonebot-plugin-appinsights", - "display_name": "Nonebot2 AppInsights", - "homepage": "https://github.com/xzhouqd/nonebot-plugin-appinsights", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3d22ca3", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-mixin": { - "_runtime_latest": "2.1.2", - "first_seen": "dc0aea9", - "module_name": "nonebot_plugin_mixin", - "project_link": "nonebot-plugin-mixin", - "display_name": "Mixin", - "homepage": "https://github.com/NCBM/nonebot-plugin-mixin", - "pypi_version": "0.1.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "8282352", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-brainfuck": { - "_runtime_latest": "2.3.1", - "first_seen": "7dc3702", - "module_name": "nonebot_plugin_brainfuck", - "project_link": "nonebot-plugin-brainfuck", - "display_name": "brainfuck", - "homepage": "https://github.com/campanulamediuml/nonebot-plugin-brainfuck", - "pypi_version": "1.0.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "cae5e74", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-coderun": { - "_runtime_latest": "2.3.1", - "first_seen": "6114867", - "module_name": "nonebot-plugin-coderun", - "project_link": "nonebot-plugin-coderun", - "display_name": "运行代码", - "homepage": "https://github.com/Yincmewy/nonebot_plugin_coderun", - "pypi_version": "0.0.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "ab03fac", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-abot-place": { - "_runtime_latest": "2.3.1", - "first_seen": "a5618f1", - "module_name": "nonebot_plugin_abot_place", - "project_link": "nonebot-plugin-abot-place", - "display_name": "公共画板插件", - "homepage": "https://github.com/Aunly/nonebot-plugin-abot-place", - "pypi_version": "0.1.0.post3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5f8f478", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-megumin": { - "_runtime_latest": "2.3.1", - "first_seen": "7231d49", - "module_name": "nonebot_plugin_megumin", - "project_link": "nonebot-plugin-megumin", - "display_name": "为美好群聊献上爆炎", - "homepage": "https://github.com/youlanan/nonebot_plugin_megumin", - "pypi_version": "0.0.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "821fe9c", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-manga-translator": { - "_runtime_latest": "2.3.1", - "first_seen": "cfe182f", - "module_name": "nonebot_plugin_manga_translator", - "project_link": "nonebot-plugin-manga-translator", - "display_name": "图片翻译", - "homepage": "https://github.com/maoxig/nonebot-plugin-manga-translator", - "pypi_version": "0.2.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "896c05e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-watermarker": { - "_runtime_latest": "2.3.1", - "first_seen": "fa5b885", - "module_name": "nonebot_plugin_watermarker", - "project_link": "nonebot-plugin-watermarker", - "display_name": "水印大师", - "homepage": "https://github.com/X-Skirt-X/nonebot-plugin-watermarker", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "63c7373", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-starrail-calendar": { - "_runtime_latest": "2.3.1", - "first_seen": "fa5b885", - "module_name": "nonebot_plugin_starrail_calendar", - "project_link": "nonebot-plugin-starrail-calendar", - "display_name": "星穹铁道活动日历", - "homepage": "https://github.com/nicklly/nonebot_plugin_StarRail_calendar", - "pypi_version": "1.0.8", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1833302", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-wordle-help": { - "_runtime_latest": "2.3.1", - "first_seen": "2494e61", - "module_name": "nonebot_plugin_wordle_help", - "project_link": "nonebot-plugin-wordle-help", - "display_name": "wordle_help", - "homepage": "https://github.com/Special-Week/Hinata-Bot/tree/main/src/plugins/wordle_help", - "pypi_version": "0.0.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-csgo-case-simulator": { - "_runtime_latest": "2.3.1", - "first_seen": "5d27646", - "module_name": "nonebot-plugin-csgo-case-simulator", - "project_link": "nonebot-plugin-csgo-case-simulator", - "display_name": "CSGO开箱模拟器", - "homepage": "https://github.com/roiiiu/nonebot-plugin-csgo-case-simulator", - "pypi_version": "1.1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "ed2cf88", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-grouplock": { - "_runtime_latest": "2.0.1", - "first_seen": "5d27646", - "module_name": "nonebot_plugin_grouplock", - "project_link": "nonebot-plugin-grouplock", - "display_name": "群聊人数锁定", - "homepage": "https://github.com/ZM25XC/nonebot-plugin-grouplock", - "pypi_version": "0.0.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "75c5678" - }, - "nonebot-plugin-callapi": { - "_runtime_latest": "2.3.1", - "first_seen": "5d27646", - "module_name": "nonebot_plugin_callapi", - "project_link": "nonebot-plugin-callapi", - "display_name": "CallAPI", - "homepage": "https://github.com/lgc-NB2Dev/nonebot-plugin-callapi", - "pypi_version": "0.2.0.post1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "efbc582", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-penguin": { - "_runtime_latest": "2.3.1", - "first_seen": "6c26982", - "module_name": "nonebot_plugin_penguin", - "project_link": "nonebot-plugin-penguin", - "display_name": "nonebot_plugin_penguin", - "homepage": "https://github.com/AzideCupric/nonebot-plugin-penguin", - "pypi_version": "0.1.0", - "pypi_create": true, - "pypi_run": true, - "git_hash": "9cddaf6", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-spark-gpt": { - "_runtime_latest": "2.3.1", - "first_seen": "5425180", - "module_name": "nonebot_plugin_spark_gpt", - "project_link": "nonebot-plugin-spark-gpt", - "display_name": "Spark_GPT", - "homepage": "https://github.com/canxin121/Spark-GPT", - "pypi_version": "2.0.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "d799d13", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-logpile": { - "_runtime_latest": "2.3.1", - "first_seen": "5425180", - "module_name": "nonebot_plugin_logpile", - "project_link": "nonebot-plugin-logpile", - "display_name": "nonebot-plugin-logpile", - "homepage": "https://github.com/A-kirami/nonebot-plugin-logpile", - "pypi_version": "0.2.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3de892c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-segbuilder": { - "_runtime_latest": "2.0.1", - "first_seen": "ae55ec3", - "module_name": "nonebot_plugin_segbuilder", - "project_link": "nonebot-plugin-segbuilder", - "display_name": "雷神工业", - "homepage": "https://github.com/Well2333/nonebot-plugin-segbuilder", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "d63c542", - "git_create": true, - "git_run": false, - "last_seen": "4bfea99" - }, - "nonebot-plugin-arkgacha": { - "_runtime_latest": "2.3.1", - "first_seen": "56304ae", - "module_name": "nonebot_plugin_arkgacha", - "project_link": "nonebot-plugin-arkgacha", - "display_name": "明日方舟抽卡模拟", - "homepage": "https://github.com/RF-Tar-Railt/nonebot-plugin-arkgacha", - "pypi_version": "0.7.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e329e87", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-msgbuf": { - "_runtime_latest": "2.1.2", - "first_seen": "a5e6343", - "module_name": "nonebot_plugin_msgbuf", - "project_link": "nonebot-plugin-msgbuf", - "display_name": "雅信达", - "homepage": "https://github.com/NCBM/nonebot-plugin-msgbuf", - "pypi_version": "0.4.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "be84fe3", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-og": { - "_runtime_latest": "2.3.1", - "first_seen": "9c0ecb4", - "module_name": "nonebot_plugin_og", - "project_link": "nonebot-plugin-og", - "display_name": "链接解析", - "homepage": "https://github.com/mute23-code/nonebot_plugin_og", - "pypi_version": "0.3.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "17e172e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-hoshino-sign": { - "_runtime_latest": "2.3.1", - "first_seen": "336822f", - "module_name": "nonebot_plugin_hoshino_sign", - "project_link": "nonebot-plugin-hoshino-sign", - "display_name": "签到", - "homepage": "https://github.com/zhulinyv/nonebot_plugin_hoshino_sign", - "pypi_version": "2.3.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "050360b", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-multincm": { - "_runtime_latest": "2.3.1", - "first_seen": "22222e7", - "module_name": "nonebot_plugin_multincm", - "project_link": "nonebot-plugin-multincm", - "display_name": "MultiNCM", - "homepage": "https://github.com/lgc-NB2Dev/nonebot-plugin-multincm", - "pypi_version": "0.4.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "44d74f3", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-smallapi": { - "_runtime_latest": "2.3.1", - "first_seen": "bd9b05b", - "module_name": "nonebot_plugin_smallapi", - "project_link": "nonebot-plugin-smallapi", - "display_name": "小小的WEBAPI调用插件", - "homepage": "https://github.com/chaichaisi/nonebot_plugin_smallapi", - "pypi_version": "1.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "a831c94", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-p5generator": { - "_runtime_latest": "2.3.1", - "first_seen": "fc88504", - "module_name": "nonebot_plugin_p5generator", - "project_link": "nonebot-plugin-p5generator", - "display_name": "《女神异闻录5》预告信生成器", - "homepage": "https://github.com/xi-yue-233/nonebot-plugin-p5generator", - "pypi_version": "0.1.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "814c04e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-sd-webui": { - "_runtime_latest": "2.3.1", - "first_seen": "fc88504", - "module_name": "nonebot_plugin_sd_webui", - "project_link": "nonebot-plugin-sd-webui", - "display_name": "SD绘画插件", - "homepage": "https://github.com/evan-gyy/nonebot_plugin_sd_webui", - "pypi_version": "0.1.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "356c418", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-session": { - "_runtime_latest": "2.3.1", - "first_seen": "0c4a040", - "module_name": "nonebot_plugin_session", - "project_link": "nonebot-plugin-session", - "display_name": "会话id", - "homepage": "https://github.com/noneplugin/nonebot-plugin-session", - "pypi_version": "0.3.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "7e116e7", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-pluginupdatecheck": { - "_runtime_latest": "2.3.1", - "first_seen": "f9e214d", - "module_name": "nonebot_plugin_pluginupdatecheck", - "project_link": "nonebot-plugin-pluginupdatecheck", - "display_name": "便携插件安装器", - "homepage": "https://github.com/xi-yue-233/nonebot-plugin-pluginupdatecheck", - "pypi_version": "0.1.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "282cc98", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-stockhelper": { - "_runtime_latest": "2.3.1", - "first_seen": "575e3fb", - "module_name": "nonebot_plugin_stockhelper", - "project_link": "nonebot-plugin-stockhelper", - "display_name": "股票看盘助手", - "homepage": "https://github.com/Calanosay/nonebot_plugin_stockhelper", - "pypi_version": "0.1.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "b559979", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-githubcard": { - "_runtime_latest": "2.3.1", - "first_seen": "3469b0d", - "module_name": "nonebot_plugin_githubcard", - "project_link": "nonebot-plugin-githubcard", - "display_name": "githubcard", - "homepage": "https://github.com/ElainaFanBoy/nonebot_plugin_githubcard", - "pypi_version": "0.2.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "7b39038", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-lua": { - "_runtime_latest": "2.3.1", - "first_seen": "c3d6e20", - "module_name": "nonebot_plugin_lua", - "project_link": "nonebot-plugin-lua", - "display_name": "nonebot-plugin-lua", - "homepage": "https://github.com/synodriver/nonebot_plugin_lua", - "pypi_version": "0.0.1.dev2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "aadd1b1", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-cube": { - "_runtime_latest": "2.3.1", - "first_seen": "2b337e1", - "module_name": "nonebot_plugin_cube", - "project_link": "nonebot-plugin-cube", - "display_name": "cuber", - "homepage": "https://github.com/initialencounter/nonebot-plugin-cube", - "pypi_version": "1.0.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "dab17f5", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-homo-mathematician": { - "_runtime_latest": "2.3.1", - "first_seen": "6c66a54", - "module_name": "nonebot_plugin_homo_mathematician", - "project_link": "nonebot-plugin-homo-mathematician", - "display_name": "homo_mathematician", - "homepage": "https://github.com/Special-Week/Hinata-Bot/tree/main/src/plugins/homo_mathematician", - "pypi_version": "0.0.7", - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-puzzle": { - "_runtime_latest": "2.3.1", - "first_seen": "6c66a54", - "module_name": "nonebot_plugin_puzzle", - "project_link": "nonebot-plugin-puzzle", - "display_name": "puzzle", - "homepage": "https://github.com/initialencounter/nonebot-plugin-puzzle", - "pypi_version": "1.0.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9e19893", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-herocard": { - "_runtime_latest": "2.3.1", - "first_seen": "cc214c3", - "module_name": "nonebot_plugin_herocard", - "project_link": "nonebot-plugin-herocard", - "display_name": "本子标题关键词提取", - "homepage": "https://github.com/Xie-Tiao/nonebot_plugin_herocard", - "pypi_version": "1.0.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5c20873", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-nagabus": { - "_runtime_latest": "2.3.1", - "first_seen": "5d0d91b", - "module_name": "nonebot_plugin_nagabus", - "project_link": "nonebot-plugin-nagabus", - "display_name": "NAGA公交车", - "homepage": "https://github.com/bot-ssttkkl/nonebot-plugin-nagabus", - "pypi_version": "0.3.2", - "pypi_create": true, - "pypi_run": true, - "git_hash": "5fe5318", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-random-draw": { - "_runtime_latest": "2.3.1", - "first_seen": "3199fc4", - "module_name": "nonebot_plugin_random_draw", - "project_link": "nonebot-plugin-random-draw", - "display_name": "随机抽取自定义内容", - "homepage": "https://github.com/Ikaros-521/nonebot_plugin_random_draw", - "pypi_version": "0.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3164173", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-stable-diffusion-diao": { - "_runtime_latest": "2.3.1", - "first_seen": "3199fc4", - "module_name": "nonebot_plugin_stable_diffusion_diao", - "project_link": "nonebot-plugin-stable-diffusion-diao", - "display_name": "stablediffusion绘画插件", - "homepage": "https://github.com/DiaoDaiaChan/nonebot-plugin-stable-diffusion-diao", - "pypi_version": "0.4.7.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "ce7c453", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-al": { - "_runtime_latest": "2.3.1", - "first_seen": "0127d76", - "module_name": "nonebot_plugin_al", - "project_link": "nonebot-plugin-al", - "display_name": "碧蓝航线攻略", - "homepage": "https://github.com/Agnes4m/nonebot_plugin_AL", - "pypi_version": "0.3.10", - "pypi_create": true, - "pypi_run": false, - "git_hash": "b858fff", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-escape-url": { - "_runtime_latest": "2.3.1", - "first_seen": "6df28dd", - "module_name": "nonebot_plugin_escape_url", - "project_link": "nonebot-plugin-escape-url", - "display_name": "链接防夹", - "homepage": "https://github.com/bot-ssttkkl/nonebot-plugin-escape-url", - "pypi_version": "0.1.3.post1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "8dadac1", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-pcrjjc": { - "_runtime_latest": "2.3.1", - "first_seen": "0a70721", - "module_name": "nonebot_plugin_pcrjjc", - "project_link": "nonebot-plugin-pcrjjc", - "display_name": "pcrjjc", - "homepage": "https://github.com/reine-ishyanami/nonebot-plugin-pcrjjc", - "pypi_version": "0.8.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "15dedd6", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-audiocraft": { - "_runtime_latest": "2.3.1", - "first_seen": "2725a0a", - "module_name": "nonebot_plugin_audiocraft", - "project_link": "nonebot-plugin-audiocraft", - "display_name": "AI作曲", - "homepage": "https://github.com/Alpaca4610/nonebot-plugin-audiocraft", - "pypi_version": "0.0.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "a0ffa0b", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bili-push": { - "_runtime_latest": "2.3.1", - "first_seen": "8601942", - "module_name": "nonebot_plugin_bili_push", - "project_link": "nonebot-plugin-bili-push", - "display_name": "bili_push", - "homepage": "https://github.com/SuperGuGuGu/nonebot_plugin_bili_push", - "pypi_version": "1.1.24", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9045e9e", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-warthunder-player-check": { - "_runtime_latest": "2.3.1", - "first_seen": "7d3c7c4", - "module_name": "nonebot_plugin_warthunder_player_check", - "project_link": "nonebot-plugin-warthunder-player-check", - "display_name": "战雷查水表", - "homepage": "https://github.com/0Neptune0/nonebot-plugin-warthunder-player-check", - "pypi_version": "0.1.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "82b6a07", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-follow-withdraw": { - "_runtime_latest": "2.3.1", - "first_seen": "20d3d62", - "module_name": "nonebot_plugin_follow_withdraw", - "project_link": "nonebot-plugin-follow-withdraw", - "display_name": "follow_withdraw", - "homepage": "https://github.com/CMHopeSunshine/nonebot-plugin-follow-withdraw", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5a96f8f", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-error-alert": { - "_runtime_latest": "2.3.1", - "first_seen": "89596fb", - "module_name": "nonebot_plugin_error_alert", - "project_link": "nonebot-plugin-error-alert", - "display_name": "错误告警", - "homepage": "https://github.com/bot-ssttkkl/nonebot-plugin-error-alert", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "cdb426e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-ocgbot-v2": { - "_runtime_latest": "2.3.1", - "first_seen": "fe21cbf", - "module_name": "nonebot_plugin_ocgbot_v2", - "project_link": "nonebot-plugin-ocgbot-v2", - "display_name": "游戏王小蓝卡查", - "homepage": "https://github.com/fireinsect/nonebot-plugin-ocgbot-v2/", - "pypi_version": "0.2.9.7", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5770796", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-helltide": { - "_runtime_latest": "2.3.1", - "first_seen": "a3009d4", - "module_name": "nonebot_plugin_helltide", - "project_link": "nonebot-plugin-helltide", - "display_name": "Diablo4地狱狂潮boss提醒小助手", - "homepage": "https://github.com/QBkira/nonebot-plugin-helltide", - "pypi_version": "0.1.7", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1a9d813", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-userinfo": { - "_runtime_latest": "2.3.1", - "first_seen": "3a12984", - "module_name": "nonebot_plugin_userinfo", - "project_link": "nonebot-plugin-userinfo", - "display_name": "用户信息", - "homepage": "https://github.com/noneplugin/nonebot-plugin-userinfo", - "pypi_version": "0.2.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "bcfcc9e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-eitherchoice": { - "_runtime_latest": "2.2.1", - "first_seen": "2c16233", - "module_name": "nonebot_plugin_eitherchoice", - "project_link": "nonebot-plugin-eitherchoice", - "display_name": "EitherChoice", - "homepage": "https://github.com/lgc-NB2Dev/nonebot-plugin-eitherchoice", - "pypi_version": "0.2.0.post1", - "pypi_create": true, - "pypi_run": true, - "git_hash": "b044fe0", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-poke": { - "_runtime_latest": "2.3.1", - "first_seen": "25ac653", - "module_name": "nonebot_plugin_poke", - "project_link": "nonebot-plugin-poke", - "display_name": "戳一戳事件", - "homepage": "https://github.com/Agnes4m/nonebot_plugin_poke", - "pypi_version": "0.1.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "17ca3f7", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-friends": { - "_runtime_latest": "2.3.1", - "first_seen": "381f663", - "module_name": "nonebot_plugin_friends", - "project_link": "nonebot-plugin-friends", - "display_name": "远程同意好友", - "homepage": "https://github.com/Agnes4m/nonebot_plugin_friends", - "pypi_version": "0.1.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "93010ab", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-update": { - "_runtime_latest": "2.3.1", - "first_seen": "77220d9", - "module_name": "nonebot_plugin_update", - "project_link": "nonebot-plugin-update", - "display_name": "nonebot-plugin-update", - "homepage": "https://github.com/Aunly/nonebot-plugin-update", - "pypi_version": "0.1.3", - "pypi_create": true, - "pypi_run": true, - "git_hash": "f66ef44", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-cp-broadcast": { - "_runtime_latest": "2.3.1", - "first_seen": "511c521", - "module_name": "nonebot_plugin_cp_broadcast", - "project_link": "nonebot-plugin-cp-broadcast", - "display_name": "算法竞赛比赛查询", - "homepage": "https://github.com/HuParry/nonebot-plugin-cp-broadcast", - "pypi_version": "2.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "469867c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-cfassistant": { - "_runtime_latest": "2.3.1", - "first_seen": "13ddfa1", - "module_name": "nonebot_plugin_cfassistant", - "project_link": "nonebot-plugin-cfassistant", - "display_name": "nonebot-plugin-cfassistant", - "homepage": "https://github.com/coyude/nonebot-plugin-cfassistant", - "pypi_version": "1.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e82a17c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-splatoon3": { - "_runtime_latest": "2.1.2", - "first_seen": "3ef1d7d", - "module_name": "nonebot_plugin_splatoon3", - "project_link": "nonebot-plugin-splatoon3", - "display_name": "nonebot-plugin-splatoon3", - "homepage": "https://github.com/Skyminers/Bot-Splatoon3", - "pypi_version": "1.4.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "83975da", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-capoo": { - "_runtime_latest": "2.3.1", - "first_seen": "26e4f23", - "module_name": "nonebot_plugin_capoo", - "project_link": "nonebot-plugin-capoo", - "display_name": "猫猫虫咖波图片发送", - "homepage": "https://github.com/HuParry/nonebot-plugin-capoo", - "pypi_version": "0.1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "41945d7", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-eventexpiry": { - "_runtime_latest": "2.3.1", - "first_seen": "258aa7d", - "module_name": "nonebot_plugin_eventexpiry", - "project_link": "nonebot-plugin-eventexpiry", - "display_name": "过期事件过滤器", - "homepage": "https://github.com/A-kirami/nonebot-plugin-eventexpiry", - "pypi_version": "0.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "b4c3d44", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-nobahpicture": { - "_runtime_latest": "2.3.1", - "first_seen": "3512b0a", - "module_name": "nonebot_plugin_nobahpicture", - "project_link": "nonebot-plugin-nobahpicture", - "display_name": "nonebot-plugin-nobahpicture", - "homepage": "https://github.com/Lptr-byte/nonebot-plugin-nobahpicture", - "pypi_version": "1.0.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f753ccd", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-blocker": { - "_runtime_latest": "2.3.1", - "first_seen": "64f6c2d", - "module_name": "nonebot_plugin_blocker", - "project_link": "nonebot-plugin-blocker", - "display_name": "Blocker", - "homepage": "https://github.com/MerCuJerry/nonebot-plugin-blocker", - "pypi_version": "0.4.8", - "pypi_create": true, - "pypi_run": true, - "git_hash": "b8cf91a", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-picture-api": { - "_runtime_latest": "2.3.1", - "first_seen": "89f8745", - "module_name": "nonebot_plugin_picture_api", - "project_link": "nonebot-plugin-picture-api", - "display_name": "nonebot-plugin-picture-api", - "homepage": "https://github.com/Q1351998764/nonebot-plugin-picture-api", - "pypi_version": "1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "7013a21", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-wenan": { - "_runtime_latest": "2.3.1", - "first_seen": "f8f5750", - "module_name": "nonebot_plugin_wenan", - "project_link": "nonebot-plugin-wenan", - "display_name": "nonebot-plugin-wenan", - "homepage": "https://github.com/Q1351998764/nonebot-plugin-wenan", - "pypi_version": "1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f33deab", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-pjsk": { - "_runtime_latest": "2.3.1", - "first_seen": "7203981", - "module_name": "nonebot_plugin_pjsk", - "project_link": "nonebot-plugin-pjsk", - "display_name": "Sekai Stickers", - "homepage": "https://github.com/Agnes4m/nonebot_plugin_pjsk", - "pypi_version": "0.4.0.post1", - "pypi_create": true, - "pypi_run": true, - "git_hash": "eb5743d", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-mongodb": { - "_runtime_latest": "2.3.1", - "first_seen": "a04580e", - "module_name": "nonebot_plugin_mongodb", - "project_link": "nonebot-plugin-mongodb", - "display_name": "MongoDB", - "homepage": "https://github.com/Well2333/nonebot-plugin-mongodb", - "pypi_version": "0.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1ea620e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-templates": { - "_runtime_latest": "2.3.1", - "first_seen": "1b225cb", - "module_name": "nonebot_plugin_templates", - "project_link": "nonebot-plugin-templates", - "display_name": "templates_render", - "homepage": "https://github.com/canxin121/nonebot_plugin_templates", - "pypi_version": "0.1.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "92c81c4", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-pokesomeone": { - "_runtime_latest": "2.3.1", - "first_seen": "4fc9977", - "module_name": "nonebot_plugin_pokesomeone", - "project_link": "nonebot-plugin-pokesomeone", - "display_name": "指定戳一戳", - "homepage": "https://github.com/canxin121/nonebot_plugin_pokesomeone", - "pypi_version": "0.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "28412e2", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-dall-e": { - "_runtime_latest": "2.3.1", - "first_seen": "70ece41", - "module_name": "nonebot_plugin_dall-e", - "project_link": "nonebot-plugin-dall-e", - "display_name": "DALL-E绘图", - "homepage": "https://github.com/Rockytkg/nonebot_plugin_dall-e", - "pypi_version": "0.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5b8b6cd", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-tempfile": { - "_runtime_latest": "2.3.1", - "first_seen": "9444e01", - "module_name": "nonebot_plugin_tempfile", - "project_link": "nonebot-plugin-tempfile", - "display_name": "方寸狭间", - "homepage": "https://github.com/NCBM/nonebot-plugin-tempfile", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "49af002", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-disconnect-notice": { - "_runtime_latest": "2.3.1", - "first_seen": "45e10e7", - "module_name": "nonebot_plugin_disconnect_notice", - "project_link": "nonebot-plugin-disconnect-notice", - "display_name": "bot断连通知", - "homepage": "https://github.com/Cypas/nonebot_plugin_disconnect_notice", - "pypi_version": "0.2.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "2f3d274", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-BotMailNotice": { - "_runtime_latest": "2.3.1", - "first_seen": "aa6faba", - "module_name": "nonebot_plugin_BotMailNotice", - "project_link": "nonebot-plugin-BotMailNotice", - "display_name": "Bot上下线邮件通知", - "homepage": "https://github.com/ZM25XC/BotMailNotice", - "pypi_version": "0.0.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "d1aa8e8", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-theworld": { - "_runtime_latest": "2.3.1", - "first_seen": "a2f2b81", - "module_name": "nonebot_plugin_theworld", - "project_link": "nonebot-plugin-theworld", - "display_name": "The World", - "homepage": "https://github.com/A-kirami/nonebot-plugin-theworld", - "pypi_version": "0.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "000363d", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-nonememe": { - "_runtime_latest": "2.3.1", - "first_seen": "062af45", - "module_name": "nonebot_plugin_nonememe", - "project_link": "nonebot-plugin-nonememe", - "display_name": "NoneMeme", - "homepage": "https://github.com/lgc-NB2Dev/nonebot-plugin-nonememe", - "pypi_version": "0.3.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "cb43cb7", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-aujob": { - "_runtime_latest": "2.3.1", - "first_seen": "6bb2c46", - "module_name": "nonebot_plugin_aujob", - "project_link": "nonebot-plugin-aujob", - "display_name": "Among US中的TOH模组职业介绍", - "homepage": "https://github.com/qwqZYLqwq/nonebot-plugin-aujob", - "pypi_version": "1.1.514", - "pypi_create": true, - "pypi_run": false, - "git_hash": "97a3a71", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bind": { - "_runtime_latest": "2.3.1", - "first_seen": "babafca", - "module_name": "nonebot_plugin_bind", - "project_link": "nonebot-plugin-bind", - "display_name": "跨平台账户绑定", - "homepage": "https://github.com/canxin121/nonebot_plugin_bind", - "pypi_version": "0.2.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "601ef07", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-savepic": { - "_runtime_latest": "2.3.1", - "first_seen": "2394483", - "module_name": "nonebot_plugin_savepic", - "project_link": "nonebot-plugin-savepic", - "display_name": "Savepic", - "homepage": "https://github.com/Yan-Zero/nonebot-plugin-savepic", - "pypi_version": "0.3.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e5190e4", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-lostark-wandering-trader": { - "_runtime_latest": "2.3.1", - "first_seen": "cfda433", - "module_name": "nonebot_plugin_lostark_wandering_trader", - "project_link": "nonebot-plugin-lostark-wandering-trader", - "display_name": "命运方舟流浪商人卡牌刷新提示", - "homepage": "https://github.com/EmiyaGm/nonebot-plugin-lostark-wandering-trader", - "pypi_version": "0.2.2", - "pypi_create": true, - "pypi_run": true, - "git_hash": "4aaacc7", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-talk-with-poe-ai": { - "_runtime_latest": "2.0.1", - "first_seen": "885db90", - "module_name": "nonebot_plugin_talk_with_poe_ai", - "project_link": "nonebot-plugin-talk-with-poe-ai", - "display_name": "talk with poe ai", - "homepage": "https://github.com/nikissXI/nonebot_plugins/tree/main/nonebot_plugin_talk_with_poe_ai", - "pypi_version": "0.1.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "562ec79" - }, - "nonebot-plugin-csornament": { - "_runtime_latest": "2.3.1", - "first_seen": "08fde75", - "module_name": "nonebot_plugin_csornament", - "project_link": "nonebot-plugin-csornament", - "display_name": "CSGO饰品查询机器人", - "homepage": "https://github.com/Sydrr0/nonebot-plugin-csornament", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "bd3d976", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-kanonbot": { - "_runtime_latest": "2.3.1", - "first_seen": "f94b802", - "module_name": "nonebot_plugin_kanonbot", - "project_link": "nonebot-plugin-kanonbot", - "display_name": "KanonBot", - "homepage": "https://github.com/SuperGuGuGu/nonebot_plugin_kanonbot", - "pypi_version": "0.3.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "c8d8592", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-mcversion": { - "_runtime_latest": "2.3.1", - "first_seen": "a76bf27", - "module_name": "nonebot_plugin_mcversion", - "project_link": "nonebot-plugin-mcversion", - "display_name": "MC版本更新检测", - "homepage": "https://github.com/CN171-1/nonebot_plugin_mcversion", - "pypi_version": "0.3.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "fae3cbb", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-muteme": { - "_runtime_latest": "2.3.1", - "first_seen": "1f3abc2", - "module_name": "nonebot_plugin_muteme", - "project_link": "nonebot-plugin-muteme", - "display_name": "Muteme(我禁我自己)", - "homepage": "https://github.com/XTxiaoting14332/nonebot-plugin-muteme", - "pypi_version": "0.0.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9ffc812", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-jx3": { - "_runtime_latest": "2.3.1", - "first_seen": "3098b7c", - "module_name": "nonebot_plugin_jx3", - "project_link": "nonebot-plugin-jx3", - "display_name": "剑网三查询和推送", - "homepage": "https://github.com/fuyang0811/nonebot-plugin-jx3", - "pypi_version": "0.7", - "pypi_create": true, - "pypi_run": false, - "git_hash": "34e639c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-xinghuo-api": { - "_runtime_latest": "2.3.1", - "first_seen": "28c53fe", - "module_name": "nonebot_plugin_xinghuo_api", - "project_link": "nonebot-plugin-xinghuo-api", - "display_name": "科大讯飞星火大模型聊天", - "homepage": "https://github.com/Alpaca4610/nonebot-plugin-xinghuo-api", - "pypi_version": "2.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3cac3ad", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "dicergirl": { - "_runtime_latest": "2.3.1", - "first_seen": "e3a1c02", - "module_name": "dicergirl", - "project_link": "dicergirl", - "display_name": "DicerGirl", - "homepage": "https://gitee.com/unvisitor/dicer", - "pypi_version": "3.5.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "542c33a", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-uvdiviner": { - "_runtime_latest": "2.3.1", - "first_seen": "1c0e889", - "module_name": "nonebot_plugin_uvdiviner", - "project_link": "nonebot-plugin-uvdiviner", - "display_name": "周易蓍草占卜", - "homepage": "https://gitee.com/unvisitor/nonebot-plugin-uvdiviner", - "pypi_version": "2.2.11", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3415d6c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-push": { - "_runtime_latest": "2.3.1", - "first_seen": "f97fbc8", - "module_name": "nonebot_plugin_push", - "project_link": "nonebot-plugin-push", - "display_name": "消息推送插件", - "homepage": "https://github.com/mobyw/nonebot-plugin-push", - "pypi_version": "0.1.0", - "pypi_create": true, - "pypi_run": true, - "git_hash": "731be03", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-sudo": { - "_runtime_latest": "2.3.1", - "first_seen": "53bcae0", - "module_name": "nonebot_plugin_sudo", - "project_link": "nonebot-plugin-sudo", - "display_name": "SUDO", - "homepage": "https://github.com/This-is-XiaoDeng/nonebot-plugin-sudo", - "pypi_version": "1.0.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "519c492", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-arxivRSS": { - "_runtime_latest": "2.3.1", - "first_seen": "ba4fbb2", - "module_name": "nonebot_plugin_arxivRSS", - "project_link": "nonebot-plugin-arxivRSS", - "display_name": "arxiv订阅", - "homepage": "https://github.com/LuckySJTU/nonebot-plugin-arxivRSS/", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f4690f9", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-anime-trace": { - "_runtime_latest": "2.3.1", - "first_seen": "53d1de4", - "module_name": "nonebot_plugin_anime_trace", - "project_link": "nonebot-plugin-anime-trace", - "display_name": "识别动漫gal角色", - "homepage": "https://github.com/tomorinao-www/nonebot-plugin-anime-trace", - "pypi_version": "0.1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "6fcaec8", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-send-message": { - "_runtime_latest": "2.3.1", - "first_seen": "4bfea99", - "module_name": "nonebot_plugin_send_message", - "project_link": "nonebot-plugin-send-message", - "display_name": "双向聊天插件", - "homepage": "https://github.com/bingqiu456/nonebot_plugin_send_message", - "pypi_version": "3.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3cc2bc4", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-requests": { - "_runtime_latest": "2.3.1", - "first_seen": "807a863", - "module_name": "nonebot_plugin_requests", - "project_link": "nonebot-plugin-requests", - "display_name": "Nonebot Requests", - "homepage": "https://github.com/Ailitonia/nonebot-plugin-requests", - "pypi_version": "0.1.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "7df202c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-shutup": { - "_runtime_latest": "2.3.1", - "first_seen": "41498bd", - "module_name": "nonebot_plugin_shutup", - "project_link": "nonebot-plugin-shutup", - "display_name": "雪豹闭嘴", - "homepage": "https://github.com/Agnes4m/nonebot_pluigin_shutup", - "pypi_version": "0.0.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "6aa45a5", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-simple-httpcat": { - "_runtime_latest": "2.3.1", - "first_seen": "562ec79", - "module_name": "nonebot_plugin_simple_httpcat", - "project_link": "nonebot-plugin-simple-httpcat", - "display_name": "httpcat-状态猫😺", - "homepage": "https://github.com/XTxiaoting14332/nonebot-plugin-simple-httpcat", - "pypi_version": "0.0.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "8f5e877", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-qrcode2": { - "_runtime_latest": "2.3.1", - "first_seen": "086af8f", - "module_name": "nonebot_plugin_qrcode2", - "project_link": "nonebot-plugin-qrcode2", - "display_name": "二维码", - "homepage": "https://github.com/tomorinao-www/nonebot-plugin-qrcode2", - "pypi_version": "0.2.2", - "pypi_create": false, - "pypi_run": false, - "git_hash": "139154f", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-fakemsg": { - "_runtime_latest": "2.3.1", - "first_seen": "8d8d116", - "module_name": "nonebot_plugin_fakemsg", - "project_link": "nonebot-plugin-fakemsg", - "display_name": "消息伪造", - "homepage": "https://github.com/Cvandia/nonebot-plugin-fakemsg", - "pypi_version": "0.1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1226e4c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-alchelper": { - "_runtime_latest": "2.3.1", - "first_seen": "75c5678", - "module_name": "nonebot_plugin_alchelper", - "project_link": "nonebot-plugin-alchelper", - "display_name": "Alconna 帮助工具", - "homepage": "https://github.com/RF-Tar-Railt/nonebot-plugin-alchelper", - "pypi_version": "0.5.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "448e9db", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-souti": { - "_runtime_latest": "2.3.1", - "first_seen": "4fa2af4", - "module_name": "nonebot_plugin_souti", - "project_link": "nonebot-plugin-souti", - "display_name": "nonebot-plugin-souti", - "homepage": "https://github.com/xiaoWangSec/nonebot-plugin-souti", - "pypi_version": "1.0.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3ed727d", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-helper-plus": { - "_runtime_latest": "2.3.1", - "first_seen": "111dfbf", - "module_name": "nonebot_plugin_helper_plus", - "project_link": "nonebot-plugin-helper-plus", - "display_name": "helper_plus", - "homepage": "https://github.com/fR0Z863xF/nonebot-plugin-helper-plus", - "pypi_version": "0.1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "ba3d09c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-wearskirt": { - "_runtime_latest": "2.3.1", - "first_seen": "fbc4225", - "module_name": "nonebot_plugin_wearskirt", - "project_link": "nonebot-plugin-wearskirt", - "display_name": "女装 !", - "homepage": "https://github.com/Lfhsheng/nonebot-plugin-wearskirt", - "pypi_version": "0.1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "988a373", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-skland-arksign": { - "_runtime_latest": "2.3.1", - "first_seen": "139b399", - "module_name": "nonebot_plugin_skland_arksign", - "project_link": "nonebot-plugin-skland-arksign", - "display_name": "森空岛明日方舟签到器", - "homepage": "https://github.com/GuGuMur/nonebot-plugin-skland-arksign", - "pypi_version": "0.7.0", - "pypi_create": true, - "pypi_run": true, - "git_hash": "6881abe", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-group-whitelist": { - "_runtime_latest": "2.3.1", - "first_seen": "8057787", - "module_name": "nonebot_plugin_group_whitelist", - "project_link": "nonebot-plugin-group-whitelist", - "display_name": "nonebot_plugin_group_whitelist", - "homepage": "https://github.com/Rikka-desu/nonebot_plugin_group_whitelist", - "pypi_version": "0.9.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "d2df3df", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-ernie": { - "_runtime_latest": "2.3.1", - "first_seen": "66384ad", - "module_name": "nonebot_plugin_ernie", - "project_link": "nonebot-plugin-ernie", - "display_name": "文心一言", - "homepage": "https://github.com/Noctulus/nonebot-plugin-ernie", - "pypi_version": "0.2.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "610753e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-video-api": { - "_runtime_latest": "2.3.1", - "first_seen": "fd9ba67", - "module_name": "nonebot_plugin_video_api", - "project_link": "nonebot-plugin-video-api", - "display_name": "nonebot-plugin-video-api", - "homepage": "https://github.com/Q1351998764/nonebot-plugin-video-api", - "pypi_version": "1.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "198d0f6", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-ottohzys": { - "_runtime_latest": "2.3.1", - "first_seen": "ba3efa9", - "module_name": "nonebot_plugin_ottohzys", - "project_link": "nonebot-plugin-ottohzys", - "display_name": "大电老师活字印刷", - "homepage": "https://github.com/lgc-NB2Dev/nonebot-plugin-ottohzys", - "pypi_version": "0.2.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "eadc5b6", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-ability": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_ability", - "project_link": "nonebot-plugin-ability", - "display_name": "聚能环", - "homepage": "https://github.com/KomoriDev/nonebot-plugin-ability", - "pypi_version": "0.1.0", - "pypi_create": true, - "pypi_run": true, - "git_hash": "2a1618f", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-agent": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_agent", - "project_link": "nonebot-plugin-agent", - "display_name": "Nonebot Agent", - "homepage": "https://github.com/Dobiichi-Origami/nonebot-plugin-agent#nonebot-plugin-agent", - "pypi_version": "0.0.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-blockwords": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_blockwords", - "project_link": "nonebot-plugin-blockwords", - "display_name": "屏蔽词插件", - "homepage": "https://github.com/MelodyKnit/nonebot-plugin-blockwords", - "pypi_version": "0.2.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e173afb", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-matchreminder": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_matchreminder", - "project_link": "nonebot-plugin-matchreminder", - "display_name": "算法比赛查询和今日比赛自动提醒", - "homepage": "https://github.com/zhuhiki/nonebot_plugin_matchreminder", - "pypi_version": "1.0.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "4c64fc1", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-eop-ai": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_eop_ai", - "project_link": "nonebot-plugin-eop-ai", - "display_name": "talk with eop ai", - "homepage": "https://github.com/nikissXI/nonebot_plugins/tree/main/nonebot_plugin_eop_ai", - "pypi_version": "0.1.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-playercheck": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_playercheck", - "project_link": "nonebot-plugin-playercheck", - "display_name": "nonebot-plugin-playercheck", - "homepage": "https://github.com/ohdmire/nonebot-plugin-playercheck", - "pypi_version": "1.5.9", - "pypi_create": true, - "pypi_run": true, - "git_hash": "b023b31", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-morep-finder": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_morep_finder", - "project_link": "nonebot-plugin-morep-finder", - "display_name": "morep-finder", - "homepage": "https://github.com/ninthseason/nonebot-plugin-morep-finder", - "pypi_version": "1.0.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "fd53041", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-yesman": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot-plugin-yesman", - "project_link": "nonebot-plugin-yesman", - "display_name": "肯定机", - "homepage": "https://github.com/EuDs63/nonebot-plugin-yesman", - "pypi_version": "1.4.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "214bade", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-fgoavatarguess": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_fgoavatarguess", - "project_link": "nonebot-plugin-fgoavatarguess", - "display_name": "FGO猜从者", - "homepage": "https://github.com/influ3nza/nonebot-plugin-fgoavatarguess", - "pypi_version": "0.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "6d83757", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-vrchat": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_vrchat", - "project_link": "nonebot-plugin-vrchat", - "display_name": "VRChat查询", - "homepage": "https://github.com/Agnes4m/nonebot_plugin_vrchat", - "pypi_version": "0.1.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "59563f1", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-batitle": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_batitle", - "project_link": "nonebot-plugin-batitle", - "display_name": "BlueArchive Title Generator", - "homepage": "https://github.com/MerCuJerry/nonebot-plugin-batitle", - "pypi_version": "0.1.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "294ced1", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-maimaidx": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_maimaidx", - "project_link": "nonebot-plugin-maimaidx", - "display_name": "nonebot-plugin-maimaidx", - "homepage": "https://github.com/Yuri-YuzuChaN/nonebot-plugin-maimaidx", - "pypi_version": "0.0.15", - "pypi_create": true, - "pypi_run": false, - "git_hash": "18fbd58", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-getbapics": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_getbapics", - "project_link": "nonebot-plugin-getbapics", - "display_name": "nonebot-plugin-getbapics", - "homepage": "https://github.com/hanasa2023/nonebot-plugin-getbapics/blob/master/README.md", - "pypi_version": "0.1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": null, - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-make-choice": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_make_choice", - "project_link": "nonebot-plugin-make-choice", - "display_name": "选择困难症", - "homepage": "https://github.com/SherkeyXD/nonebot-plugin-make-choice", - "pypi_version": "1.0.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "b56c5c5", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-op-finder": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_op_finder", - "project_link": "nonebot-plugin-op-finder", - "display_name": "op-finder", - "homepage": "https://github.com/ninthseason/nonebot-plugin-op-finder", - "pypi_version": "1.0.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "af2ca69", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-scheduled-broadcast": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_scheduled_broadcast", - "project_link": "nonebot-plugin-scheduled-broadcast", - "display_name": "定时广播插件", - "homepage": "https://github.com/T0nyX1ang/nonebot-plugin-scheduled-broadcast", - "pypi_version": "0.1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "ce7156f", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-any": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_any", - "project_link": "nonebot-plugin-any", - "display_name": "Nonebot2 Any 多平台服务", - "homepage": "https://github.com/MelodyYuuka/nonebot-plugin-any", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "bf3e436", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bertvits2": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_bertvits2", - "project_link": "nonebot-plugin-bertvits2", - "display_name": "nonebot-plugin-bertvits2", - "homepage": "https://github.com/jiangyuxiaoxiao/nonebot-plugin-bertvits2", - "pypi_version": "0.1.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "ae1611e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-wake-on-lan": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_wake_on_lan", - "project_link": "nonebot-plugin-wake-on-lan", - "display_name": "局域网唤醒", - "homepage": "https://github.com/tiehu/nonebot-plugin-wol", - "pypi_version": "0.1.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3b888f5", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bingimagecreator": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_bingimagecreator", - "project_link": "nonebot-plugin-bingimagecreator", - "display_name": "DALL-E 3绘图", - "homepage": "https://github.com/Alpaca4610/nonebot_plugin_BingImageCreator.git", - "pypi_version": "0.1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "504cdcc", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-user": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_user", - "project_link": "nonebot-plugin-user", - "display_name": "用户", - "homepage": "https://github.com/he0119/nonebot-plugin-user", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "a37424c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-shorturl": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_shorturl", - "project_link": "nonebot-plugin-shorturl", - "display_name": "短链接服务支持", - "homepage": "https://github.com/StarHeartHunt/nonebot-plugin-shorturl", - "pypi_version": "0.4.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "70f2e1f", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-smms": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_smms", - "project_link": "nonebot-plugin-smms", - "display_name": "sm.ms图床", - "homepage": "https://github.com/mobyw/nonebot-plugin-smms", - "pypi_version": "0.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "07fe3b4", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-nsfw": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_nsfw", - "project_link": "nonebot-plugin-nsfw", - "display_name": "群聊 NSFW 图片检测", - "homepage": "https://github.com/iyume/nonebot-plugin-nsfw", - "pypi_version": "0.10", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f9e9c24", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-batarot": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_batarot", - "project_link": "nonebot-plugin-batarot", - "display_name": "碧蓝档案塔罗牌", - "homepage": "https://github.com/Perseus037/nonebot_plugin_batarot", - "pypi_version": "0.2.1.post1", - "pypi_create": true, - "pypi_run": true, - "git_hash": "f12ed51", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-cnrail": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_cnrail", - "project_link": "nonebot-plugin-cnrail", - "display_name": "CNRail", - "homepage": "https://github.com/lgc-NB2Dev/nonebot-plugin-cnrail", - "pypi_version": "0.2.3", - "pypi_create": true, - "pypi_run": true, - "git_hash": "8fd9d41", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-longtu": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_longtu", - "project_link": "nonebot-plugin-longtu", - "display_name": "随机龙图", - "homepage": "https://github.com/Perseus037/nonebot_plugin_longtu", - "pypi_version": "0.1.1.post1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3e234e0", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-riffusion": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_riffusion", - "project_link": "nonebot-plugin-riffusion", - "display_name": "Riffusion", - "homepage": "https://github.com/lgc-NB2Dev/nonebot-plugin-riffusion", - "pypi_version": "0.2.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "6528902", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-splatoon3-schedule": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_splatoon3_schedule", - "project_link": "nonebot-plugin-splatoon3-schedule", - "display_name": "splatoon3游戏日程查询", - "homepage": "https://github.com/Cypas/splatoon3-schedule", - "pypi_version": "1.7.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "83eae35", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-phigros-qq": { - "_runtime_latest": "2.2.0", - "first_seen": "results", - "module_name": "nonebot_plugin_phigros_qq", - "project_link": "nonebot-plugin-phigros-qq", - "display_name": "Phigros查分器(Adapter-qq)", - "homepage": "https://github.com/XTxiaoting14332/nonebot-plugin-phigros", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "861bd20", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-antimonkey": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_antimonkey", - "project_link": "nonebot-plugin-antimonkey", - "display_name": "AntiMonkey", - "homepage": "https://github.com/phquathi/nonebot_plugin_antimonkey", - "pypi_version": "1.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "a5e4cb3", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-waiter": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_waiter", - "project_link": "nonebot-plugin-waiter", - "display_name": "Waiter 插件", - "homepage": "https://github.com/RF-Tar-Railt/nonebot-plugin-waiter", - "pypi_version": "0.6.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "7a87106", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-nikke": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_nikke", - "project_link": "nonebot-plugin-nikke", - "display_name": "nonebot_plugin_nikke", - "homepage": "https://github.com/Perseus037/nonebot_plugin_nikke", - "pypi_version": "0.1.0.post4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "7e2bef4", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-imagemaster": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_imagemaster", - "project_link": "nonebot-plugin-imagemaster", - "display_name": "nonebot-plugin-imagemaster", - "homepage": "https://github.com/phquathi/nonebot_plugin_imagemaster", - "pypi_version": "1.0.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "0824d4a", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-mcpic": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_mcpic", - "project_link": "nonebot-plugin-mcpic", - "display_name": "随机MC图", - "homepage": "https://github.com/wlm3201/nonebot-plugin-mcpic", - "pypi_version": "0.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e365459", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-pingti": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_pingti", - "project_link": "nonebot-plugin-pingti", - "display_name": "最佳平替", - "homepage": "https://github.com/lgc-NB2Dev/nonebot-plugin-pingti", - "pypi_version": "0.1.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "6ea49b5", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-wx4": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_wx4", - "project_link": "nonebot-plugin-wx4", - "display_name": "文心一言4适配", - "homepage": "https://github.com/Pasumao/nonebot-plugin-wx4", - "pypi_version": "1.3.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e52d953", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-mypower": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_mypower", - "project_link": "nonebot-plugin-mypower", - "display_name": "nonebot-plugin-mypower", - "homepage": "https://github.com/tianyisama/nonebot_plugin_mypower", - "pypi_version": "0.1.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "a43eae5", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-finallines": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_finallines", - "project_link": "nonebot-plugin-finallines", - "display_name": "最终台词", - "homepage": "https://github.com/Perseus037/nonebot_plugin_finallines", - "pypi_version": "0.1.1.post2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e478138", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "haruka_bot_red": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "haruka_bot_red", - "project_link": "haruka_bot_red", - "display_name": "haruka_bot_red", - "homepage": "https://github.com/boxie123/HarukaBot-Red", - "pypi_version": "0.1.7", - "pypi_create": true, - "pypi_run": true, - "git_hash": "e88b8f0", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-enatfrp": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_enatfrp", - "project_link": "nonebot-plugin-enatfrp", - "display_name": "SakuraFrp", - "homepage": "https://github.com/eya46/nonebot_plugin_enatfrp", - "pypi_version": "0.2.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "b6880ce", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-gemini": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_gemini", - "project_link": "nonebot-plugin-gemini", - "display_name": "nonebot-plugin-gemini", - "homepage": "https://github.com/zhaomaoniu/nonebot-plugin-gemini", - "pypi_version": "0.4.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "03a93da", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-randpic": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_randpic", - "project_link": "nonebot-plugin-randpic", - "display_name": "随机发送图片", - "homepage": "https://github.com/HuParry/nonebot-plugin-randpic", - "pypi_version": "0.1.3", - "pypi_create": true, - "pypi_run": true, - "git_hash": "e56eeae", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-badrawcard": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_BAdrawcard", - "project_link": "nonebot-plugin-badrawcard", - "display_name": "BA模拟抽卡", - "homepage": "https://github.com/lengmianzz/nonebot-plugin-BAdrawcard", - "pypi_version": "0.2.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "6970cec", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-bard": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_bard", - "project_link": "nonebot-plugin-bard", - "display_name": "谷歌Bard聊天", - "homepage": "https://github.com/Alpaca4610/nonebot-plugin-bard", - "pypi_version": "0.5.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "c80c7a6", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-nekoimage": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_nekoimage", - "project_link": "nonebot-plugin-nekoimage", - "display_name": "nonebot-plugin-nekoimage", - "homepage": "https://github.com/pk5ls20/nonebot-plugin-nekoimage", - "pypi_version": "0.3.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f49d5e5", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-nezha": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_nezha", - "project_link": "nonebot-plugin-nezha", - "display_name": "哪吒监控插件", - "homepage": "https://github.com/eya46/nonebot_plugin_nezha", - "pypi_version": "0.4.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "fbe8559", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-gpt": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_gpt", - "project_link": "nonebot-plugin-gpt", - "display_name": "ChatGPT 聊天", - "homepage": "https://github.com/nek0us/nonebot-plugin-gpt", - "pypi_version": "0.0.26", - "pypi_create": true, - "pypi_run": true, - "git_hash": "3fe5703", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-easy-blacklist": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_easy_blacklist", - "project_link": "nonebot-plugin-easy-blacklist", - "display_name": "黑名单插件", - "homepage": "https://github.com/bingqiu456/nonebot-plugin-easy-blacklist", - "pypi_version": "1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "d16e906", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-reminder": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_reminder", - "project_link": "nonebot-plugin-reminder", - "display_name": "定时提醒", - "homepage": "https://github.com/velor2012/nonebot_plugin_reminder", - "pypi_version": "0.4.0.post2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3bb066a", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-chikari-yinpa": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_chikari_yinpa", - "project_link": "nonebot-plugin-chikari-yinpa", - "display_name": "Chikari_yinpa", - "homepage": "https://github.com/mrqx0195/nonebot_plugin_chikari_yinpa", - "pypi_version": "1.4.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "c901f45", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-splatoon3-nso": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_splatoon3_nso", - "project_link": "nonebot-plugin-splatoon3-nso", - "display_name": "splatoon3游戏nso查询", - "homepage": "https://github.com/Cypas/splatoon3-nso", - "pypi_version": "1.4.3", - "pypi_create": true, - "pypi_run": true, - "git_hash": "9803150", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-bf1marneserverlist": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_bf1marneserverlist", - "project_link": "nonebot-plugin-bf1marneserverlist", - "display_name": "战地1-马恩私人服务器服务器查询", - "homepage": "https://github.com/SAFEluren/nonebot-plugin-bf1marneserverlist", - "pypi_version": "0.1.27", - "pypi_create": true, - "pypi_run": false, - "git_hash": "2a356b3", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-kawaii-status": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_kawaii_status", - "project_link": "nonebot-plugin-kawaii-status", - "display_name": "运行状态", - "homepage": "https://github.com/KomoriDev/nonebot-plugin-kawaii-status", - "pypi_version": "0.1.5", - "pypi_create": true, - "pypi_run": true, - "git_hash": "18048bb", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-vits-tts": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_vits_tts", - "project_link": "nonebot-plugin-vits-tts", - "display_name": "nonebot-plugin-vits-tts", - "homepage": "https://github.com/Redmomn/nonebot-plugin-vits-tts", - "pypi_version": "0.1.7", - "pypi_create": true, - "pypi_run": false, - "git_hash": "28fe85b", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-chatglm-plus": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_chatglm_plus", - "project_link": "nonebot-plugin-chatglm-plus", - "display_name": "人性化的ChatGLM", - "homepage": "https://github.com/XTxiaoting14332/nonebot-plugin-chatglm-plus", - "pypi_version": "0.1.9", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e076c5a", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-fishing": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_fishing", - "project_link": "nonebot-plugin-fishing", - "display_name": "赛博钓鱼", - "homepage": "https://github.com/C14H22O/nonebot-plugin-fishing", - "pypi_version": "0.2.3", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1a0fa5c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-a2s-query": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_a2s_query", - "project_link": "nonebot-plugin-a2s-query", - "display_name": "a2s查询", - "homepage": "https://github.com/NanakaNeko/nonebot-plugin-a2s-query", - "pypi_version": "0.1.7", - "pypi_create": true, - "pypi_run": true, - "git_hash": "e3d2da2", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-dice-narrator": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_dice_narrator", - "project_link": "nonebot-plugin-dice-narrator", - "display_name": "nonebot-plugin-dice-narrator", - "homepage": "https://github.com/KroMiose/nonebot_plugin_dice_narrator", - "pypi_version": "0.1.13", - "pypi_create": true, - "pypi_run": false, - "git_hash": "33fedc6", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-steam-info": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_steam_info", - "project_link": "nonebot-plugin-steam-info", - "display_name": "Steam Info", - "homepage": "https://github.com/zhaomaoniu/nonebot-plugin-steam-info", - "pypi_version": "1.0.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "cbfbe48", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-orangejuice": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_orangejuice", - "project_link": "nonebot-plugin-orangejuice", - "display_name": "100orangejuice", - "homepage": "https://github.com/FDCraft/nonebot-plugin-orangejuice", - "pypi_version": "0.12.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "4d6df6c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot_plugin_md": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_md", - "project_link": "nonebot_plugin_md", - "display_name": "Muse Dash", - "homepage": "https://github.com/Agnes4m/nonebot_plugin_md", - "pypi_version": "0.1.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "766f6ee", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-duel": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_duel", - "project_link": "nonebot-plugin-duel", - "display_name": "nonebot-plugin-duel", - "homepage": "https://github.com/Redmomn/nonebot-plugin-duel", - "pypi_version": "0.1.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "82dc83f", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-pallas-repeater": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_pallas_repeater", - "project_link": "nonebot-plugin-pallas-repeater", - "display_name": "nonebot-plugin-pallas-repeater", - "homepage": "https://github.com/Redmomn/nonebot-plugin-pallas-repeater", - "pypi_version": "0.1.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "7ba0617", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-humanaticstore": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_humanaticstore", - "project_link": "nonebot-plugin-humanaticstore", - "display_name": "人类友好数据配置", - "homepage": "https://github.com/QuanhuZeYu/nonebot-plugin-humanaticstore", - "pypi_version": "0.1.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "6072521", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-ghtiles": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_ghtiles", - "project_link": "nonebot-plugin-ghtiles", - "display_name": "ghtiles", - "homepage": "https://github.com/Lipraty/nonebot-plugin-ghtiles", - "pypi_version": "0.1.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9974abe", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-diffsinger": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_diffsinger", - "project_link": "nonebot-plugin-diffsinger", - "display_name": "diffsinger", - "homepage": "https://github.com/zhzhongshi/nonebot-plugin-diffsinger", - "pypi_version": "0.1.13", - "pypi_create": true, - "pypi_run": false, - "git_hash": "b7e8072", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-chikari-economy": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_chikari_economy", - "project_link": "nonebot-plugin-chikari-economy", - "display_name": "Chikari_economy", - "homepage": "https://github.com/mrqx0195/nonebot_plugin_chikari_economy", - "pypi_version": "0.0.7", - "pypi_create": true, - "pypi_run": false, - "git_hash": "133060e", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-auto-bot-selector": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_auto_bot_selector", - "project_link": "nonebot-plugin-auto-bot-selector", - "display_name": "nonebot-plugin-auto-bot-selector", - "homepage": "https://github.com/MountainDash/nonebot-plugin-auto-bot-selector", - "pypi_version": "0.2.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "65a2c57", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-nai3": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_nai3", - "project_link": "nonebot-plugin-nai3", - "display_name": "nonebot-plugin-nai3", - "homepage": "https://github.com/zhulinyv/nonebot_plugin_nai3", - "pypi_version": "0.1.10", - "pypi_create": true, - "pypi_run": false, - "git_hash": "67c4ef7", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-clovers": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_clovers", - "project_link": "nonebot-plugin-clovers", - "display_name": "clovers插件框架", - "homepage": "https://github.com/KarisAya/nonebot_plugin_clovers", - "pypi_version": "0.1.5", - "pypi_create": true, - "pypi_run": false, - "git_hash": "5733873", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-hx-yinying": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_hx_yinying", - "project_link": "nonebot-plugin-hx-yinying", - "display_name": "Hx_YinYing", - "homepage": "https://github.com/huanxin996/nonebot_plugin_hx-yinying", - "pypi_version": "1.3.13", - "pypi_create": true, - "pypi_run": true, - "git_hash": "df36181", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-fhl": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_fhl", - "project_link": "nonebot-plugin-fhl", - "display_name": "飞花令", - "homepage": "https://github.com/baiqwerdvd/nonebot-plugin-fhl", - "pypi_version": "1.0.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "39ecbcf", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-yinyu": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_yinyu", - "project_link": "nonebot-plugin-yinyu", - "display_name": "淫语", - "homepage": "https://github.com/shi-yingyingjiang/nonebot-plugin-yinyu", - "pypi_version": "0.0.6", - "pypi_create": true, - "pypi_run": false, - "git_hash": "968d03b", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-yinying-chat": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_yinying_chat", - "project_link": "nonebot-plugin-yinying-chat", - "display_name": "Yinying-Chat", - "homepage": "https://github.com/YuxiCN/nonebot_plugin_yinying_chat", - "pypi_version": "1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "c45935c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-dcqg-relay": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_dcqg_relay", - "project_link": "nonebot-plugin-dcqg-relay", - "display_name": "QQ频道-Discord 互通", - "homepage": "https://github.com/Autuamn/nonebot-plugin-dcqg-relay", - "pypi_version": "1.1.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "1d1110d", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-zsmeme": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_zsmeme", - "project_link": "nonebot-plugin-zsmeme", - "display_name": "战双表情", - "homepage": "https://github.com/shi-yingyingjiang/nonebot-plugin-zsmeme", - "pypi_version": "0.0.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "9c1235c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-sanyao": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_sanyao", - "project_link": "nonebot-plugin-sanyao", - "display_name": "三爻易数", - "homepage": "https://github.com/afterow/nonebot-plugin-sanyao", - "pypi_version": "0.2.8", - "pypi_create": true, - "pypi_run": false, - "git_hash": "7199501", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-cyberfurry": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_cyberfurry", - "project_link": "nonebot-plugin-cyberfurry", - "display_name": "cyberfurry", - "homepage": "https://github.com/cubstaryow/nonebot-plugin-cyberfurry", - "pypi_version": "1.6.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "51a4031", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-HelpWithPic": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_helpwithpic", - "project_link": "nonebot-plugin-HelpWithPic", - "display_name": "HelpWithPic", - "homepage": "https://github.com/cubstaryow/nonebot-plugin-HelpWithPic", - "pypi_version": "1.5.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "0565cd7", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-sticker-saver": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_sticker_saver", - "project_link": "nonebot-plugin-sticker-saver", - "display_name": "表情包保存器", - "homepage": "https://github.com/colasama/nonebot-plugin-sticker-saver", - "pypi_version": "0.1.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "3f0918e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-anime-downloader": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_anime_downloader", - "project_link": "nonebot-plugin-anime-downloader", - "display_name": "番剧下载", - "homepage": "https://github.com/zhaomaoniu/nonebot-plugin-anime-downloader", - "pypi_version": "0.2.1", - "pypi_create": true, - "pypi_run": true, - "git_hash": "dccc602", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-with-ai-agents": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_with_ai_agents", - "project_link": "nonebot-plugin-with-ai-agents", - "display_name": "with_ai_agents", - "homepage": "https://github.com/yejue/nonebot-plugin-with-ai-agents", - "pypi_version": "0.1.13", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e8980d3", - "git_create": false, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-RanFurryPic": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_RanFurryPic", - "project_link": "nonebot-plugin-RanFurryPic", - "display_name": "随机毛图", - "homepage": "https://github.com/Ekac00/nonebot-plugin-RanFurryPic/", - "pypi_version": "1.1.9", - "pypi_create": true, - "pypi_run": false, - "git_hash": "869a25c", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-furryfusion": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_furryfusion", - "project_link": "nonebot-plugin-furryfusion", - "display_name": "兽聚动态", - "homepage": "https://github.com/Ekac00/nonebot-plugin-furryfusion", - "pypi_version": "0.1.4", - "pypi_create": true, - "pypi_run": false, - "git_hash": "c0f9419", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-tsugu-frontend": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_tsugu_frontend", - "project_link": "nonebot-plugin-tsugu-frontend", - "display_name": "BanG Dream! Tsugu Frontend", - "homepage": "https://github.com/zhaomaoniu/nonebot-plugin-tsugu-frontend", - "pypi_version": "0.1.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "6132dba", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-kurogames": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_kurogames", - "project_link": "nonebot-plugin-kurogames", - "display_name": "库洛游戏信息", - "homepage": "https://github.com/ConcyWee/nonebot-plugin-kurogames", - "pypi_version": "0.1.10", - "pypi_create": true, - "pypi_run": false, - "git_hash": "8560ff8", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-valve-server-query": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_valve_server_query", - "project_link": "nonebot-plugin-valve-server-query", - "display_name": "nonebot_plugin_valve_server_query", - "homepage": "https://github.com/LiLuo-B/nonebot-plugin-valve-server-query", - "pypi_version": "0.5.6", - "pypi_create": true, - "pypi_run": true, - "git_hash": "6dc4e2f", - "git_create": true, - "git_run": true, - "last_seen": "results" - }, - "nonebot-plugin-sparkapi": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_sparkapi", - "project_link": "nonebot-plugin-sparkapi", - "display_name": "科大讯飞星火大语言模型官方API聊天机器人插件", - "homepage": "https://github.com/CCLMSY/nonebot-plugin-sparkapi", - "pypi_version": "1.4.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "c930b6e", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-tsugu-bangdream-bot": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_tsugu_bangdream_bot", - "project_link": "nonebot-plugin-tsugu-bangdream-bot", - "display_name": "nonebot-plugin-tsugu-bangdream-bot", - "homepage": "https://github.com/WindowsSov8forUs/nonebot-plugin-tsugu-bangdream-bot", - "pypi_version": "0.1.7", - "pypi_create": true, - "pypi_run": false, - "git_hash": "6b50e87", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-calc24": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_calc24", - "project_link": "nonebot-plugin-calc24", - "display_name": "nonebot-plugin-calc24", - "homepage": "https://github.com/ajdgg/nonebot-plugin-calc24", - "pypi_version": "1.3.8", - "pypi_create": true, - "pypi_run": false, - "git_hash": "7423f25", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-nai3-bot": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_nai3_bot", - "project_link": "nonebot-plugin-nai3-bot", - "display_name": "自定义人格和AI绘图的混合聊天BOT", - "homepage": "https://github.com/Alpaca4610/nonebot_plugin_nai3_bot.git", - "pypi_version": "1.0.1", - "pypi_create": true, - "pypi_run": false, - "git_hash": "60f2d1f", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-dg-lab-play": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_dg_lab_play", - "project_link": "nonebot-plugin-dg-lab-play", - "display_name": "DG-Lab-Play", - "homepage": "https://github.com/Ljzd-PRO/nonebot-plugin-dg-lab-play", - "pypi_version": "1.0.0", - "pypi_create": true, - "pypi_run": false, - "git_hash": "79e0328", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-authrespond": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_authrespond", - "project_link": "nonebot-plugin-authrespond", - "display_name": "插件响应鉴权", - "homepage": "https://github.com/cubstaryow/nonebot-plugin-authrespond", - "pypi_version": "1.6.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "a1f1922", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-shutdown-hook": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_shutdown_hook", - "project_link": "nonebot-plugin-shutdown-hook", - "display_name": "高优先级关闭信号钩子插件", - "homepage": "https://github.com/Sclock/nonebot-plugin-shutdown-hook", - "pypi_version": "0.1.2", - "pypi_create": true, - "pypi_run": false, - "git_hash": "f078ccd", - "git_create": true, - "git_run": false, - "last_seen": "results" - }, - "nonebot-plugin-plus-one": { - "_runtime_latest": "2.3.1", - "first_seen": "results", - "module_name": "nonebot_plugin_plus_one", - "project_link": "nonebot-plugin-plus-one", - "display_name": "复读姬+1 PlusOne", - "homepage": "https://github.com/yejue/nonebot-plugin-plus-one", - "pypi_version": "0.1.10", - "pypi_create": true, - "pypi_run": false, - "git_hash": "e97ad71", - "git_create": false, - "git_run": false, - "last_seen": "results" - } -} \ No newline at end of file diff --git a/pdm.lock b/pdm.lock new file mode 100644 index 00000000..42f37262 --- /dev/null +++ b/pdm.lock @@ -0,0 +1,8 @@ +# This file is @generated by PDM. +# It is not intended for manual editing. + +[metadata] +groups = ["default"] +strategy = ["cross_platform", "inherit_metadata"] +lock_version = "4.4.1" +content_hash = "sha256:6f8b4890fa91fbbb3c3f0bdfd60adec605569359abd9df026cc6060bb446dde4" diff --git a/poetry.lock b/poetry.lock deleted file mode 100644 index aae5d5ec..00000000 --- a/poetry.lock +++ /dev/null @@ -1,165 +0,0 @@ -# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. - -[[package]] -name = "certifi" -version = "2023.7.22" -description = "Python package for providing Mozilla's CA Bundle." -optional = false -python-versions = ">=3.6" -files = [ - {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, - {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, -] - -[[package]] -name = "charset-normalizer" -version = "3.3.0" -description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -optional = false -python-versions = ">=3.7.0" -files = [ - {file = "charset-normalizer-3.3.0.tar.gz", hash = "sha256:63563193aec44bce707e0c5ca64ff69fa72ed7cf34ce6e11d5127555756fd2f6"}, - {file = "charset_normalizer-3.3.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:effe5406c9bd748a871dbcaf3ac69167c38d72db8c9baf3ff954c344f31c4cbe"}, - {file = "charset_normalizer-3.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4162918ef3098851fcd8a628bf9b6a98d10c380725df9e04caf5ca6dd48c847a"}, - {file = "charset_normalizer-3.3.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:0570d21da019941634a531444364f2482e8db0b3425fcd5ac0c36565a64142c8"}, - {file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5707a746c6083a3a74b46b3a631d78d129edab06195a92a8ece755aac25a3f3d"}, - {file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:278c296c6f96fa686d74eb449ea1697f3c03dc28b75f873b65b5201806346a69"}, - {file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a4b71f4d1765639372a3b32d2638197f5cd5221b19531f9245fcc9ee62d38f56"}, - {file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f5969baeaea61c97efa706b9b107dcba02784b1601c74ac84f2a532ea079403e"}, - {file = "charset_normalizer-3.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a3f93dab657839dfa61025056606600a11d0b696d79386f974e459a3fbc568ec"}, - {file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:db756e48f9c5c607b5e33dd36b1d5872d0422e960145b08ab0ec7fd420e9d649"}, - {file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:232ac332403e37e4a03d209a3f92ed9071f7d3dbda70e2a5e9cff1c4ba9f0678"}, - {file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e5c1502d4ace69a179305abb3f0bb6141cbe4714bc9b31d427329a95acfc8bdd"}, - {file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:2502dd2a736c879c0f0d3e2161e74d9907231e25d35794584b1ca5284e43f596"}, - {file = "charset_normalizer-3.3.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23e8565ab7ff33218530bc817922fae827420f143479b753104ab801145b1d5b"}, - {file = "charset_normalizer-3.3.0-cp310-cp310-win32.whl", hash = "sha256:1872d01ac8c618a8da634e232f24793883d6e456a66593135aeafe3784b0848d"}, - {file = "charset_normalizer-3.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:557b21a44ceac6c6b9773bc65aa1b4cc3e248a5ad2f5b914b91579a32e22204d"}, - {file = "charset_normalizer-3.3.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d7eff0f27edc5afa9e405f7165f85a6d782d308f3b6b9d96016c010597958e63"}, - {file = "charset_normalizer-3.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6a685067d05e46641d5d1623d7c7fdf15a357546cbb2f71b0ebde91b175ffc3e"}, - {file = "charset_normalizer-3.3.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0d3d5b7db9ed8a2b11a774db2bbea7ba1884430a205dbd54a32d61d7c2a190fa"}, - {file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2935ffc78db9645cb2086c2f8f4cfd23d9b73cc0dc80334bc30aac6f03f68f8c"}, - {file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9fe359b2e3a7729010060fbca442ca225280c16e923b37db0e955ac2a2b72a05"}, - {file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:380c4bde80bce25c6e4f77b19386f5ec9db230df9f2f2ac1e5ad7af2caa70459"}, - {file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f0d1e3732768fecb052d90d62b220af62ead5748ac51ef61e7b32c266cac9293"}, - {file = "charset_normalizer-3.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1b2919306936ac6efb3aed1fbf81039f7087ddadb3160882a57ee2ff74fd2382"}, - {file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:f8888e31e3a85943743f8fc15e71536bda1c81d5aa36d014a3c0c44481d7db6e"}, - {file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:82eb849f085624f6a607538ee7b83a6d8126df6d2f7d3b319cb837b289123078"}, - {file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7b8b8bf1189b3ba9b8de5c8db4d541b406611a71a955bbbd7385bbc45fcb786c"}, - {file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5adf257bd58c1b8632046bbe43ee38c04e1038e9d37de9c57a94d6bd6ce5da34"}, - {file = "charset_normalizer-3.3.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:c350354efb159b8767a6244c166f66e67506e06c8924ed74669b2c70bc8735b1"}, - {file = "charset_normalizer-3.3.0-cp311-cp311-win32.whl", hash = "sha256:02af06682e3590ab952599fbadac535ede5d60d78848e555aa58d0c0abbde786"}, - {file = "charset_normalizer-3.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:86d1f65ac145e2c9ed71d8ffb1905e9bba3a91ae29ba55b4c46ae6fc31d7c0d4"}, - {file = "charset_normalizer-3.3.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:3b447982ad46348c02cb90d230b75ac34e9886273df3a93eec0539308a6296d7"}, - {file = "charset_normalizer-3.3.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:abf0d9f45ea5fb95051c8bfe43cb40cda383772f7e5023a83cc481ca2604d74e"}, - {file = "charset_normalizer-3.3.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:b09719a17a2301178fac4470d54b1680b18a5048b481cb8890e1ef820cb80455"}, - {file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b3d9b48ee6e3967b7901c052b670c7dda6deb812c309439adaffdec55c6d7b78"}, - {file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:edfe077ab09442d4ef3c52cb1f9dab89bff02f4524afc0acf2d46be17dc479f5"}, - {file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3debd1150027933210c2fc321527c2299118aa929c2f5a0a80ab6953e3bd1908"}, - {file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86f63face3a527284f7bb8a9d4f78988e3c06823f7bea2bd6f0e0e9298ca0403"}, - {file = "charset_normalizer-3.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:24817cb02cbef7cd499f7c9a2735286b4782bd47a5b3516a0e84c50eab44b98e"}, - {file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:c71f16da1ed8949774ef79f4a0260d28b83b3a50c6576f8f4f0288d109777989"}, - {file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:9cf3126b85822c4e53aa28c7ec9869b924d6fcfb76e77a45c44b83d91afd74f9"}, - {file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_ppc64le.whl", hash = "sha256:b3b2316b25644b23b54a6f6401074cebcecd1244c0b8e80111c9a3f1c8e83d65"}, - {file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_s390x.whl", hash = "sha256:03680bb39035fbcffe828eae9c3f8afc0428c91d38e7d61aa992ef7a59fb120e"}, - {file = "charset_normalizer-3.3.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4cc152c5dd831641e995764f9f0b6589519f6f5123258ccaca8c6d34572fefa8"}, - {file = "charset_normalizer-3.3.0-cp312-cp312-win32.whl", hash = "sha256:b8f3307af845803fb0b060ab76cf6dd3a13adc15b6b451f54281d25911eb92df"}, - {file = "charset_normalizer-3.3.0-cp312-cp312-win_amd64.whl", hash = "sha256:8eaf82f0eccd1505cf39a45a6bd0a8cf1c70dcfc30dba338207a969d91b965c0"}, - {file = "charset_normalizer-3.3.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:dc45229747b67ffc441b3de2f3ae5e62877a282ea828a5bdb67883c4ee4a8810"}, - {file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2f4a0033ce9a76e391542c182f0d48d084855b5fcba5010f707c8e8c34663d77"}, - {file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ada214c6fa40f8d800e575de6b91a40d0548139e5dc457d2ebb61470abf50186"}, - {file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b1121de0e9d6e6ca08289583d7491e7fcb18a439305b34a30b20d8215922d43c"}, - {file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1063da2c85b95f2d1a430f1c33b55c9c17ffaf5e612e10aeaad641c55a9e2b9d"}, - {file = "charset_normalizer-3.3.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:70f1d09c0d7748b73290b29219e854b3207aea922f839437870d8cc2168e31cc"}, - {file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:250c9eb0f4600361dd80d46112213dff2286231d92d3e52af1e5a6083d10cad9"}, - {file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:750b446b2ffce1739e8578576092179160f6d26bd5e23eb1789c4d64d5af7dc7"}, - {file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:fc52b79d83a3fe3a360902d3f5d79073a993597d48114c29485e9431092905d8"}, - {file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:588245972aca710b5b68802c8cad9edaa98589b1b42ad2b53accd6910dad3545"}, - {file = "charset_normalizer-3.3.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e39c7eb31e3f5b1f88caff88bcff1b7f8334975b46f6ac6e9fc725d829bc35d4"}, - {file = "charset_normalizer-3.3.0-cp37-cp37m-win32.whl", hash = "sha256:abecce40dfebbfa6abf8e324e1860092eeca6f7375c8c4e655a8afb61af58f2c"}, - {file = "charset_normalizer-3.3.0-cp37-cp37m-win_amd64.whl", hash = "sha256:24a91a981f185721542a0b7c92e9054b7ab4fea0508a795846bc5b0abf8118d4"}, - {file = "charset_normalizer-3.3.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:67b8cc9574bb518ec76dc8e705d4c39ae78bb96237cb533edac149352c1f39fe"}, - {file = "charset_normalizer-3.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ac71b2977fb90c35d41c9453116e283fac47bb9096ad917b8819ca8b943abecd"}, - {file = "charset_normalizer-3.3.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3ae38d325b512f63f8da31f826e6cb6c367336f95e418137286ba362925c877e"}, - {file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:542da1178c1c6af8873e143910e2269add130a299c9106eef2594e15dae5e482"}, - {file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:30a85aed0b864ac88309b7d94be09f6046c834ef60762a8833b660139cfbad13"}, - {file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aae32c93e0f64469f74ccc730a7cb21c7610af3a775157e50bbd38f816536b38"}, - {file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15b26ddf78d57f1d143bdf32e820fd8935d36abe8a25eb9ec0b5a71c82eb3895"}, - {file = "charset_normalizer-3.3.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7f5d10bae5d78e4551b7be7a9b29643a95aded9d0f602aa2ba584f0388e7a557"}, - {file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:249c6470a2b60935bafd1d1d13cd613f8cd8388d53461c67397ee6a0f5dce741"}, - {file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:c5a74c359b2d47d26cdbbc7845e9662d6b08a1e915eb015d044729e92e7050b7"}, - {file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:b5bcf60a228acae568e9911f410f9d9e0d43197d030ae5799e20dca8df588287"}, - {file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:187d18082694a29005ba2944c882344b6748d5be69e3a89bf3cc9d878e548d5a"}, - {file = "charset_normalizer-3.3.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:81bf654678e575403736b85ba3a7867e31c2c30a69bc57fe88e3ace52fb17b89"}, - {file = "charset_normalizer-3.3.0-cp38-cp38-win32.whl", hash = "sha256:85a32721ddde63c9df9ebb0d2045b9691d9750cb139c161c80e500d210f5e26e"}, - {file = "charset_normalizer-3.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:468d2a840567b13a590e67dd276c570f8de00ed767ecc611994c301d0f8c014f"}, - {file = "charset_normalizer-3.3.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:e0fc42822278451bc13a2e8626cf2218ba570f27856b536e00cfa53099724828"}, - {file = "charset_normalizer-3.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:09c77f964f351a7369cc343911e0df63e762e42bac24cd7d18525961c81754f4"}, - {file = "charset_normalizer-3.3.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:12ebea541c44fdc88ccb794a13fe861cc5e35d64ed689513a5c03d05b53b7c82"}, - {file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:805dfea4ca10411a5296bcc75638017215a93ffb584c9e344731eef0dcfb026a"}, - {file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:96c2b49eb6a72c0e4991d62406e365d87067ca14c1a729a870d22354e6f68115"}, - {file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:aaf7b34c5bc56b38c931a54f7952f1ff0ae77a2e82496583b247f7c969eb1479"}, - {file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:619d1c96099be5823db34fe89e2582b336b5b074a7f47f819d6b3a57ff7bdb86"}, - {file = "charset_normalizer-3.3.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a0ac5e7015a5920cfce654c06618ec40c33e12801711da6b4258af59a8eff00a"}, - {file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:93aa7eef6ee71c629b51ef873991d6911b906d7312c6e8e99790c0f33c576f89"}, - {file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:7966951325782121e67c81299a031f4c115615e68046f79b85856b86ebffc4cd"}, - {file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:02673e456dc5ab13659f85196c534dc596d4ef260e4d86e856c3b2773ce09843"}, - {file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:c2af80fb58f0f24b3f3adcb9148e6203fa67dd3f61c4af146ecad033024dde43"}, - {file = "charset_normalizer-3.3.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:153e7b6e724761741e0974fc4dcd406d35ba70b92bfe3fedcb497226c93b9da7"}, - {file = "charset_normalizer-3.3.0-cp39-cp39-win32.whl", hash = "sha256:d47ecf253780c90ee181d4d871cd655a789da937454045b17b5798da9393901a"}, - {file = "charset_normalizer-3.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:d97d85fa63f315a8bdaba2af9a6a686e0eceab77b3089af45133252618e70884"}, - {file = "charset_normalizer-3.3.0-py3-none-any.whl", hash = "sha256:e46cd37076971c1040fc8c41273a8b3e2c624ce4f2be3f5dfcb7a430c1d3acc2"}, -] - -[[package]] -name = "idna" -version = "3.4" -description = "Internationalized Domain Names in Applications (IDNA)" -optional = false -python-versions = ">=3.5" -files = [ - {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, - {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, -] - -[[package]] -name = "requests" -version = "2.31.0" -description = "Python HTTP for Humans." -optional = false -python-versions = ">=3.7" -files = [ - {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, - {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, -] - -[package.dependencies] -certifi = ">=2017.4.17" -charset-normalizer = ">=2,<4" -idna = ">=2.5,<4" -urllib3 = ">=1.21.1,<3" - -[package.extras] -socks = ["PySocks (>=1.5.6,!=1.5.7)"] -use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] - -[[package]] -name = "urllib3" -version = "2.0.7" -description = "HTTP library with thread-safe connection pooling, file post, and more." -optional = false -python-versions = ">=3.7" -files = [ - {file = "urllib3-2.0.7-py3-none-any.whl", hash = "sha256:fdb6d215c776278489906c2f8916e6e7d4f5a9b602ccbcfdf7f016fc8da0596e"}, - {file = "urllib3-2.0.7.tar.gz", hash = "sha256:c97dfde1f7bd43a71c8d2a58e369e9b2bf692d1334ea9f9cae55add7d0dd0f84"}, -] - -[package.extras] -brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] -secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] -socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] -zstd = ["zstandard (>=0.18.0)"] - -[metadata] -lock-version = "2.0" -python-versions = "^3.9" -content-hash = "ee7fed81cef220efc922f65299b2c6240968697a8ab9aad99eb924d83f71d2d5" diff --git a/pyproject.toml b/pyproject.toml index 52cbc9aa..43e20e90 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,13 +1,15 @@ -[tool.poetry] +[project] name = "nonebot2-store-test" version = "0.1.0" -description = "" -authors = ["Lancercmd "] +description = "Default template for PDM package" +authors = [ + {name = "Lancercmd", email = "lancercmd@gmail.com"}, +] +dependencies = [] +requires-python = "==3.12.*" +readme = "README.md" +license = {text = "MIT"} -[tool.poetry.dependencies] -python = "^3.9" -requests = "^2.31.0" -[build-system] -requires = ["poetry-core>=1.0.0"] -build-backend = "poetry.core.masonry.api" +[tool.pdm] +distribution = false diff --git a/run.py b/run.py new file mode 100644 index 00000000..f8629cf1 --- /dev/null +++ b/run.py @@ -0,0 +1,196 @@ +import asyncio +from getopt import getopt +from json import dumps, loads +from pathlib import Path +from shutil import rmtree +from sys import argv + +from utils import ( + Plugin, + commit_changes, + get_commit_hash_from_registry, + get_git_head_hash, + get_pypi_version, + get_runtime_version_latest, + git_add, + load_plugins_from_registry, + pdm_create_project_from_git, + pdm_create_project_from_pypi, + pdm_run_project_from_git, + pdm_run_project_from_pypi, +) + +opts, args = getopt(argv[1:], "l:", ["limit=", "no-commit"]) +limit = 0 +no_commit = False +for opt, arg in opts: + if opt in ("-l", "--limit"): + if not arg.isdigit(): + print("limit 必须是数字") + exit(1) + limit = int(arg) + elif opt == "--no-commit": + print("不提交测试结果") + no_commit = True +print("从 nonebot/registry 获取提交哈希") +commit = asyncio.run(get_commit_hash_from_registry()) +print("从 nonebot/registry 获取插件列表") +plugins: list[dict] = load_plugins_from_registry(commit) +STATE = Path("state.json") +state: dict[str, str | dict] = {} +if STATE.exists(): + print("加载历史记录") + state = loads(STATE.read_bytes()) +modified = False +print("正在检查更新 nonebot2") +version = get_runtime_version_latest() +VER_KEY = "__nonebot2.version__" +if not state.get(VER_KEY): + modified = True +elif version != state.get(VER_KEY): + print(f"nonebot2 {state.get(VER_KEY)} -> {version}") + modified = True +state[VER_KEY] = state.get(VER_KEY) or version +for data in plugins: + plugin = Plugin(data) + if not state.get(plugin.project_link): + state[plugin.project_link] = {} + print("正在检查更新", plugin.module_name) + get_pypi_version(plugin) + plugin.new_from_pypi = plugin.pypi_version and ( + not state.get(plugin.project_link) + or plugin.pypi_version != state[plugin.project_link].get("pypi_version") + ) + if plugin.pypi_version != state[plugin.project_link].get("pypi_version"): + print( + plugin.module_name, + state[plugin.project_link].get("pypi_version"), + "->", + plugin.pypi_version, + ) + asyncio.run(get_git_head_hash(plugin)) + plugin.new_from_git = plugin.git_hash and ( + not state.get(plugin.project_link) + or plugin.git_hash != state[plugin.project_link].get("git_hash") + ) + if plugin.git_hash != state[plugin.project_link].get("git_hash"): + print( + plugin.module_name, + state[plugin.project_link].get("git_hash"), + "->", + plugin.git_hash, + ) + d = { + VER_KEY: state[plugin.project_link].get(VER_KEY) or version, + "first_seen": state[plugin.project_link].get("first_seen") or commit, + "module_name": plugin.module_name, + "project_link": plugin.project_link, + "display_name": plugin.name.strip(), + "desc": plugin.desc, + "author": plugin.author, + "homepage": plugin.homepage, + "pypi_version": plugin.pypi_version, + "pypi_create": state[plugin.project_link].get("pypi_create") or False, + "pypi_run": state[plugin.project_link].get("pypi_run") or False, + "git_hash": plugin.git_hash, + "git_create": state[plugin.project_link].get("git_create") or False, + "git_run": state[plugin.project_link].get("git_run") or False, + "last_seen": commit, + "stderr_pypi": state[plugin.project_link].get("stderr_pypi"), + "stderr_git": state[plugin.project_link].get("stderr_git"), + } + if version != state[plugin.project_link].get(VER_KEY) or ( + plugin.pypi_version and plugin.new_from_pypi + ): + modified = True + asyncio.run(pdm_create_project_from_pypi(plugin)) + if plugin.created_from_pypi: + d["pypi_create"] = True + asyncio.run(pdm_run_project_from_pypi(plugin, d)) + if plugin.booted_from_pypi: + d["pypi_run"] = True + plugin.clear() + if version != state[plugin.project_link].get(VER_KEY) or ( + plugin.git_hash and plugin.new_from_git + ): + modified = True + asyncio.run(pdm_create_project_from_git(plugin)) + if plugin.created_from_git: + d["git_create"] = True + asyncio.run(pdm_run_project_from_git(plugin, d)) + if plugin.booted_from_git: + d["git_run"] = True + plugin.clear() + plugin.unlink() + if not d.get("stderr_pypi"): + d.pop("stderr_pypi", None) + if not d.get("stderr_git"): + d.pop("stderr_git", None) + state[plugin.project_link] = d + if plugin.new_from_pypi or plugin.new_from_git: + limit -= 1 + if not limit: + break +if modified: + print("保存历史记录") + STATE.write_bytes(dumps(state, ensure_ascii=False, indent="\t").encode()) +print("生成测试报告") +RESULT = Path("RESULT.md") +P = "✅" +F = "❌" +p, r, c = [], [], [] +for k, v in state.items(): + if k == VER_KEY: + continue + if v[VER_KEY] != version: + continue + if v["pypi_run"] or v["git_run"]: + p.append(k) + elif v["pypi_create"] or v["git_create"]: + r.append(k) + else: + c.append(k) +s = "" +if not limit: + s += "已达到限制,结束测试。\n\n" +s += f"`nonebot2 == {version}`\n" +if p: + s += f"## {P} 满足基础可靠性:\n" + for i in p: + s += ( + f"- `{state[i]['module_name']}` {state[i]['display_name']}\n" + + " - `PyPI " + + (P if state[i]["pypi_run"] else F) + + "` `Git " + + (P if state[i]["git_run"] else F) + + "`\n" + ) +if r: + s += f"\n## {F} 运行时错误:\n" + for i in r: + s += ( + f"- `{state[i]['module_name']}` {state[i]['display_name']}\n" + + " - `PyPI " + + (P if state[i]["pypi_run"] else F) + + "` `Git " + + (P if state[i]["git_run"] else F) + + "`\n" + ) +if c: + s += f"\n## {F} 创建时错误:\n" + for i in c: + s += ( + f"- `{state[i]['module_name']}` {state[i]['display_name']}\n" + + " - `PyPI " + + (P if state[i]["pypi_run"] else F) + + "` `Git " + + (P if state[i]["git_run"] else F) + + "`\n" + ) +RESULT.write_text(s, encoding="utf-8") +if not no_commit: + print("提交测试结果") + asyncio.run(git_add(RESULT)) + asyncio.run(git_add(STATE)) + asyncio.run(commit_changes()) + rmtree("__pycache__") diff --git a/utils.py b/utils.py new file mode 100644 index 00000000..af3cd053 --- /dev/null +++ b/utils.py @@ -0,0 +1,185 @@ +import asyncio +from dataclasses import dataclass +from json import load +from pathlib import Path +from shutil import rmtree +from urllib.error import HTTPError +from urllib.request import URLopener, urlretrieve + +URLopener.version = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36 Edg/125.0.0.0" + + +async def get_commit_hash_from_registry(): + url = "https://github.com/nonebot/registry" + cmd = f"git ls-remote {url} -b results" + proc = await asyncio.create_subprocess_shell( + cmd, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE + ) + stdout, _ = await proc.communicate() + return stdout.decode().split()[0] + + +def load_plugins_from_registry(commit: str): + url = f"https://raw.githubusercontent.com/nonebot/registry/{commit}/plugins.json" + resp = urlretrieve(url) + with open(resp[0], "r", encoding="utf-8") as f: + return load(f) + + +@dataclass +class Plugin: + data: dict + + def __post_init__(self): + self.module_name: str = self.data.get("module_name") + self.project_link: str = self.data.get("project_link") + self.name: str = self.data.get("name") + self.desc: str = self.data.get("desc") + self.author: str = self.data.get("author") + self.homepage: str = self.data.get("homepage") + + self.pypi_version: str = None + self.git_hash: str = None + + self.created_from_pypi = False + self.created_from_git = False + self.booted_from_pypi = False + self.booted_from_git = False + + self.folder_name = f"test-{self.module_name}" + self.folder_path = Path("tests") / self.folder_name + self.folder_path.mkdir(parents=True, exist_ok=True) + + self.new_from_pypi = False + self.new_from_git = False + + def clear(self): + for p in self.folder_path.iterdir(): + if p.is_dir(): + rmtree(p) + else: + p.unlink() + + def unlink(self): + rmtree(self.folder_path) + + +def get_runtime_version_latest(): + url = f"https://pypi.org/pypi/nonebot2/json" + resp = urlretrieve(url) + with open(resp[0], "r", encoding="utf-8") as f: + return load(f)["info"]["version"] + + +def get_pypi_version(plugin: Plugin): + url = f"https://pypi.org/pypi/{plugin.module_name}/json" + try: + resp = urlretrieve(url) + with open(resp[0], "r", encoding="utf-8") as f: + plugin.pypi_version = load(f)["info"]["version"] + except HTTPError as e: + if e.code == 404: + return + raise + + +async def get_git_head_hash(plugin: Plugin): + cmd = f"git ls-remote {plugin.homepage} -b HEAD" + proc = await asyncio.create_subprocess_shell(cmd, stdout=asyncio.subprocess.PIPE) + stdout, _ = await proc.communicate() + if stdout: + plugin.git_hash = stdout.decode().split()[0] + + +RUN = """from nonebot import init, load_plugin +init() +exit(0 if load_plugin("{name}") else 1) +""" + + +async def pdm_create_project_from_pypi(plugin: Plugin): + cmd = f"cd {plugin.folder_path} && pdm init --non-interactive && pdm add {plugin.module_name}" + proc = await asyncio.create_subprocess_shell( + cmd, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE + ) + await proc.communicate() + manifest = plugin.folder_path.joinpath("pdm.lock").read_text("utf-8") + if f'name = "{plugin.project_link}"' in manifest: + plugin.created_from_pypi = True + + +async def pdm_create_project_from_git(plugin: Plugin): + cmd = f"cd {plugin.folder_path} && pdm init --non-interactive && pdm add git+{plugin.homepage}" + proc = await asyncio.create_subprocess_shell( + cmd, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE + ) + await proc.communicate() + manifest = plugin.folder_path.joinpath("pdm.lock").read_text("utf-8") + if f'git = "{plugin.homepage}"' in manifest: + plugin.created_from_git = True + + +async def pdm_run_project_from_pypi(plugin: Plugin, data: dict): + plugin.folder_path.joinpath(".env.prod").write_bytes( + Path(".env.prod.example").read_bytes() + ) + plugin.folder_path.joinpath("run.py").write_text( + RUN.format(name=plugin.module_name) + ) + cmd = f"cd {plugin.folder_path} && pdm run py run.py" + proc = await asyncio.create_subprocess_shell( + cmd, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE + ) + stdout, stderr = await proc.communicate() + if proc.returncode == 0: + plugin.booted_from_pypi = True + data.pop("stderr_pypi", None) + else: + data["stderr_pypi"] = stderr.decode().strip() + if not data["stderr_pypi"]: + data["stderr_pypi"] = stdout.decode().strip() + print(data["stderr_pypi"]) + + +async def pdm_run_project_from_git(plugin: Plugin, data: dict): + plugin.folder_path.joinpath(".env.prod").write_bytes( + Path(".env.prod.example").read_bytes() + ) + plugin.folder_path.joinpath("run.py").write_text( + RUN.format(name=plugin.module_name) + ) + cmd = f"cd {plugin.folder_path} && pdm run py run.py" + proc = await asyncio.create_subprocess_shell( + cmd, stdout=asyncio.subprocess.PIPE, stderr=asyncio.subprocess.PIPE + ) + stdout, stderr = await proc.communicate() + if proc.returncode == 0: + plugin.booted_from_git = True + data.pop("stderr_git", None) + else: + data["stderr_git"] = stderr.decode().strip() + if not data["stderr_git"]: + data["stderr_git"] = stdout.decode().strip() + print(data["stderr_git"]) + + +async def git_add(filepath: Path): + await (await asyncio.create_subprocess_shell(f"git add {filepath}")).communicate() + + +async def commit_changes(): + await ( + await asyncio.create_subprocess_shell( + "git config user.name Lancercmd && git config user.email lancercmd@gmail.com" + ) + ).communicate() + cmd = "git commit -m 'update'" + proc = await asyncio.create_subprocess_shell(cmd, stdout=asyncio.subprocess.PIPE) + stdout, _ = await proc.communicate() + if "nothing to commit" in stdout.decode(): + return + await (await asyncio.create_subprocess_shell("git push")).communicate() + + +if __name__ == "__main__": + exit(2)