如何使discord.py命令能够执行ctx.send命令



现在,我有一个机器人,我希望能够用Python命令控制它。这是我为>execute命令,我想用它来执行Python代码段。

async def execute(ctx, *, arg):
if ctx.author.id == 645264167623983124:
try:
exec(arg.replace("```", ""))
await ctx.send(embed=msg(title="Execution complete!", desc="The code ran successfully."))
except Exception as e:
await ctx.send(embed=msg(title="Error", desc=str(e)))
else:
await ctx.send(embed=msg(title="Nuh Uh Uhh", desc="You are not allowed to use this command!"))

然而,我也想使用这个命令来发送测试消息,比如:

>execute await ctx.send("Hello world!")

当我运行这个时,它说:

Error
'await' outside function (<string>, line 1)

但当我在没有等待的情况下运行它时,它说它运行得很好,但我运行机器人的控制台上写着:

<string>:1: RuntimeWarning: coroutine 'Messageable.send' was never awaited
RuntimeWarning: Enable tracemalloc to get the object allocation traceback

我使用eval而不是异步函数来实现这一点:

arg = arg.replace("```", "")
if arg.startswith("await"):
await eval(arg.replace("await ", ""))
else:
exec(arg)

最新更新