如何为我的discord.py机器人发出重新启动命令

时间:2020-09-21 08:48:49

标签: discord.py restart

到目前为止,我所拥有的是:

def restart_program():
    python = sys.executable
    os.execl(python, python, * sys.argv)

@bot.command()
async def restart(ctx):
    message = await ctx.send("Restarting... Allow up to 5 seconds")
    restart_program()

此方法有效,但是我想知道如何在重新启动后编辑“正在重新启动...允许最多5秒钟”消息以显示类似“启动备份”的信息。这可能吗?如果可以,我该怎么做?

1 个答案:

答案 0 :(得分:-1)

我会使用Client.logout()Client.login()来重新启动漫游器,而不是使用os.execl来运行它,但是如果您确实需要这样做,可以通过以下方法发送每次启动时都会显示一条消息:

@client.event
async def on_ready():
    # First get the channel where the message should be sent
    channel = discord.utils.get(client.get_all_channels(), name='general')
    await channel.send("Bot is back up!")