discord.py-self-embed

A way for selfbots to send embeds again.


Keywords
discord, embed, selfbot, discord-py, discord-py-self, discord-selfbot-embed, discordembed, discordselfbot, discordselfbotembed
License
MIT
Install
pip install discord.py-self-embed==1.0.6

Documentation

discord.py-self_embed

A way for selfbots to send embeds again.
It uses Benny's embed generator.

Install

$ pip install discord.py-self-embed

Example

import discord_self_embed

embed = discord_self_embed.Embed("discord.py-self_embed", 
  description="A way for selfbots to send embeds again.", 
  colour="ff0000", 
  url="https://github.com/bentettmar/discord.py-self_embed"
)
embed.set_author("Ben Tettmar")

url = embed.generate_url(hide_url=True) # You can also convert the embed to a string.
print(url) # The url will be put in your ctx.send() content.

Limitations

Because the embeds are web embeds there are limitations.

  • No footers.
  • Max 350 character description.