Bump version to 0.3.1

This commit is contained in:
Richard Chien 2018-08-26 13:44:54 +08:00
parent 3b67b79ffc
commit d32c27cf70
4 changed files with 41 additions and 9 deletions

13
CHANGELOG.md Normal file
View File

@ -0,0 +1,13 @@
# 更新日志
## v0.3.1
- 调整计划任务的启动时间,修复创建任务后无法立即获取下次运行时间的 bug
## v0.3.0
- 内置可选的计划任务功能(需要安装 APScheduler
## v0.2.2
- 修复快速的连续消息导致报错问题 [#5](https://github.com/richardchien/none-bot/issues/5)

View File

@ -2,9 +2,28 @@
[![License](https://img.shields.io/pypi/l/none-bot.svg)](LICENSE) [![License](https://img.shields.io/pypi/l/none-bot.svg)](LICENSE)
[![PyPI](https://img.shields.io/pypi/v/none-bot.svg)](https://pypi.python.org/pypi/none-bot) [![PyPI](https://img.shields.io/pypi/v/none-bot.svg)](https://pypi.python.org/pypi/none-bot)
![Python](https://img.shields.io/badge/python-3.6%2B-blue.svg)
[![QQ 群](https://img.shields.io/badge/qq%E7%BE%A4-201865589-orange.svg)](https://jq.qq.com/?_wv=1027&k=5Euplde)
[![Telegram](https://img.shields.io/badge/telegram-chat-blue.svg)](https://t.me/cqhttp)
NoneBot 是一个基于 [酷 Q](https://cqp.cc/) 的 Python 异步 QQ 机器人框架,底层与酷 Q 交互的部分使用 [python-aiocqhttp](https://github.com/richardchien/python-aiocqhttp),后者是 [CoolQ HTTP API 插件](https://cqhttp.cc/) 的一个 Python 异步 SDK。NoneBot 仅支持 Python 3.6+ 及 CoolQ HTTP API 插件 v4.2+。 ## 简介
NoneBot 本身不包含任何实际功能,仅仅提供处理消息、解析命令等核心功能,框架的使用者需要使用框架提供的接口,以插件的形式来编写具体功能。 NoneBot 是一个基于 [酷 Q](https://cqp.cc/) 的 Python 异步 QQ 机器人框架,它会对 QQ 机器人收到的消息进行解析和处理,并以插件化的形式,分发给消息所对应的命令处理器和自然语言处理器,来完成具体的功能。
文档暂时还没完成,可以在 [这里](https://none.rclab.tk/) 访问正在编写中的文档,对于文档中目前尚未写到的部分,请先参考 [none.plugins](none/plugins)、[demo](demo) 和 [richardchien/maruko](https://github.com/richardchien/maruko) 项目。 除了起到解析消息的作用NoneBot 还为插件提供了大量实用的预设操作和权限控制机制,尤其对于命令处理器,它更是提供了完善且易用的会话机制和内部调用机制,以分别适应命令的连续交互和插件内部功能复用等需求。
NoneBot 在其底层与酷 Q 交互的部分使用 [python-aiocqhttp](https://github.com/richardchien/python-aiocqhttp) 库,后者是 [CoolQ HTTP API 插件](https://cqhttp.cc/) 的一个 Python 异步 SDK在 [Quart](https://pgjones.gitlab.io/quart/) 的基础上封装了与 CoolQ HTTP API 插件的网络交互。
得益于 Python 的 [asyncio](https://docs.python.org/3/library/asyncio.html) 机制NoneBot 处理消息的吞吐量有了很大的保障,再配合 CoolQ HTTP API 插件可选的 WebSocket 通信方式也是最建议的通信方式NoneBot 的性能可以达到 HTTP 通信方式的两倍以上,相较于传统同步 I/O 的 HTTP 通信,更是有质的飞跃。
需要注意的是NoneBot 仅支持 Python 3.6+ 及 CoolQ HTTP API 插件 v4.2+。
## 文档
文档目前「指南」部分已经完成,「进阶」部分尚未完成,你可以在 [这里](https://none.rclab.tk/) 查看正在编写中的文档,对于文档中目前尚未写到的部分,请先参考 [richardchien/maruko](https://github.com/richardchien/maruko) 项目。
## 贡献
如果你在使用过程中发现任何问题,可以 [提交 issue](https://github.com/richardchien/none-bot/issues/new) 或自行 fork 修改后提交 pull request。
如果你要提交 pull request请确保你的代码风格和项目已有的代码保持一致遵循 [PEP 8](https://www.python.org/dev/peps/pep-0008/),变量命名清晰,有适当的注释。

View File

@ -46,9 +46,6 @@ class NoneBot(CQHttp):
async def _(ctx): async def _(ctx):
asyncio.ensure_future(handle_notice_or_request(self, ctx)) asyncio.ensure_future(handle_notice_or_request(self, ctx))
if scheduler:
scheduler.configure(self.config.APSCHEDULER_CONFIG)
def run(self, host: str = None, port: int = None, *args, **kwargs): def run(self, host: str = None, port: int = None, *args, **kwargs):
host = host or self.config.HOST host = host or self.config.HOST
port = port or self.config.PORT port = port or self.config.PORT
@ -75,11 +72,16 @@ def init(config_object: Any = None) -> None:
""" """
global _bot global _bot
_bot = NoneBot(config_object) _bot = NoneBot(config_object)
if _bot.config.DEBUG: if _bot.config.DEBUG:
logger.setLevel(logging.DEBUG) logger.setLevel(logging.DEBUG)
else: else:
logger.setLevel(logging.INFO) logger.setLevel(logging.INFO)
if scheduler and not scheduler.running:
scheduler.configure(_bot.config.APSCHEDULER_CONFIG)
scheduler.start()
def get_bot() -> NoneBot: def get_bot() -> NoneBot:
""" """
@ -97,8 +99,6 @@ def get_bot() -> NoneBot:
def run(host: str = None, port: int = None, *args, **kwargs) -> None: def run(host: str = None, port: int = None, *args, **kwargs) -> None:
"""Run the NoneBot instance.""" """Run the NoneBot instance."""
if scheduler and not scheduler.running:
scheduler.start()
get_bot().run(host=host, port=port, *args, **kwargs) get_bot().run(host=host, port=port, *args, **kwargs)

View File

@ -5,7 +5,7 @@ with open('README.md', 'r', encoding='utf-8') as f:
setup( setup(
name='none-bot', name='none-bot',
version='0.3.0', version='0.3.1',
packages=find_packages(include=('none', 'none.*')), packages=find_packages(include=('none', 'none.*')),
url='https://github.com/richardchien/none-bot', url='https://github.com/richardchien/none-bot',
license='MIT License', license='MIT License',