Sooo Python Discord.py,
I have this embed:
embed = discord.Embed(title = atc_info['callsign'] + ' has just connected!', color = 0xffffff)
embed.set_footer(text = 'something goes here')
return embed
It works fine, but I would like to assign it an ID based on a field returned in the API call. So if a certain condition happens the bot makes an API call, grabs that ID and delete the embed with assigned that ID. Is there any way to do that? (I just need the ID assignment, not also the API call and stuff)
Thanks a lot!