📅  最后修改于: 2023-12-03 15:30:28.076000             🧑  作者: Mango
Discord.py 是 Python 上最流行的 Discord API 的包装器之一,它允许 Python 程序员轻松地与 Discord 交互,并创建出色的自动化机器人。
使用 pip 安装:
pip install discord.py
或者,你可以从 Github 源码安装:
pip install -U https://github.com/Rapptz/discord.py/archive/master.zip#egg=discord.py
import discord
from discord.ext import commands
bot = commands.Bot(command_prefix='!')
@bot.event
async def on_ready():
print(f'Logged in as {bot.user.name} ({bot.user.id})')
print('------')
@bot.command()
async def ping(ctx):
await ctx.send('Pong!')
bot.run('token')
Discord.py 是一个非常流行的 Discord API 的包装器,它具有完全异步的设计和高度的可靠性和可扩展性。更好的是,它的简单语法和易于阅读的文档,使其成为 Python 程序员和想要自动化他们的 Discord 服务器的人的理想选择。