Discord.py get message embed(Discord.py 获取消息嵌入)
问题描述
如何将消息嵌入到带有 discord.py 中消息 ID 的变量中?我通过 uzenet = await client.get_message(channel, id) 收到消息,但我不知道如何嵌入.
How can I get the embed of a message to a variable with the ID of the message in discord.py?
I get the message with uzenet = await client.get_message(channel, id), but I don't know how to get it's embed.
推荐答案
要获得您的消息的第一个嵌入,正如您所说,这将是一个 dict():embedFromMessage = uzenet.embeds[0]
To get the first Embed of your message, as you said that would be a dict():
embedFromMessage = uzenet.embeds[0]
要将 dict() 转换为 discord.Embed 对象:embed = discord.Embed.from_data(embedFromMessage)
To transfer the dict() into an discord.Embed object:
embed = discord.Embed.from_data(embedFromMessage)
这篇关于Discord.py 获取消息嵌入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Discord.py 获取消息嵌入
基础教程推荐
- 在Python中从Azure BLOB存储中读取文件 2022-01-01
- PermissionError: pip 从 8.1.1 升级到 8.1.2 2022-01-01
- PANDA VALUE_COUNTS包含GROUP BY之前的所有值 2022-01-01
- 求两个直方图的卷积 2022-01-01
- 无法导入 Pytorch [WinError 126] 找不到指定的模块 2022-01-01
- 修改列表中的数据帧不起作用 2022-01-01
- Plotly:如何设置绘图图形的样式,使其不显示缺失日期的间隙? 2022-01-01
- 使用大型矩阵时禁止 Pycharm 输出中的自动换行符 2022-01-01
- 在同一图形上绘制Bokeh的烛台和音量条 2022-01-01
- 包装空间模型 2022-01-01
