discord.py self
v2.0.0
一个现代、易于使用、功能丰富且异步就绪的 API 包装器,用于用 Python 编写的 Discord 用户 API。
这些更改已经太多,无法一一提及,因此请查看我们的文档。
学分:
async
和await
现代 Pythonic API。discord.py
兼容。需要 Python 3.8 或更高版本。
要安装没有完整语音支持的库,您只需运行以下命令:
# Linux/macOS
python3 -m pip install -U discord.py-self
# Windows
py -3 -m pip install -U discord.py-self
否则,要获得语音支持,您应该运行以下命令:
# Linux/macOS
python3 -m pip install -U " discord.py-self[voice] "
# Windows
py -3 -m pip install -U discord.py-self[voice]
要安装开发版本,请执行以下操作:
$ git clone https://github.com/dolfies/discord.py-self
$ cd discord.py-self
$ python3 -m pip install -U .[voice]
请注意,在 Linux 上安装语音时,在运行上述命令之前,您必须通过您最喜欢的软件包管理器(例如apt
、 dnf
等)安装以下软件包:
libffi-devel
)python3.6-dev
)如果您想与上游discord.py
一起使用该库,您可以安装selfcord.py
而不是discord.py-self
。查看重命名的分支以获取更多信息。
import discord
class MyClient ( discord . Client ):
async def on_ready ( self ):
print ( 'Logged on as' , self . user )
async def on_message ( self , message ):
# only respond to ourselves
if message . author != self . user :
return
if message . content == 'ping' :
await message . channel . send ( 'pong' )
client = MyClient ()
client . run ( 'token' )
import discord
from discord . ext import commands
bot = commands . Bot ( command_prefix = '>' , self_bot = True )
@ bot . command ()
async def ping ( ctx ):
await ctx . send ( 'pong' )
bot . run ( 'token' )
您可以在示例目录中找到更多示例。