Metadata-Version: 2.1
Name: amiyabot
Version: 1.1.0
Summary: 简洁高效的异步 Python QQ 频道机器人框架
Home-page: https://www.amiyabot.com
Author: vivien8261
Author-email: 826197021@qq.com
License: MIT Licence
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: aiohttp (~=3.7.4.post0)
Requires-Dist: fastapi (~=0.79.0)
Requires-Dist: graiax-silkcoder (~=0.2.8)
Requires-Dist: jieba (~=0.42.1)
Requires-Dist: peewee (~=3.14.10)
Requires-Dist: pillow (~=9.1.1)
Requires-Dist: playwright (~=1.22.0)
Requires-Dist: pydantic (~=1.9.1)
Requires-Dist: pymysql (~=1.0.2)
Requires-Dist: pyyaml (~=6.0)
Requires-Dist: requests (~=2.27.1)
Requires-Dist: setuptools (~=60.2.0)
Requires-Dist: starlette (~=0.19.1)
Requires-Dist: uvicorn (~=0.18.2)
Requires-Dist: websockets (~=10.1)
Requires-Dist: zhon (~=1.1.5)

# Amiya-Bot

简洁高效的异步 Python QQ 频道机器人框架

官方文档：[www.amiyabot.com](https://www.amiyabot.com/)

    pip install amiyabot

```python
import asyncio

from amiyabot import AmiyaBot, Message, Chain

bot = AmiyaBot(appid='******', token='******')


@bot.on_message(keywords='hello')
async def _(data: Message):
    return Chain(data).text(f'hello, {data.nickname}')


asyncio.run(bot.start())
```


