Skip to content

Commit

Permalink
去掉二级目录
Browse files Browse the repository at this point in the history
  • Loading branch information
shengan committed May 29, 2024
1 parent a7a4bc4 commit 82f5a31
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 34 deletions.
29 changes: 0 additions & 29 deletions Lagrange.OneBot/README.md

This file was deleted.

30 changes: 26 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# qqbot
QQ 机器人
## 介绍
- 使用的是 [Lagrange.OneBot](https://github.com/LagrangeDev/Lagrange.Core)
- 开箱即用,使用 docker 一键启动

## Lagrange.OneBot
- 使用 docker 一键启动
## 首次启动
```bash
docker compose up
```

然后扫码登录即可,会登录到 linux 平台

## 测试
- 进群发送 python 即可看到回复
- 所有关键字以及自动回复的消息均存于 [`ws/botmsg.txt`](ws/botmsg.txt) 文件中
- 修改了 `ws/botmsg.txt` 文件后需要重启

## 后台启动
```bash
docker compose up -d
```

## 配置文件
- 配置文件是 [`data/appsettings.json`](data/appsettings.json)

## 添加自己的回复逻辑
- 我们使用的是反向 websocket
- 逻辑代码位于 [`ws/server.py`](ws/server.py) 文件
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion Lagrange.OneBot/ws/botmsg.txt → ws/botmsg.txt
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ vim;vi###Vim 是从vi发展出来的一个文本编辑器。其代码补完、
emacs###Emacs 是一个文本编辑器家族,它具有可扩展性,用户以程序员和其他以技术工作为主的计算机用户为主。\n在Unix文化里,Emacs是黑客们关于编辑器之战的两大主角之一,它的对手是vi(Vim)。
sanic###Sanic 是 Python3.7+ Web 服务器和 Web 框架,旨在提高性能。\n它允许使用 Python3.5 中添加的 async/await 语法,这使得您的代码有效的避免阻塞从而达到提升响应速度的目的。\n中文官网地址:https://sanic.dev/zh/\nsanic 搭建的网站示例:https://python-abc.xyz/sanic/3849
why;why?;为什么;为什么?;十万个为什么###为什么Python使用缩进来分组语句?\n为什么浮点计算不准确?\n为什么Python字符串是不可变的?\n为什么字典key必须是不可变的?\n为什么没有goto?\n为什么Python在列表和元组的末尾允许使用逗号?\nhttps://docs.python.org/zh-cn/3/faq/design.html\nhttps://docs.python.org/zh-cn/3/faq/index.html
pip源;python源;换源;清华源;国内源;换国内源###pip install 时使用国内源可有效提高下载速度\n临时使用方式:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple xxx\n清华源详细介绍:https://mirrors.tuna.tsinghua.edu.cn/help/pypi/
pip源;python源;换源;换清华源;清华源;国内源;换国内源###pip install 时使用国内源可有效提高下载速度\n临时使用方式:pip install -i https://pypi.tuna.tsinghua.edu.cn/simple xxx\n示例2:pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple\n全局配置:pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple\n清华源详细介绍:https://mirrors.tuna.tsinghua.edu.cn/help/pypi/
Lagrange;OneBot;qqbot;bot;机器人;QQ机器人;qq 机器人###QQ机器人搭建文档:https://python-abc.xyz/code/5807\n最新无风控机器人:https://github.com/shenxgan/qqbot
快速入门###快速入门:https://python-abc.xyz/python/0083\n入门1/7-基础语法:https://python-abc.xyz/python/0083\n入门2/7-数据类型:https://python-abc.xyz/python/6668\n入门3/7-运算:https://python-abc.xyz/python/1736\n入门4/7-条件语句:https://python-abc.xyz/python/8369\n入门5/7-循环语句:https://python-abc.xyz/python/0684\n入门6/7-函数:https://python-abc.xyz/python/0508\n入门7/7-类:https://python-abc.xyz/python/4807
virtual machine;虚拟机###虚拟机:一台完全通过软件定义的计算机。Python 虚拟机可执行字节码编译器所生成的 bytecode。
Expand Down
File renamed without changes.

0 comments on commit 82f5a31

Please sign in to comment.