message.channel.send 不发送消息 [discord.py]
Posted
技术标签:
【中文标题】message.channel.send 不发送消息 [discord.py]【英文标题】:message.channel.send doesn't send message [discord.py] 【发布时间】:2020-11-10 04:12:34 【问题描述】:import discord
from discord.ext import commands, tasks
import datetime
import requests
import time
from bs4 import BeautifulSoup
client = discord.Client()
r = requests.get("https://www.worldometers.info/coronavirus/country/italy/")
s = BeautifulSoup(r.text, "html.parser")
data = s.find_all("div",class_ = "maincounter-number")
@client.event
async def on_ready():
print('We have logged in as 0.user'.format(client))
@tasks.loop(seconds=50.0)
async def covid():
x = datetime.datetime.now()
d = x.strftime("%M")
if d == "21":
channel = bot.get_guild(guild).get_channel(channel)
await message.channel.send("casi di coronavirus in italia: \ncasi totali: " +
data[0].text.strip()
+ "\nmorti totali: " + data[1].text.strip()
+ "\nguariti totali: " + data[2].text.strip())
@covid.before_loop
async def before_printer(self):
print('waiting...')
await self.bot.wait_until_ready()
@covid.after_loop
async def post_loop(self):
if self.covid.failed():
import traceback
error = self.covid.get_task().exception()
traceback.print_exception(type(error), error, error.__traceback__)
client.run('token)
基本上,这段代码会检查它是否是指定时间,如果是,它会发送一条带有意大利 covid 数据的消息,但它不起作用并且不返回任何我尝试添加的错误处理程序(回溯)和不做任何事情我唯一的输出是来自 async def on_ready()
所以我尝试了这个:
data = ''
@tasks.loop(seconds=50.0)
async def covid(ctx):
global data
x = datetime.datetime.now()
d = x.strftime("%M")
if d == "21":
data = "casi di coronavirus in italia: \ncasi totali: " +
data[0].text.strip() + "\nmorti totali: " + data[1].text.strip()
return data
@covid.before_loop
async def before_printer(self):
print('waiting...')
await self.bot.wait_until_ready()
@client.command()
async def get_covid(ctx):
global data
await ctx.send(data)
但我没有得到任何输出,如果我在 async def covid 之前添加 @client.command() 它给了我这个错误: 回溯(最近一次通话最后): 文件“C:\Users\danie\OneDrive\Desktop\test.py”,第 26 行,在 异步def covid(ctx): 文件“C:\Users\danie\AppData\Local\Programs\Python\Python38\lib\site-packages\discord\ext\commands\core.py”,第 1162 行,在装饰器中 结果 = 命令(*args, **kwargs)(func) 文件“C:\Users\danie\AppData\Local\Programs\Python\Python38\lib\site-packages\discord\ext\commands\core.py”,第 1317 行,在装饰器中 返回 cls(func, name=name, **attrs) init 中的文件“C:\Users\danie\AppData\Local\Programs\Python\Python38\lib\site-packages\discord\ext\commands\core.py”,第 210 行 raise TypeError('回调必须是协程。') TypeError:回调必须是协程。 >>>
【问题讨论】:
曼陀林披萨意大利面 【参考方案1】:您需要在函数和 @bot.command() 装饰器中添加上下文,然后是您的实例。
同样:
@client.command()
async def test(ctx):
await ctx.send('PASSED')
消息是一个事件,您需要添加适当的侦听器才能使其工作。除非您需要文本数据,否则无需使用此事件。
在您的情况下,您是直接从您的 COVID-19 函数发送数据,该函数没有任何作用,因为未定义消息。 应该是这样的:
#STORE THE VALUE OF COVID INSIDE DATA VARIABLE.
data = ''
@tasks.loop(seconds=50.0)
async def covid():
global data
x = datetime.datetime.now()
d = x.strftime("%M")
if d == "21":
#Assign the value to DATA VARIABLE.
data = "casi di coronavirus in italia: \ncasi totali: " + data[0].text.strip() + "\nmorti totali: " + data[1].text.strip()
#Return the MODIFIED Data
return data
现在用这个函数发送数据。
@client.command()
async def get_covid(ctx):
global data
await ctx.send(data)
另外,您错误地定义了客户端。 client = discord.Client() 应该是这样的:
# change '!' to any prefix you would like to use.
client = commands.Bot(command_prefix ='!')
【讨论】:
以上是关于message.channel.send 不发送消息 [discord.py]的主要内容,如果未能解决你的问题,请参考以下文章
message.channel.send 不工作 discord.js