一個用 Python 編寫的現代、易於使用、功能豐富且非同步就緒的 Discord API 包裝器。
async
和await
現代 Pythonic API。需要Python 3.8或更高版本
要安裝沒有完整語音支援的庫,您只需執行以下命令:
筆記
建議使用虛擬環境來安裝該程式庫,特別是在 Linux 上,系統 Python 是外部管理的,並限制您可以在其上安裝哪些軟體包。
# Linux/macOS
python3 -m pip install -U discord.py
# Windows
py -3 -m pip install -U discord.py
否則,要獲得語音支持,您應該運行以下命令:
# Linux/macOS
python3 -m pip install -U " discord.py[voice] "
# Windows
py -3 -m pip install -U discord.py[voice]
若要安裝開發版本,請執行以下操作:
$ git clone https://github.com/Rapptz/discord.py
$ cd discord.py
$ python3 -m pip install -U .[voice]
請注意,在 Linux 上安裝語音支援時,在執行上述命令之前,您必須透過您最喜歡的套件管理器(例如apt
、 dnf
等)安裝以下套件:
libffi-devel
)python3.8-dev
) import discord
class MyClient ( discord . Client ):
async def on_ready ( self ):
print ( 'Logged on as' , self . user )
async def on_message ( self , message ):
# don't respond to ourselves
if message . author == self . user :
return
if message . content == 'ping' :
await message . channel . send ( 'pong' )
intents = discord . Intents . default ()
intents . message_content = True
client = MyClient ( intents = intents )
client . run ( 'token' )
import discord
from discord . ext import commands
intents = discord . Intents . default ()
intents . message_content = True
bot = commands . Bot ( command_prefix = '>' , intents = intents )
@ bot . command ()
async def ping ( ctx ):
await ctx . send ( 'pong' )
bot . run ( 'token' )
您可以在範例目錄中找到更多範例。