加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
bot.py 567 Bytes
一键复制 编辑 原始数据 按行查看 历史
mryunqi 提交于 2022-02-05 09:57 . 第一次更新
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import nonebot
from nonebot.adapters.cqhttp import Bot as CQHTTPBot
nonebot.init()
nonebot.init(apscheduler_autostart=True)
nonebot.init(apscheduler_config={
"apscheduler.timezone": "Asia/Shanghai"
})
driver = nonebot.get_driver()
driver.register_adapter("cqhttp", CQHTTPBot)
# 加载插件目录,该目录下为各插件,以下划线开头的插件将不会被加载
nonebot.load_plugins("src/plugins")
nonebot.load_builtin_plugins()
if __name__ == "__main__":
nonebot.run()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化