bennyscripts / discord.py-self_embed

A way for selfbots to send embeds again.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

discord.py-self_embed

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

Reason for archive

Unfortunatly, the creator of Rauf's embed generator (Rauf) has made the decision to close the embed generator. This means that this library will become unusable. CleanShot 2023-08-17 at 9 25 50@2x

Install

$ pip install 'discord.py-self_embed @ git+https://github.com/bentettmar/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"
)
embed.set_author("Benny")

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.

About

A way for selfbots to send embeds again.

License:MIT License


Languages

Language:Python 100.0%