We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a3e27e commit 5b212c0Copy full SHA for 5b212c0
README.md
@@ -1,2 +1,22 @@
1
# discord.py-self_embed
2
A way for selfbots to send embeds again.
3
+
4
+### Install
5
+> ```bash
6
+> $ pip install discord_self_embed
7
+> ```
8
9
+### Example
10
+> ```python
11
+> import discord_self_embed
12
+>
13
+> embed = discord_self_embed.Embed("discord.py-self_embed",
14
+> description="A way for selfbots to send embeds again.",
15
+> colour="ff0000",
16
+> url="https://github.com/bentettmar/discord.py-self_embed"
17
+> )
18
+> embed.set_author("Ben Tettmar")
19
20
+> url = embed.generate_url(hide_url=True) # You can also convert the embed to a string.
21
+> print(url) # The url will be put in your ctx.send() content.
22
0 commit comments