background_task.py 不显示消息 - Python
Posted
技术标签:
【中文标题】background_task.py 不显示消息 - Python【英文标题】:background_task.py not showing messages - Python 【发布时间】:2019-12-31 05:00:59 【问题描述】:我注意到,当我从 discord.py Github 页面运行代码 sn-p 时,它没有显示预期的消息。
我稍作修改的代码:
import discord
import asyncio
import nest_asyncio
nest_asyncio.apply()
class MyClient(discord.Client):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
# create the background task and run it in the background
self.bg_task = self.loop.create_task(self.my_background_task())
async def on_ready(self):
print('Logged in as')
print(self.user.name)
print(self.user.id)
print('------')
async def my_background_task(self):
counter = 0
channel = self.get_channel(1234567890) # channel ID goes here
while not self.is_closed():
counter += 1
await channel.send(counter)
await asyncio.sleep(10) # task runs every 10 seconds
client = MyClient()
client.run('token')
当我检查 Discord 时没有显示任何内容,但它确实在 IDLE 中显示输出:
Logged in as
bot_name
1234567890
------
但是在 Discord 服务器中,什么都没有发生。有没有办法解决这个问题?
【问题讨论】:
刚刚检查,但您是否已将self.get_channel(1234567890)
替换为消息必须发送到的频道 ID?
我有,但即使那样它也没有显示任何内容。我还用实际的令牌替换了令牌。
在 Spyder 上运行它会影响什么吗?也许是nest_asyncio?
我应该在 discord.py Github 页面上打开一个问题吗?
尝试从命令行运行它,看看是否有任何变化。还要确保您运行的是最新版本的discord.py
【参考方案1】:
代码失败是因为在机器人正确连接之前使用了self.get_channel(1234567890)
,导致它总是返回None
。这是因为client = MyClient()
先完成,也就是说后台任务已经创建但是bot还没有连接,这是通过client.run
完成的。
要解决此问题,请将循环的创建移至 on_ready
事件内。
import discord
import asyncio
import nest_asyncio
nest_asyncio.apply()
class MyClient(discord.Client):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
async def on_ready(self):
print('Logged in as')
print(self.user.name)
print(self.user.id)
print('------')
# create the background task and run it in the background
self.bg_task = self.loop.create_task(self.my_background_task())
async def my_background_task(self):
counter = 0
channel = self.get_channel(1234567890) # channel ID goes here
while not self.is_closed():
counter += 1
await channel.send(counter)
await asyncio.sleep(10) # task runs every 10 seconds
client = MyClient()
client.run('token')
【讨论】:
不幸的是,机器人仍然无法工作。它完全按照以前的版本做了。顺便感谢您的宝贵时间! 以上代码有效。我在自己的机器人上进行了测试。唯一的区别是我删除了nest_asyncio
,因为我没有安装它。
这真的很奇怪。我已经从命令行运行它,但它似乎仍然不起作用。会不会是我电脑的问题?不过,我会接受你的回答,因为我的问题似乎对我来说是孤立的。
您的机器人是否已连接到您要发送消息的通道的服务器?否则,请尝试重新安装 Python 和/或一些库,例如 discord.py
,看看它是否能解决问题。以上是关于background_task.py 不显示消息 - Python的主要内容,如果未能解决你的问题,请参考以下文章