我想和机器人一起做表情符号。但是我找不到任何关于制作表情符号的信息。
所以我的问题是“我可以通过机器人制作表情符号吗?”
发布于 2019-07-18 23:18:09
https://discordpy.readthedocs.io/en/latest/api.html#discord.Guild.create_custom_emoji
with open("my_emoji.jpg", 'rb') as fd:
await message.guild.create_custom_emoji(name='my_emoji', image=fd.read())https://stackoverflow.com/questions/57097752
复制相似问题