This is how you would send a message...
In discord.py:
embed=discord.Embed(title="your password is 123")
await ctx.reply(embed=embed)
But oh no... That password was (although it was replied to the command user) displayed PUBLICALLY and I do now want that... How would you make the reply private to only the ctx.author?
Why does this not work?
embed=discord.Embed(title="yay")
await ctx.reply(ctx.author, embed=embed)