📅  最后修改于: 2023-12-03 15:14:42.674000             🧑  作者: Mango
discord.py 是基于 Python 的 Discord API 的非官方封装库。通过使用 discord.py,您可以构建自己的 Discord 机器人,管理 Discord 服务器,以及与 Discord API 交互。
要安装 discord.py,请使用以下命令:
pip install discord.py
以下代码片段演示了如何创建一个基本的 Discord 机器人:
import discord
from discord.ext import commands
bot = commands.Bot(command_prefix='!')
@bot.event
async def on_ready():
print('Logged in as')
print(bot.user.name)
print(bot.user.id)
@bot.command()
async def ping(ctx):
await ctx.send('pong')
bot.run('TOKEN')
discord.py 是一款强大而易于使用的 Discord API 封装库,适用于想要创建自己的 Discord 机器人的 Python 开发人员。有了 discord.py,您可以轻松地管理 Discord 服务器,与 Discord API 交互,并创建自定义事件处理程序。因此,它是 Python 开发人员的理想选择!