├── .flake8 ├── .github └── workflows │ └── python-package.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── image ├── demo.png └── forward.png ├── nonebot_plugin_animeres ├── __init__.py ├── config.py ├── internal.py ├── resources │ ├── __init__.py │ ├── anoneko.py │ ├── dongmanhuayuan.py │ └── myheartsite.py ├── schemas.py └── utils.py ├── poetry.lock └── pyproject.toml /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyKnit/nonebot_plugin_animeres/HEAD/.flake8 -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyKnit/nonebot_plugin_animeres/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyKnit/nonebot_plugin_animeres/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyKnit/nonebot_plugin_animeres/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyKnit/nonebot_plugin_animeres/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyKnit/nonebot_plugin_animeres/HEAD/README.md -------------------------------------------------------------------------------- /image/demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyKnit/nonebot_plugin_animeres/HEAD/image/demo.png -------------------------------------------------------------------------------- /image/forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyKnit/nonebot_plugin_animeres/HEAD/image/forward.png -------------------------------------------------------------------------------- /nonebot_plugin_animeres/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyKnit/nonebot_plugin_animeres/HEAD/nonebot_plugin_animeres/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_animeres/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyKnit/nonebot_plugin_animeres/HEAD/nonebot_plugin_animeres/config.py -------------------------------------------------------------------------------- /nonebot_plugin_animeres/internal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyKnit/nonebot_plugin_animeres/HEAD/nonebot_plugin_animeres/internal.py -------------------------------------------------------------------------------- /nonebot_plugin_animeres/resources/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyKnit/nonebot_plugin_animeres/HEAD/nonebot_plugin_animeres/resources/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_animeres/resources/anoneko.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyKnit/nonebot_plugin_animeres/HEAD/nonebot_plugin_animeres/resources/anoneko.py -------------------------------------------------------------------------------- /nonebot_plugin_animeres/resources/dongmanhuayuan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyKnit/nonebot_plugin_animeres/HEAD/nonebot_plugin_animeres/resources/dongmanhuayuan.py -------------------------------------------------------------------------------- /nonebot_plugin_animeres/resources/myheartsite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyKnit/nonebot_plugin_animeres/HEAD/nonebot_plugin_animeres/resources/myheartsite.py -------------------------------------------------------------------------------- /nonebot_plugin_animeres/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyKnit/nonebot_plugin_animeres/HEAD/nonebot_plugin_animeres/schemas.py -------------------------------------------------------------------------------- /nonebot_plugin_animeres/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyKnit/nonebot_plugin_animeres/HEAD/nonebot_plugin_animeres/utils.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyKnit/nonebot_plugin_animeres/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MelodyKnit/nonebot_plugin_animeres/HEAD/pyproject.toml --------------------------------------------------------------------------------