如何在 TwitchIO 中发送不是对命令的响应的消息?
How do you send a message in TwitchIO that's not a response to a command?
我正在设置 python TwitchIO 聊天机器人。入门示例是这样的:
async def event_message(self, message):
print(message.content)
await self.handle_commands(message)
@commands.command(name='test')
async def my_command(self, ctx):
await ctx.send(f'Hello {ctx.author.name}!')
如果传入的消息是命令(例如 !test
),则消息将通过 ctx.send()
发送回频道。
我想要在收到任何消息时将消息发送回频道(基于 come 标准)的选项,而不仅仅是命令。例如:
async def event_message(self, message):
print(message.content)
if SOMETHING:
SEND_MESSAGE_HERE
await self.handle_commands(message)
我不知道如何做某种 .send
来实现这一目标。这个答案: 显示这个:
chan = bot.get_channel("channelname")
loop = asyncio.get_event_loop()
loop.create_task(chan.send("Send this message"))
我试过了,机器人立即发送了大量消息并超时了一个小时。
所以,问题是:如何将消息发送回event_message
内的频道
这是我想出的答案:
bot_account_name = "BOT_ACCOUNT_NAME"
async def event_message(self, message):
print(message.content)
if message.author.name.lower() != bot_account_name.lower():
ws = self._ws
await ws.send_privmsg('CHANNEL_NAME', 'Message To Send')
await self.handle_commands(message)
您可以进行其他检查,但对机器人帐户用户名进行检查很重要。如果您不这样做,机器人将看到自己的消息并回复它们以创建循环。这是我 运行 立即发送一堆并被 twitch
超时的问题之一
我找到了替代方案。我用我为此目的发明的命令替换了消息。命令的名称是“z”,但它可以是任何东西
async def event_message(self, message):
if message.echo:
return
message.content = f"#z {message.content}" # add command name before message
await self.handle_commands(message)
@commands.command()
async def z(self, ctx: commands.Context):
print(f"Original message is {ctx.message.content[3:]}\n")
一个命令传递给你一个 Context
(Messageable
的一个实例,它定义了 send()
)。 Channel
也是一个 Messageable
,因此它有一个 send()
。因此,如果您的 Bot
实例是 bot
:
bot.connected_channels[0].send('...')
将向机器人连接的第一个频道发送消息。
我正在设置 python TwitchIO 聊天机器人。入门示例是这样的:
async def event_message(self, message):
print(message.content)
await self.handle_commands(message)
@commands.command(name='test')
async def my_command(self, ctx):
await ctx.send(f'Hello {ctx.author.name}!')
如果传入的消息是命令(例如 !test
),则消息将通过 ctx.send()
发送回频道。
我想要在收到任何消息时将消息发送回频道(基于 come 标准)的选项,而不仅仅是命令。例如:
async def event_message(self, message):
print(message.content)
if SOMETHING:
SEND_MESSAGE_HERE
await self.handle_commands(message)
我不知道如何做某种 .send
来实现这一目标。这个答案:
chan = bot.get_channel("channelname")
loop = asyncio.get_event_loop()
loop.create_task(chan.send("Send this message"))
我试过了,机器人立即发送了大量消息并超时了一个小时。
所以,问题是:如何将消息发送回event_message
这是我想出的答案:
bot_account_name = "BOT_ACCOUNT_NAME"
async def event_message(self, message):
print(message.content)
if message.author.name.lower() != bot_account_name.lower():
ws = self._ws
await ws.send_privmsg('CHANNEL_NAME', 'Message To Send')
await self.handle_commands(message)
您可以进行其他检查,但对机器人帐户用户名进行检查很重要。如果您不这样做,机器人将看到自己的消息并回复它们以创建循环。这是我 运行 立即发送一堆并被 twitch
超时的问题之一我找到了替代方案。我用我为此目的发明的命令替换了消息。命令的名称是“z”,但它可以是任何东西
async def event_message(self, message):
if message.echo:
return
message.content = f"#z {message.content}" # add command name before message
await self.handle_commands(message)
@commands.command()
async def z(self, ctx: commands.Context):
print(f"Original message is {ctx.message.content[3:]}\n")
一个命令传递给你一个 Context
(Messageable
的一个实例,它定义了 send()
)。 Channel
也是一个 Messageable
,因此它有一个 send()
。因此,如果您的 Bot
实例是 bot
:
bot.connected_channels[0].send('...')
将向机器人连接的第一个频道发送消息。