Python으로 작성된 Discord용 현대적이고 사용하기 쉽고 기능이 풍부하며 비동기식 API 래퍼입니다.
async
및 await
사용하는 최신 Pythonic API.Python 3.8 이상이 필요합니다.
전체 음성 지원 없이 라이브러리를 설치하려면 다음 명령을 실행하면 됩니다.
메모
특히 Python 시스템이 외부에서 관리되고 설치할 수 있는 패키지가 제한되는 Linux에서는 라이브러리를 설치하려면 가상 환경을 사용하는 것이 좋습니다.
# 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' )
예제 디렉터리에서 더 많은 예제를 찾을 수 있습니다.