ASimpleCQ_Bot是基于 Python Flask,使用 cqhttp(如go-cqhttp) 实现的简单Bot。通过添加plugin的方式添加功能。
确保运行cqhttp
后,将./scripts/CONFIG.py
中的 相关参数修改为本地对应参数。
$ python3 main.py
即可。
只需新建python文件,声明一个类并继承Plugin类,重写抽象方法:
from BotEvent import BotEvent
from Plugin import Plugin
def YourPlugin(Plugin):
def __init__(self):
super().__init__()
def run(self):
while(True):
#do your things
将该文件放入./scripts/plugins
中并重新运行即可。