【发布时间】:2021-06-24 21:47:00
【问题描述】:
@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'
如何将所有固定的消息显示到文件中?
任何帮助表示赞赏:)
【问题讨论】:
标签: python discord discord.py