|
3 | 3 | readme = """ |
4 | 4 | # discord.py-self_embed |
5 | 5 | A way for selfbots to send embeds again. |
6 | | -It uses [Benny's embed generator](https://embed.benny.fun). |
| 6 | +It uses [Benny's embed generator](https://benny.fun/api/embed). |
7 | 7 |
|
8 | 8 | ### Install |
9 | 9 | > ```bash |
|
16 | 16 | > |
17 | 17 | > embed = discord_self_embed.Embed("discord.py-self_embed", |
18 | 18 | > description="A way for selfbots to send embeds again.", |
19 | | -> colour="ff0000", |
20 | | -> url="https://github.com/bentettmar/discord.py-self_embed" |
| 19 | +> colour="FFBB00" |
21 | 20 | > ) |
22 | | -> embed.set_author("Ben Tettmar") |
| 21 | +> embed.set_author("Benny") |
| 22 | +> embed.set_image("https://raw.githubusercontent.com/bennyscripts/ghost/refs/heads/main/ghost.png", big=False) |
23 | 23 | > |
24 | 24 | > url = embed.generate_url(hide_url=True) # You can also convert the embed to a string. |
25 | 25 | > print(url) # The url will be put in your ctx.send() content. |
|
35 | 35 | setup( |
36 | 36 | name='discord.py-self_embed', |
37 | 37 | packages=['discord_self_embed', 'discord_self_embed.utils'], |
38 | | - version='1.0.8', |
| 38 | + version='1.0.9', |
39 | 39 | license='MIT', |
40 | 40 | description='A way for selfbots to send embeds again.', |
41 | 41 | author='Ben Tettmar', |
42 | 42 | |
43 | 43 | url='https://github.com/bentettmar/discord.py-self_embed', |
44 | | - download_url='https://github.com/bentettmar/discord.py-self_embed/archive/refs/tags/1.0.6.tar.gz', |
| 44 | + download_url='https://github.com/bennyscripts/discord.py-self_embed/archive/refs/tags/1.0.9.tar.gz', |
45 | 45 | keywords=['discord', 'embed', 'selfbot', "discord embed", |
46 | 46 | "embed discord", "discord selfbot embed", "embed selfbot discord"], |
47 | 47 | install_requires=[], |
|
0 commit comments