discord.py:如何更改服务器图标

时间:2018-09-23 18:52:02

标签: python python-3.x discord discord.py

我想更改服务器图标。 试试看:

(() => {    
    const my_h1 = React.DOM.h1(null,"Stuff") // TypeError: Cannot read property 'h1' of undefined
    ReactDOM.render(my_h1,document.getElementById('root'))
})()

1 个答案:

答案 0 :(得分:0)

您需要传递icon,类似于bytes的对象。因此,如果您有文件image.jpg,则可以

with open('image.jpg', 'rb') as f:
    icon = f.read()
await bot.edit_server(ctx.message.server, icon=icon)

在您的示例中,您需要将该图像下载到bytes中,然后将其用于edit_server