Wrapper API ที่ทันสมัย ใช้งานง่าย มีคุณสมบัติหลากหลาย และพร้อมใช้งานแบบอะซิงก์สำหรับ Discord ที่เขียนด้วย Python
async
และ await
.ต้องใช้ 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
สำหรับ Python 3.8) 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' )
คุณสามารถค้นหาตัวอย่างเพิ่มเติมได้ในไดเร็กทอรีตัวอย่าง