├── .gitignore ├── LICENSE ├── README.md ├── config_default.yaml ├── data └── fonts │ ├── FZSEJW.ttf │ ├── FZSJ-QINGCRJ.ttf │ ├── FZXS14.ttf │ ├── NotoSansSC-Regular.otf │ ├── NotoSerifSC-Regular.otf │ └── consola.ttf ├── index.js ├── main.py ├── package.json ├── plugins └── readme.txt ├── poetry.lock ├── pyproject.toml ├── requirements.txt ├── utils ├── channel.js ├── client.js └── receiver.js └── yunzai_nonebot ├── __init__.py ├── hijack ├── __init__.py ├── adapter.py ├── bot.py ├── driver.py ├── event.py ├── logger.py ├── message.py ├── params.py └── plugin.py ├── rpc ├── __init__.py ├── hola.proto ├── hola_pb2.py ├── hola_pb2.pyi ├── hola_pb2_grpc.py └── typing.py └── utils ├── __init__.py ├── deserializer ├── __init__.py ├── v11 │ ├── __init__.py │ ├── message.py │ ├── request.py │ └── utils.py └── v12 │ ├── __init__.py │ ├── message.py │ ├── request.py │ └── utils.py ├── exception.py ├── map.py ├── queue.py ├── serializer ├── __init__.py ├── v11 │ ├── __init__.py │ ├── event.py │ ├── result.py │ └── utils.py └── v12 │ ├── __init__.py │ ├── event.py │ ├── result.py │ └── utils.py └── service.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/README.md -------------------------------------------------------------------------------- /config_default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/config_default.yaml -------------------------------------------------------------------------------- /data/fonts/FZSEJW.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/data/fonts/FZSEJW.ttf -------------------------------------------------------------------------------- /data/fonts/FZSJ-QINGCRJ.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/data/fonts/FZSJ-QINGCRJ.ttf -------------------------------------------------------------------------------- /data/fonts/FZXS14.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/data/fonts/FZXS14.ttf -------------------------------------------------------------------------------- /data/fonts/NotoSansSC-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/data/fonts/NotoSansSC-Regular.otf -------------------------------------------------------------------------------- /data/fonts/NotoSerifSC-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/data/fonts/NotoSerifSC-Regular.otf -------------------------------------------------------------------------------- /data/fonts/consola.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/data/fonts/consola.ttf -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/index.js -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/main.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/package.json -------------------------------------------------------------------------------- /plugins/readme.txt: -------------------------------------------------------------------------------- 1 | clone的插件或自定义插件放在这 -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils/channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/utils/channel.js -------------------------------------------------------------------------------- /utils/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/utils/client.js -------------------------------------------------------------------------------- /utils/receiver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/utils/receiver.js -------------------------------------------------------------------------------- /yunzai_nonebot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/__init__.py -------------------------------------------------------------------------------- /yunzai_nonebot/hijack/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/hijack/__init__.py -------------------------------------------------------------------------------- /yunzai_nonebot/hijack/adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/hijack/adapter.py -------------------------------------------------------------------------------- /yunzai_nonebot/hijack/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/hijack/bot.py -------------------------------------------------------------------------------- /yunzai_nonebot/hijack/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/hijack/driver.py -------------------------------------------------------------------------------- /yunzai_nonebot/hijack/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/hijack/event.py -------------------------------------------------------------------------------- /yunzai_nonebot/hijack/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/hijack/logger.py -------------------------------------------------------------------------------- /yunzai_nonebot/hijack/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/hijack/message.py -------------------------------------------------------------------------------- /yunzai_nonebot/hijack/params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/hijack/params.py -------------------------------------------------------------------------------- /yunzai_nonebot/hijack/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/hijack/plugin.py -------------------------------------------------------------------------------- /yunzai_nonebot/rpc/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /yunzai_nonebot/rpc/hola.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/rpc/hola.proto -------------------------------------------------------------------------------- /yunzai_nonebot/rpc/hola_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/rpc/hola_pb2.py -------------------------------------------------------------------------------- /yunzai_nonebot/rpc/hola_pb2.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/rpc/hola_pb2.pyi -------------------------------------------------------------------------------- /yunzai_nonebot/rpc/hola_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/rpc/hola_pb2_grpc.py -------------------------------------------------------------------------------- /yunzai_nonebot/rpc/typing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/rpc/typing.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/__init__.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/deserializer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/deserializer/__init__.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/deserializer/v11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/deserializer/v11/__init__.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/deserializer/v11/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/deserializer/v11/message.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/deserializer/v11/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/deserializer/v11/request.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/deserializer/v11/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/deserializer/v11/utils.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/deserializer/v12/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/deserializer/v12/__init__.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/deserializer/v12/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/deserializer/v12/message.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/deserializer/v12/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/deserializer/v12/request.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/deserializer/v12/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/deserializer/v12/utils.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/exception.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/map.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/queue.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/serializer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/serializer/__init__.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/serializer/v11/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/serializer/v11/__init__.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/serializer/v11/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/serializer/v11/event.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/serializer/v11/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/serializer/v11/result.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/serializer/v11/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/serializer/v11/utils.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/serializer/v12/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/serializer/v12/__init__.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/serializer/v12/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/serializer/v12/event.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/serializer/v12/result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/serializer/v12/result.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/serializer/v12/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/serializer/v12/utils.py -------------------------------------------------------------------------------- /yunzai_nonebot/utils/service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realhuhu/py-plugin/HEAD/yunzai_nonebot/utils/service.py --------------------------------------------------------------------------------