📌  相关文章
📜  如何在 python 代码示例中制作一个不和谐的机器人

📅  最后修改于: 2022-03-11 14:45:36.375000             🧑  作者: Mango

代码示例1
import discord
from discord.ext import commands

client = commands.Bot(command_prefix=".")

@client.event
async def on_ready():
    print("Ready!")

bot.run("TOKEN")