Metadata-Version: 2.1
Name: qq.py
Version: 0.0.5
Summary: A Python wrapper for the QQ Channel API
Home-page: https://github.com/foxwhite25/qq.py
Author: foxwhite25
Author-email: vct.xie@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: Natural Language :: Chinese (Simplified)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Internet
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Requires-Python: >=3.8.0
Description-Content-Type: text/markdown
License-File: LICENSE

# QQ.py

用 Python 编写的用于 QQ频道机器人 现代化、易于使用、功能丰富(? 且异步的 API sdk。

## 主要特点

- 使用 ``async`` 和 ``await`` 的现代 Pythonic API。

## 安装

**需要 Python 3.8或以上的版本**

要安装库，你只需运行以下命令：
```
pip3 install -U qq.py
```

## 快速示例
```python
import asyncio
from qq import *


async def main():
    client = Client('BotAppID', 'Bot Token')
    await client.http.static_login(client.token)
    async for guilds in await client.get_guilds():
        print(guilds.name)
        for channels in guilds.channels:
            print(channels)

if __name__ == '__main__':
    asyncio.run(main())
```
输出Bot当前加入的所有频道的名字，以及所有的频道

## 链接
* [QQ API](https://bot.q.qq.com/wiki/develop/api/)

