├── CNAME ├── LICENSE ├── README.md └── _config.yml /CNAME: -------------------------------------------------------------------------------- 1 | awesome.nonebot.dev -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 NoneBot 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Awesome NoneBot 2 | 3 | ## 官方仓库 4 | 5 | - [NoneBot v1](https://github.com/nonebot/nonebot) 6 | - [NoneBot v2](https://github.com/nonebot/nonebot2) 7 | 8 | ## 官方网站 9 | 10 | - [NoneBot v1 文档](https://v1.nonebot.dev/) 11 | - [NoneBot v2 文档](https://nonebot.dev/) 12 | 13 | ## 教程 14 | 15 | - (文章)[使用 nonebot 搭建 qq 群聊机器人](https://zhuanlan.zhihu.com/p/340849952) 16 | - (文章)[【保姆教程】新-基于Nonebot2机器人搭建](https://yzyyz.top/archives/nb2b1.html) 17 | - (视频)[【零基础搭建QQ机器人】开源、免费、纯新手向的nonebot2.0.0beta版讲解](https://www.bilibili.com/video/BV1aZ4y1f7e2) 18 | - (视频)[Python 和 QQ 机器人开发基础培训](https://www.bilibili.com/video/BV19t411679V)(部分内容可能过时,需参考最新文档食用) 19 | 20 | ## 应用案例 21 | 22 | - [Ice-Cirno/HoshinoBot](https://github.com/Ice-Cirno/HoshinoBot): A qqbot for Princess Connect Re:Dive (and other usage :) 23 | - [XiaoMiku01/PaimonBot](https://github.com/XiaoMiku01/PaimonBot): 原神 QQ 群聊机器人 24 | - [SK-415/HarukaBot](https://github.com/SK-415/HarukaBot): 将 B站 UP 主的动态和直播信息推送至 QQ 25 | - [cscs181/QQ-GitHub-Bot](https://github.com/cscs181/QQ-GitHub-Bot): GitHub Bot for QQ 26 | - [Quan666/ELF_RSS](https://github.com/Quan666/ELF_RSS): RSS 订阅插件,可以个性化订阅 27 | - [Quan666/ELFChatBot](https://github.com/Quan666/ELFChatBot): 闲聊 QQ 机器人,也就是人工智障 28 | - [Kyomotoi/ATRI](https://github.com/Kyomotoi/ATRI): ~~高性能~~萝卜子,齐聚各类小功能 29 | - [Ailitonia/omega-miya](https://github.com/Ailitonia/omega-miya): ~~主要是~~B站推送机器人,集成了一堆~~没用的~~功能 30 | - [Watanabe-Asa/SalmonBot](https://github.com/Watanabe-Asa/SalmonBot): Hoshinobot based on nonebot2 31 | - [Melodyknit/YanXiBot](https://github.com/Melodyknit/YanXiBot): 为 AMV/MAD 创作者而制作的动漫资源查找机器人,且集成一些娱乐性功能 32 | - [HibiKier/zhenxun_bot ](https://github.com/HibiKier/zhenxun_bot): 可爱的绪山真寻 bot,实现了一些基础的功能和一些娱乐功能 33 | - [MeetWq/mybot](https://github.com/MeetWq/mybot): 机器人小Q,实现了一些乱七八糟的功能 34 | - [netsora/SoraBot](https://github.com/netsora/SoraBot): 多平台互通 Bot,超可爱的林汐酱 35 | 36 | ## 辅助工具 37 | 38 | - [NCBM/nonediag](https://github.com/NCBM/nonediag): NoneBot2 常见问题诊断工具,支持通过项目文件及日志分析错误 39 | - [NCBM/nonestrap](https://github.com/NCBM/nonestrap): 轻量化、脚本式的 NoneBot2 项目创建工具 40 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- 1 | name: Awesome NoneBot 2 | title: null 3 | --------------------------------------------------------------------------------