Crate awr

source ·
Expand description

基于 ricq 包装,供 Python 使用的 QQ 无头客户端。

更多信息请参考 loginclient 模块。

Examples

import awr
import asyncio

async def main():
    ## 登录账号
    client = await awr.Dynamic().login(12345678, "./bots")
    ## 读取群列表
    print(await client.get_group_list())
    ## 保持连接
    await client.alive()
     
try:
    asyncio.run(main())
except KeyboardInterrupt:
    import sys
    sys.exit(0)

Modules

构建信息。
QQ 无头客户端。
账号登录。
消息链与消息元素。