如何在discord.py中发送每条消息

时间:2020-11-11 01:41:40

标签: python python-3.x discord discord.py discord.py-rewrite

所以基本上我想在控制台中重新创建每个不和谐的通道

import discord
from discord.ext import commands

b = commands.Bot(command_prefix = ".")
b.remove_command("help")

@b.event
async def on_message():
    print("What ever message the user sent")

b.run('token')

每当用户发送一条消息时,该消息将被复制到控制台。这可能吗?另外,是否可以查看发送了哪些用户以及发送到哪个频道?我知道您可以获得频道ID和作者ID,但是频道名称和用户名又如何呢?

1 个答案:

答案 0 :(得分:1)

@b.event
async def on_message(message):
    await b.process_commands(message)
    print(f"{message.author} in {message.channel} : {message.content}")

这应该给您发送者的消息以及消息的来源。