LoginSignup
3
2

More than 3 years have passed since last update.

Discord.pyで埋め込みメッセージを使う(embed)

Last updated at Posted at 2019-06-06

自分用メモ

embed = discord.Embed(title='タイトル', description='タイトルの下のアレ', color=16進数カラーコード)
embed.set_thumbnail(url='アイコンのURL')
embed.add_field(name='名前的な', value='内容', inline=True)#←インライン的な
embed.set_image(url='画像のURL')
await message.content.send(embed=embed)

そんで色々うまくいくとこうなる
F754F6CD-A243-4926-B2CF-5F82EED73F95.jpeg
なんか便利なやつ

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2