├── .gitignore ├── LICENSE ├── README.md ├── nonebot_plugin_SDGPT ├── __init__.py ├── bot.py ├── config.py ├── configspec.ini └── lib │ ├── base.py │ ├── check.py │ ├── cons.py │ ├── cookies.json │ ├── logger.py │ ├── test.py │ └── utils.py └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | nonebot_plugin_SDGPT.egg-info/ 3 | __pycache__/ 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thx114/SDGPT/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thx114/SDGPT/HEAD/README.md -------------------------------------------------------------------------------- /nonebot_plugin_SDGPT/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thx114/SDGPT/HEAD/nonebot_plugin_SDGPT/__init__.py -------------------------------------------------------------------------------- /nonebot_plugin_SDGPT/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thx114/SDGPT/HEAD/nonebot_plugin_SDGPT/bot.py -------------------------------------------------------------------------------- /nonebot_plugin_SDGPT/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thx114/SDGPT/HEAD/nonebot_plugin_SDGPT/config.py -------------------------------------------------------------------------------- /nonebot_plugin_SDGPT/configspec.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thx114/SDGPT/HEAD/nonebot_plugin_SDGPT/configspec.ini -------------------------------------------------------------------------------- /nonebot_plugin_SDGPT/lib/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thx114/SDGPT/HEAD/nonebot_plugin_SDGPT/lib/base.py -------------------------------------------------------------------------------- /nonebot_plugin_SDGPT/lib/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thx114/SDGPT/HEAD/nonebot_plugin_SDGPT/lib/check.py -------------------------------------------------------------------------------- /nonebot_plugin_SDGPT/lib/cons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thx114/SDGPT/HEAD/nonebot_plugin_SDGPT/lib/cons.py -------------------------------------------------------------------------------- /nonebot_plugin_SDGPT/lib/cookies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thx114/SDGPT/HEAD/nonebot_plugin_SDGPT/lib/cookies.json -------------------------------------------------------------------------------- /nonebot_plugin_SDGPT/lib/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thx114/SDGPT/HEAD/nonebot_plugin_SDGPT/lib/logger.py -------------------------------------------------------------------------------- /nonebot_plugin_SDGPT/lib/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thx114/SDGPT/HEAD/nonebot_plugin_SDGPT/lib/test.py -------------------------------------------------------------------------------- /nonebot_plugin_SDGPT/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thx114/SDGPT/HEAD/nonebot_plugin_SDGPT/lib/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thx114/SDGPT/HEAD/pyproject.toml --------------------------------------------------------------------------------