📅  最后修改于: 2023-12-03 15:30:27.942000             🧑  作者: Mango
!pip install discord.py
以下是一个简单的示例代码,创建了一个 Discord 机器人并响应特定的消息。
import os
from discord.ext import commands
bot = commands.Bot(command_prefix='!')
@bot.event
async def on_ready():
print(f'{bot.user.name} has connected to Discord!')
@bot.command(name='hello')
async def hello_world(ctx):
await ctx.send('Hello, world!')
bot.run(os.getenv('DISCORD_TOKEN'))
以上代码使用了 discord.ext
模块中的 commands
类创建了一个可用于自定义前缀的 Discord 机器人,当用户发送消息“!hello”时会回复消息“Hello, world!”。
注意!在实际应用程序中需要提供环境变量 'DISCORD_TOKEN' 作为机器人的令牌。