作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想知道如何让我的机器人将嵌入的图像上传到 Discord channel 。我知道如何让它发送嵌入,但如何上传嵌入图像?甚至可以使用discord.py吗?
请记住,我不是指您可以在嵌入图像中使用的缩略图,我想知道您是否甚至可以使用 Python 上传嵌入图像。谢谢!
最佳答案
要在嵌入中发送图像,请使用嵌入的 set_image
方法:
e = discord.Embed()
e.set_image(url="https://discordapp.com/assets/e4923594e694a21542a489471ecffa50.svg")
send_file
方法或在重写分支中使用
send
方法。
# Async
await bot.send_file(channel, "filepath.png", content="...", filename="...")
# Rewrite
file = discord.File("filepath.png", filename="...")
await channel.send("content", file=file)
关于python-3.x - 上传嵌入图像?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47515361/
我有以下正则表达式 /[a-zA-Z0-9_-]/ 当字符串只包含从 a 到z 大小写、数字、_ 和 -。 我的代码有什么问题? 能否请您向我提供一个简短的解释和有关如何修复它的代码示例? //var
我是一名优秀的程序员,十分优秀!