代码如下:
print('hmm1') #testing, this one prints
import discord
from discord.ext import commands
client = commands.Bot(command_prefix='&')
client.run('my token', bot=False)
async def testFunction():
print('hmm') #<- this one does not print.
channel = await client.get_channel(708848617301082164)
message_id=715307791379595275
msg = await client.get_message(channel, message_id)
await msg.edit(content="L")
await msg.edit(content="W")
print('edited message!')
testFunction()
# none of the above works. I only get "hmm1" printed in console.
我不知道发生了什么,因为控制台中实际上没有任何错误或任何形式的输出。有人知道这个问题吗?
答案 0 :(得分:0)
如果您不熟悉异步函数,则需要对其进行await
编辑。在msg.edit(...
中可以看到协程的示例,因为edit()
是协程,因此您需要像这样await
:await testFunction()
此外,client.get_channel()
和client.get_message()
不是协程,因此不需要等待它们。
如Eric所述,您还希望将client.run('...
下移到文件的最后一行,否则它将阻止脚本的其余部分。代码的结构如下:
# imports
# commands, events, functions
# last line
client.run('...
由于d.py已移至重写(v1.x),因此您似乎也在使用一些旧文档,看起来您所使用的client.get_message()
实际上来自{{3 }}。
我建议您阅读v0.16.x,以使自己熟悉重写。尽量避免过时的教程。
作为一个小小的起点,您的await client.get_message(channel, message_id)
应该变成await channel.fetch_message(message_id)
。
参考: