/ASimpleCQ_Bot

A Simple CQ_Bot using cqhttp, based on python Flask.

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

ASimpleCQ_Bot

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 中并重新运行即可。