├── .github └── workflows │ └── pypi-publish.yaml ├── .gitignore ├── .python-version ├── LICENSE ├── README.md ├── assets └── deerpipe.jpg ├── pyproject.toml ├── scripts └── dev.py ├── src └── nonebot_plugin_deer_pipe │ ├── __init__.py │ ├── assets │ ├── MiSans-Regular.ttf │ ├── check@96x100.png │ └── deerpipe@100x82.png │ ├── constants.py │ ├── database.py │ ├── image.py │ ├── matchers.py │ ├── py.typed │ └── requirements.py └── uv.lock /.github/workflows/pypi-publish.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuNatsu/nonebot-plugin-deer-pipe/HEAD/.github/workflows/pypi-publish.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuNatsu/nonebot-plugin-deer-pipe/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.10 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuNatsu/nonebot-plugin-deer-pipe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuNatsu/nonebot-plugin-deer-pipe/HEAD/README.md -------------------------------------------------------------------------------- /assets/deerpipe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuNatsu/nonebot-plugin-deer-pipe/HEAD/assets/deerpipe.jpg -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuNatsu/nonebot-plugin-deer-pipe/HEAD/pyproject.toml -------------------------------------------------------------------------------- /scripts/dev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuNatsu/nonebot-plugin-deer-pipe/HEAD/scripts/dev.py -------------------------------------------------------------------------------- /src/nonebot_plugin_deer_pipe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuNatsu/nonebot-plugin-deer-pipe/HEAD/src/nonebot_plugin_deer_pipe/__init__.py -------------------------------------------------------------------------------- /src/nonebot_plugin_deer_pipe/assets/MiSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuNatsu/nonebot-plugin-deer-pipe/HEAD/src/nonebot_plugin_deer_pipe/assets/MiSans-Regular.ttf -------------------------------------------------------------------------------- /src/nonebot_plugin_deer_pipe/assets/check@96x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuNatsu/nonebot-plugin-deer-pipe/HEAD/src/nonebot_plugin_deer_pipe/assets/check@96x100.png -------------------------------------------------------------------------------- /src/nonebot_plugin_deer_pipe/assets/deerpipe@100x82.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuNatsu/nonebot-plugin-deer-pipe/HEAD/src/nonebot_plugin_deer_pipe/assets/deerpipe@100x82.png -------------------------------------------------------------------------------- /src/nonebot_plugin_deer_pipe/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuNatsu/nonebot-plugin-deer-pipe/HEAD/src/nonebot_plugin_deer_pipe/constants.py -------------------------------------------------------------------------------- /src/nonebot_plugin_deer_pipe/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuNatsu/nonebot-plugin-deer-pipe/HEAD/src/nonebot_plugin_deer_pipe/database.py -------------------------------------------------------------------------------- /src/nonebot_plugin_deer_pipe/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuNatsu/nonebot-plugin-deer-pipe/HEAD/src/nonebot_plugin_deer_pipe/image.py -------------------------------------------------------------------------------- /src/nonebot_plugin_deer_pipe/matchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuNatsu/nonebot-plugin-deer-pipe/HEAD/src/nonebot_plugin_deer_pipe/matchers.py -------------------------------------------------------------------------------- /src/nonebot_plugin_deer_pipe/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/nonebot_plugin_deer_pipe/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuNatsu/nonebot-plugin-deer-pipe/HEAD/src/nonebot_plugin_deer_pipe/requirements.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamuNatsu/nonebot-plugin-deer-pipe/HEAD/uv.lock --------------------------------------------------------------------------------