首页 > 解决方案 > 如何将所有固定消息插入文件?

问题描述

@commands.command()
async def pins(self, ctx,channel:discord.TextChannel):
    pins=await channel.pins()
    f = BytesIO(bytes(str(pins), encoding="utf-8"))
    file = discord.File(fp=f, filename="pins.txt")
    await ctx.send(file=file)

嘿,所以我正在尝试创建一个命令,它将获取频道的所有固定消息并将其插入文件中。

我的问题是await channel.pins()不显示固定的消息。而是显示有关消息和频道的信息。

Message id=823211324343245892304 channel=<TextChannel id=7242345725488373823 name='channel' position=2 nsfw=True news=False category_id=724975728488373821> type=<MessageType.default: 0> author=<Member id=8048242432231802419 name='author's name'

如何将所有固定的消息显示到文件中?

任何帮助表示赞赏:)

标签: pythondiscorddiscord.py

解决方案


TextChannel.pins返回discord.Message实例列表,您可以遍历它们并仅获取消息内容和/或有关消息的其他信息,一个简单的示例是:

pins = await channel.pins()
data = '\n'.join([f"[{m.created_at}][{m.author}]: {m.content}" for m in pins])
buffer = BytesIO(bytes(data, encoding="utf-8"))
f = discord.File(buffer, filename="pins.txt")
await ctx.send(file=f)

data变量只是一个以换行符作为分隔符的列表,它以一种很好的方式显示消息数据(随意更改它)。

参考:


推荐阅读