Baymax,一个基于Python asyncio的简单电报bot框架 工作正在进行中 要求 Python 3.6或更高版本 安装 pip install baymax 基本用法示例 from baymax . bot import Bot bot = Bot ( 'token' ) @ bot . on ( '/start' ) async def start_handler ( message ): await bot . reply ( message , 'Welcome!' ) bot . run () 中间件示例 @ bot . middleware async def m