###実現したいこと
Discord.pyでR18コマンドを作りたいです。
###コード
py
1@bot.command() 2async def anal(ctx): 3 response = requests.get('https://nekobot.xyz/api/image?type=anal') 4 5 if response.get == "message": 6 em = discord.Embed(title="R18", color=color_main) 7 em.set_image(url="https://nekobot.xyz/api/image?type=anal") 8 await ctx.send(embed=em)
###エラー
if response.get == "message": ^ IndentationError: unindent does not match any outer indentation level
###説明
https://nekobot.xyz/api/image?type=anal
このリンクに飛んでもらったら、
"message":"https://cdn.nekobot.xyz/e/9/a/a3e95d8e1245bfebca1c43b84a437.jpg"
このような部分があると思います。
ここの部分を取得したいです。