├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── nonebot_plugin_oddtext ├── __init__.py ├── bug.py ├── cxh.py ├── data_source.py ├── flip.py └── hxw.py ├── poetry.lock └── pyproject.toml /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-oddtext/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *__pycache__/ 2 | dist/ 3 | .vscode/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-oddtext/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-oddtext/HEAD/README.md -------------------------------------------------------------------------------- /nonebot_plugin_oddtext/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-oddtext/HEAD/nonebot_plugin_oddtext/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_oddtext/bug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-oddtext/HEAD/nonebot_plugin_oddtext/bug.py -------------------------------------------------------------------------------- /nonebot_plugin_oddtext/cxh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-oddtext/HEAD/nonebot_plugin_oddtext/cxh.py -------------------------------------------------------------------------------- /nonebot_plugin_oddtext/data_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-oddtext/HEAD/nonebot_plugin_oddtext/data_source.py -------------------------------------------------------------------------------- /nonebot_plugin_oddtext/flip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-oddtext/HEAD/nonebot_plugin_oddtext/flip.py -------------------------------------------------------------------------------- /nonebot_plugin_oddtext/hxw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-oddtext/HEAD/nonebot_plugin_oddtext/hxw.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-oddtext/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/noneplugin/nonebot-plugin-oddtext/HEAD/pyproject.toml --------------------------------------------------------------------------------