📌  相关文章
📜  如何在 discord.py 中获取带有 id 的用户头像? - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:10.312000             🧑  作者: Mango

代码示例1
@commands.command()
async def avatar(self, ctx, *,  avamember : discord.Member=None):
    userAvatarUrl = avamember.avatar_url
    await ctx.send(userAvatarUrl)