主要特点
- 使用
async
和await
的现代 Pythonic API。 - 优化速度和内存。
安装
需要 Python 3.8或以上的版本
要安装库,你只需运行以下命令:
pip3 install -U qq.py
快速示例
from qq import *
class MyClient(Client):
async def on_ready(self):
print('使用', self.user, '登陆')
async def on_message(self, message):
# 不要回复自己
if message.author == self.user:
return
if 'ping' in message.content:
await message.channel.send('pong')
if __name__ == '__main__':
client = MyClient(app_id='', token='')
client.run()
当完成初始化输出当前机器人用户对象,收到带有 ping
的信息事件时发送 pong